By rubenzarroca
SDD Autopilot — Zero-stop, fully autonomous specify → plan → tasks → implement → verify → review → PR pipeline. MCP server + native Claude Code subagents, no direct API calls.
Run the full SDD Autopilot pipeline: triage -> specify -> plan -> tasks -> implement -> verify -> review -> PR. Zero stops, fully autonomous. Orchestrates subagents via Claude Code native agent system and MCP tools. Use when the user says "auto run", "autopilot", "sdd auto", "build this feature autonomously", or runs /sdd-auto:run.
Initialize a project for SDD Autopilot. Creates .sdd/state.json with the autopilot state machine, scaffolds constitution.md, CLAUDE.md (if not exists), and docs/prd.md. Use when the user says "init sdd", "setup autopilot", "initialize project for sdd", or runs /sdd-auto:init.
Show the current SDD Autopilot state for a project. Lists features, their states, task progress, and verification/review attempt counts. Use when the user says "sdd status", "autopilot status", "what's the feature state", or runs /sdd-auto:status.
A Claude Code plugin that takes a one-sentence feature description and autonomously produces a reviewed pull request. It breaks the feature into a spec, plan, tasks, implementation, verification, and code review — each handled by a dedicated AI agent — so you get structured, repeatable feature development without managing the process yourself.
Claude Code is great for ad-hoc coding tasks, but building a complete feature — with a spec, architecture decisions, task breakdown, implementation, tests, and review — requires you to drive every step. SDD Autopilot automates that entire ceremony. You describe what you want, it handles the how, and you review the PR.
# Install from Claude Code marketplace
# Search for "sdd-autopilot" and install
# Or from source:
git clone https://github.com/rubenzarroca/sdd-autopilot.git ~/.claude/plugins/local/sdd-autopilot
cd ~/.claude/plugins/local/sdd-autopilot/engine && npm install && npm run build
# Run a feature:
/sdd-auto:run health-check "Add a health check endpoint that returns server status"
For the full architecture, see docs/architecture.md.
| Command | Description |
|---|---|
/sdd-auto:run [name] ["brief"] | Run the full pipeline: triage through PR |
/sdd-auto:init | Initialize a project (creates .sdd/state.json, scaffolds docs) |
/sdd-auto:status | Show feature states, task progress, and score history |
The pipeline selects an execution mode automatically based on feature complexity:
| Mode | When | What runs |
|---|---|---|
| Express | Trivial changes | triage -> implement -> PR |
| Light | Low complexity | triage -> specify -> implement -> verify -> PR |
| Standard | Medium complexity | All 8 phases |
| Full | High/critical | All 8 phases + optional Opus review (--opus-review) |
Headless mode lets an external orchestrator (CI script, autonomous agent, cron job) run the SDD pipeline without human interaction, PRs, or pushes.
How to activate: pass --headless flag and set the SDD_MODE=headless environment variable.
Output contract:
0 = success. A single atomic commit is ready on the worktree branch.1 = failure (escalated or awaiting_input — cannot proceed without human).TLDR: {one sentence summary of what was done}The external orchestrator is responsible for merge, push, and branch cleanup.
Example:
SDD_MODE=headless claude -p "/sdd-auto:run my-feature 'Add rate limiting to API'" --dangerously-skip-permissions
--headless is compatible with all execution modes (Express, Light, Standard, Full) and with --skip-worktree. It implies --skip-pr — do not pass both.
git and gh (GitHub CLI) for PR creationMIT
Admin access level
Server config contains admin-level keywords
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
npx claudepluginhub rubenzarroca/sdd-autopilot --plugin sdd-autopilotFull feature development workflow from spec to completion
PROJECT.md-first autonomous development with hybrid auto-fix documentation. 8-agent pipeline, auto-orchestration, docs auto-update on commit (true vibe coding). Knowledge base system with 90% faster repeat research. Strict mode enforces SDLC best practices automatically. Works for ANY Python/JavaScript/TypeScript/Go project.
Development workflow automation including feature development, code quality, and PR management
Helder's personal SDLC toolbelt for AI coding agents — from PRD to ship. Bundles the tracer-bullet workflow alongside TDD, code review, audits, and shipping skills.
Long-running agent harness with 5-layer memory architecture, GitHub integration, autonomous batch processing, Agent Teams with ATDD, 9 hooks (safety, quality gates, team coordination), and 6 Agent Skills
Spec-Driven Development (SDD) plugin for Claude Code providing a comprehensive workflow for building features with requirements, design, tasks, and implementation phases.