autopilot
This skill should be used when the user asks to "run autopilot", "autopilot feature N", "implement all phases", "run all phases sequentially", "autopilot 003", or wants to automatically implement all phases of a feature in sequence without manual intervention.
npx skills add majiayu000/claude-skill-registry --skill autopilot-ianphil-prism-2 --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Autopilot: Sequential Phase Implementation Run all phases of a feature sequentially via subagents, respecting dependencies. ## User Input ARGUMENTS = $ARGUMENTS Accept a feature number (e.g., "003") or use current branch if not provided. ```bash /autopilot 003 # Run all phases for feature 003 /autopilot # Run all phases for current branch's feature ``` ## Execution Flow ``` /autopilot 003 │ ▼ ┌─────────────────────┐ │ Load Feature │ │ • Find tasks.md │ │ • Parse phases │ │ • Build order │ └─────────┬───────────┘ │ ▼ ┌─────────────────────┐ │ For Each Phase: │ │ │ │ ┌───────────────┐ │ │ │ Spawn Agent │ │ │ │ /implement │ │ │ │ "Phase N" │ │ │ └───────┬───────┘ │ │ │ │ │ ▼ │ │ ┌───────────────┐ │ │ │ Wait for │ │ │ │ Completion │ │ │ └───────┬───────┘ │ │ │ │ │ ▼ │ │ ┌───────────────┐ │ │ │ Report Status │ │ │ │ → Next Phase │ │ │ └───────────────┘ │ └─────────────────────┘ │ ▼ ┌─────────────────────┐ │ Final Summary │ └─────────────────────┘ ``` ## Workflow ### Step 1: Resolve Feature 1. If ARGUMENTS provided, use as feature number (e.g., "003") 2. If no ARGUMENTS, extract from current git branch: ```bash git branch --show-current # feature/003-agent-behavior-statecharts → 003 ``
- User Input
- Execution Flow
- Workflow
- Step 1: Resolve Feature
- Step 2: Parse Phases from tasks.md
- Step 3: Sequential Execution
- Step 4: Progress Reporting
- Step 5: Final Summary
- Error Handling
- Running in Background
- Example Session
- Notes
git branch --show-current
tail -100 {output_file}What does the autopilot skill do?
This skill should be used when the user asks to "run autopilot", "autopilot feature N", "implement all phases", "run all phases sequentially", "autopilot 003", or wants to automatically implement all phases of a feature in sequence without manual intervention.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill autopilot-ianphil-prism-2 --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
