Help us improve
Share bugs, ideas, or general feedback.
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.
npx claudepluginhub jmylchreest/aide --plugin aideHow 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
Provides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Guides systematic root-cause debugging when tests fail, builds break, or unexpected errors occur. Provides a structured triage checklist to preserve evidence, localize, and fix issues instead of guessing.
Share bugs, ideas, or general feedback.
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.