One command installs an agentic SDLC workflow as Agent Skills: discovery, requirements, design, tasks, and autonomous implementation with per-task independent review on hosts with native subagents. Works across 8 AI coding agents, with the same 17-skill set on each.
👻 Kiro-inspired. Similar spec-driven, agentic SDLC style as Kiro IDE. Existing Kiro specs remain compatible and portable.
cc-sdd v3.0 is a rework around Agent Skills and long-running autonomous implementation.
/kiro-discoveryas the new entry point. Discovery routes new work into one of: extend an existing spec, implement directly with no spec, create one new spec, decompose into multiple specs, or mixed decomposition. It writesbrief.mdand, when needed,roadmap.md, so you can resume a workstream without re-explaining scope./kiro-implfor long-running autonomous implementation. When native subagents are available, each task gets a fresh implementer running TDD (RED → GREEN) behind a feature flag, an independent reviewer, and an auto-debug pass when blocked or after repeated review rejection. Otherwise, implementation and review run inline. Learnings propagate via## Implementation Notesintasks.md. Each iteration handles one task; recorded task state supports resumption after checking unfinished work and active workers.- Boundary-first spec discipline.
design.mdnow includes a File Structure Plan that drives task boundaries. Tasks carry_Boundary:_and_Depends:_annotations. Review and validation look for boundary violations, not just style issues. /kiro-spec-batchfor multi-spec initiatives. Turn a roadmap into multiple specs by dependency wave, in parallel when native subagents are available, with cross-spec review to catch contradictions, duplicated responsibilities, and interface mismatches.- Agent Skills across 8 coding agents. 17 skills per install, loaded on demand (progressive disclosure). Claude Code and Codex are stable; Cursor, Copilot, Devin Local / CLI, OpenCode, Gemini CLI, and Antigravity are in beta. Native subagents are used when available; hosts without them execute sequentially with inline review.
Full skills-mode workflow and /kiro-impl internals: Skill Reference.
Upgrading from v1.x or v2.x? See the Migration Guide.
cc-sdd treats the spec as a contract between parts of the system, not a master command document handed to the agent. Code remains the source of truth. Specs make the boundaries between parts of the code explicit so humans and agents can work in parallel without constant synchronization.
The bet: explicit contracts at the right granularity let AI-driven development at team scale move faster, not slower. Agents write the spec, humans approve the contract at phase gates, code is what ships.
Boundaries are not overhead. They are what lets you move freely inside while protecting the outside.
Full rationale, trade-offs, and when-to-use / when-not-to-use: Why cc-sdd? A philosophy note.
cd your-project
npx cc-sdd@latestThe default installs Claude Code Skills with English docs. To pick another agent or language:
npx cc-sdd@latest --codex-skills --lang ja # Codex, Japanese
npx cc-sdd@latest --cursor-skills --lang zh-TW # Cursor IDE, Traditional ChineseSupports 8 AI coding agents (Claude Code and Codex stable; Cursor, Copilot, Devin Local / CLI, OpenCode, Gemini CLI, and Antigravity in beta) and 14 languages. See Supported Agents for the full list.
Then, in your agent:
/kiro-discovery <idea>Not sure where to start? Start with kiro-discovery. It routes your request and tells you what command to run next.
| You want to... | Skills mode |
|---|---|
| Start a new feature or product-sized idea | kiro-discovery → kiro-spec-init → kiro-spec-requirements → kiro-spec-design → kiro-spec-tasks → kiro-impl |
| Extend an existing system | kiro-steering → kiro-discovery or kiro-spec-init → optional kiro-validate-gap → kiro-spec-design → kiro-spec-tasks → kiro-impl |
| Break down a large initiative | kiro-discovery → kiro-spec-batch |
| Implement a small change with no spec | kiro-discovery → direct implementation |
Legacy /kiro:* command modes are still available (--claude, --cursor, etc.) but are deprecated. See the Migration Guide for the upgrade path.
For larger approved task sets, run kiro-impl. Native subagents provide per-task implementation, independent review, and auto-debug when available; otherwise the workflow runs in the main context with inline review.
Example: build a new Photo Albums feature.
/kiro-discovery Photo albums with upload, tagging, and sharing
# discovery writes brief.md (and roadmap.md when multi-spec) and suggests the next command
/kiro-spec-init photo-albums
/kiro-spec-requirements photo-albums
/kiro-spec-design photo-albums
/kiro-spec-tasks photo-albums
/kiro-impl photo-albums
# autonomous: fresh implementer/reviewer when subagents are available; inline otherwiseTypical spec outputs (under 10 minutes):
requirements.md: EARS-format requirements with acceptance criteria.design.md: architecture with Mermaid diagrams and a File Structure Plan.tasks.md: implementation tasks with boundaries and dependency annotations.
On a host with native subagents, /kiro-impl runs tasks with TDD (RED → GREEN) behind feature flags, independent review, and auto-debug on failure. Inline execution follows the same review protocol in the main context.
Eight current integrations ship 17 skills each; the deprecated Cascade variant is retained for migration. Invocation, native subagent availability, and independent review depend on the execution surface and configuration.
| Agent | Skills mode | Stability | Legacy mode |
|---|---|---|---|
| Claude Code | --claude-skills |
Stable | --claude / --claude-agent (deprecated) |
| Codex | --codex-skills |
Stable | --codex (blocked) |
| Cursor IDE | --cursor-skills |
Beta | --cursor (deprecated) |
| GitHub Copilot | --copilot-skills |
Beta | --copilot (deprecated) |
| Devin Local / CLI | --devin / --devin-skills |
Beta | — |
| Windsurf / Cascade (legacy) | --windsurf-skills |
Deprecated | --windsurf (deprecated) |
| OpenCode | --opencode-skills |
Beta | --opencode / --opencode-agent (deprecated) |
| Gemini CLI | --gemini-skills |
Beta | --gemini (deprecated) |
| Antigravity | --antigravity |
Beta | — |
| Qwen Code | — | — | --qwen |
Stability describes integration maturity. Installing 17 skills does not verify that a host can run the full autonomous loop. Use --devin for Devin Local in Devin Desktop or Devin CLI. Installer checks and CLI skill discovery pass for the new beta adapter; authenticated task execution is still unverified. The Windsurf flags are deprecated Cascade migration options; Devin Cloud is outside the new adapter’s scope. Copilot subagents depend on the client. See Agent compatibility for supported surfaces and Antigravity migration guidance.
npx cc-sdd@latest # Claude Code Skills (default)
npx cc-sdd@latest --claude-skills # Claude Code Skills
npx cc-sdd@latest --codex-skills # Codex Skills
npx cc-sdd@latest --cursor-skills # Cursor IDE Skills (beta)
npx cc-sdd@latest --copilot-skills # GitHub Copilot Skills (beta)
npx cc-sdd@latest --devin # Devin Local / CLI Skills (beta)
npx cc-sdd@latest --opencode-skills # OpenCode Skills (beta)
npx cc-sdd@latest --gemini-skills # Gemini CLI Skills (beta)
npx cc-sdd@latest --antigravity # Antigravity Skills (beta)npx cc-sdd@latest --claude # Claude Code commands (use --claude-skills)
npx cc-sdd@latest --claude-agent # Claude Code subagents (use --claude-skills)
npx cc-sdd@latest --cursor # Cursor IDE commands (use --cursor-skills)
npx cc-sdd@latest --copilot # GitHub Copilot prompts (use --copilot-skills)
npx cc-sdd@latest --windsurf # Legacy Cascade workflows (migrate to --devin)
npx cc-sdd@latest --windsurf-skills # Deprecated Cascade skills; migrate to --devin
npx cc-sdd@latest --opencode # OpenCode commands (use --opencode-skills)
npx cc-sdd@latest --opencode-agent # OpenCode subagents (use --opencode-skills)
npx cc-sdd@latest --gemini # Gemini CLI commands (use --gemini-skills)
npx cc-sdd@latest --codex # Codex (blocked, use --codex-skills)
npx cc-sdd@latest --qwen # Qwen Codenpx cc-sdd@latest --lang ja # Japanese
npx cc-sdd@latest --lang zh-TW # Traditional Chinese
npx cc-sdd@latest --lang es # Spanish
# Supports: en, ja, zh-TW, zh, es, pt, de, fr, ru, it, ko, ar, el, vi# Preview changes before applying
npx cc-sdd@latest --dry-run
# Custom specs directory
npx cc-sdd@latest --kiro-dir docsEdit templates and rules in {{KIRO_DIR}}/settings/ to match your team's workflow.
templates/: document structure for requirements, design, tasks.rules/: AI generation principles and judgment criteria.
Common use cases: PRD-style requirements, API and database schemas, approval gates, JIRA integration, domain-specific standards.
Customization Guide has practical examples with copy-paste snippets.
| Guide | What you will learn | Links |
|---|---|---|
| Skill Reference | Skills-mode workflow, supporting skills, /kiro-impl subagent flow, Skills vs --claude-agent |
English | 日本語 |
| Command Reference | Legacy /kiro:* commands with detailed usage, parameters, and examples |
English | 日本語 |
| Customization Guide | Practical examples: PRD requirements, frontend/backend designs, JIRA integration | English | 日本語 |
| Spec-Driven Guide | Complete workflow methodology from requirements to implementation | English | 日本語 |
| Why cc-sdd? | Design rationale, trade-offs, when the tool fits and when it does not | English | 日本語 |
| Claude Subagents | Legacy --claude-agent install target and its spec-quick subagent flow |
English | 日本語 |
| Migration Guide | Upgrading from v1.x / v2.x | English | 日本語 |
Articles & presentations
- Kiroの仕様書駆動開発プロセスをClaude Codeで徹底的に再現した (Zenn, Japanese)
- Claude Codeは仕様駆動の夢を見ない (Speaker Deck, Japanese)
External resources
- Kiro IDE: enhanced spec management and team collaboration.
- Kiro's Spec Methodology: the original spec-driven development methodology.
MIT License