| name | autopilot |
| description | Autonomous pipeline — specify, clarify, plan, review, tasks, implement, code review, QA. No manual gates. Skips stages already completed. |
Autopilot Skill
Run the full idea-to-implementation pipeline autonomously, skipping stages already completed, and self-correcting at each review stage.
When to Activate
This skill is relevant when:
- The user wants to go from an idea or feature request to working code in one shot
- The user says "autopilot", "just build it", "end to end", "full pipeline", or "plan through implementation"
- The user wants to skip manual approval gates and let the agent self-correct
- The user has a rough idea and wants the agent to handle everything from specification to QA
Core Principles
Zero Manual Gates
- Run the entire pipeline without pausing for user approval.
- Only escalate to the user for critical issues that cannot be autonomously resolved (ambiguous requirements, business decisions, or review loops that hit the max iteration limit).
Smart Skip
- Check what's already been done before starting each stage.
- Spec exists? Skip
/specify. Spec + clarification record exists? Skip /clarify. Plan exists? Skip /plan. Etc.
- A spec file alone is NOT enough to skip clarification — the clarification pass must have been explicitly recorded.
- Announce which stages are skipped and why.
Self-Correcting
- When a review finds issues, fix them immediately — don't stop and ask.
- Loop reviews up to the max iteration limit. Escalate to user only if ambiguous or product-level.
Plan Is the Contract
- Always plan before coding. Never jump straight to implementation.
- Fix the plan when the review says so, then proceed.
Quality Without Gatekeeping
- Every stage gets reviewed. No shortcuts.
- Reviews are checkpoints, not stop signs — fix and move on.
Ship-Ready Output
- The goal is reviewed, working code ready for
/commit.
Pipeline
/specify — draft the product specification (skip if spec file exists)
/clarify — review spec for completeness, self-answer questions, fix gaps (skip if clarification already recorded in spec)
- 🧹 Clear context — spec is on disk
/planning — draft the implementation plan (skip if plan file exists)
/review_plan — critique the plan → fix all issues → re-review until APPROVED (skip if plan already has APPROVED verdict)
- 🧹 Clear context — plan is on disk, re-read it to bootstrap
/tasks — break down into actionable tasks (skip if tasks file exists)
/implement — execute the plan
- 🧹 Clear context — code is on disk, use
git diff to bootstrap
/code_review — review the code → fix all issues → re-review until PASS
/quality — comprehensive QA → fix all issues → re-run until PASS
Quick Checks
When running autopilot, verify: