Agent skill · AI & Agents

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.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/agent/autopilot-ianphil-prism-2/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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 ``

What's inside
Steps it walks through
  1. User Input
  2. Execution Flow
  3. Workflow
  4. Step 1: Resolve Feature
  5. Step 2: Parse Phases from tasks.md
  6. Step 3: Sequential Execution
  7. Step 4: Progress Reporting
  8. Step 5: Final Summary
  9. Error Handling
  10. Running in Background
  11. Example Session
  12. Notes
Ships with 1 file
  • metadata.json
Commands it runs
git branch --show-current
tail -100 {output_file}
More from claude-skill-registry
All skills →
About this skill
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.

Keep going