From aide
Activates full autonomous execution mode, preventing early stops until all todo tasks are verified complete. Ideal for multi-step builds, test fixes, refactors, and migrations.
How this skill is triggered — by the user, by Claude, or both
Slash command
/aide:autopilotThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
**Recommended model tier:** smart (opus) - this mode handles complex multi-step tasks
Recommended model tier: smart (opus) - this mode handles complex multi-step tasks
Full autonomous execution mode. The agent keeps working until all tasks in the todo list are verified complete. No stopping early, no partial results.
Type naturally:
autopilot build me a web app
autopilot fix all failing tests
autopilot refactor the auth module
Or explicitly set the mode:
aide state set mode autopilot
When autopilot mode is active:
| Platform | Mechanism |
|---|---|
| Claude Code | Stop-blocking — prevents the AI from ending the conversation early |
| OpenCode | Re-prompting — session.prompt() is called on idle to keep going |
Autopilot relies on the todo list to determine completeness:
Autopilot mode is ideal for:
Avoid autopilot for:
design skill instead (needs human input)swarm mode instead for decomposed parallel storiesAutopilot works well with any skill:
autopilot fix the build errors # autopilot + build-fix behavior
autopilot make all tests pass # autopilot + implement behavior
autopilot debug why login fails # autopilot + debug behavior
To stop autopilot mode early:
aide state set mode ""
Or type "stop" — the keyword detector clears the active mode.
When autopilot mode is activated:
in_progress then completed./.aide/bin/aide memory add --category=blocker --tags=project:<name>,session:<id>,source:discovered "Blocked on <task>: <reason>"
Binary location: The aide binary is at .aide/bin/aide. If it's on your $PATH, you can use aide directly.
npx claudepluginhub jmylchreest/aide --plugin aideIteratively builds complex features from a PRD using subagents for fresh-context tasks, progress tracking in .claude/autopilot/progress.md, and git restore points. For migrations, MVPs, or multi-task implementations.
Executes long-running tasks autonomously across Claude Code sessions using headless bash loops or in-session hooks. Supports structured decomposition for projects and Ralph-style iteration for TDD, fixes, refactoring.
Auto-loop execution workflow with quality gates. Use when starting any non-trivial implementation task. Provides automatic task decomposition, code implementation, testing (L1-L4), and iterative quality gates until completion. Invoke with /autoworker.