freshcrate
Home > AI Agents > cc-sdd

cc-sdd

Turn approved specs into long-running autonomous implementation. A minimal, adaptable SDD harness with Agent Skills for Claude Code, Codex, Cursor, Copilot, Windsurf, OpenCode, Gemini CLI, and Antigra

Description

Turn approved specs into long-running autonomous implementation. A minimal, adaptable SDD harness with Agent Skills for Claude Code, Codex, Cursor, Copilot, Windsurf, OpenCode, Gemini CLI, and Antigravity.

README

cc-sdd: Long-running spec-driven implementation for AI coding agents

npm version install size license: MIT

Turn approved specs into long-running autonomous implementation

One command installs an agentic SDLC workflow as Agent Skills: discovery, requirements, design, tasks, and autonomous implementation with per-task independent review. 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.

What's new in v3.0

cc-sdd v3.0 is a rework around Agent Skills and long-running autonomous implementation.

  • /kiro-discovery as 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 writes brief.md and, when needed, roadmap.md, so you can resume a workstream without re-explaining scope.
  • /kiro-impl for long-running autonomous implementation. Each task gets a fresh implementer running TDD (RED โ†’ GREEN) behind a feature flag, an independent reviewer, and an auto-debug pass that investigates root causes in a clean context when the implementer is blocked or the reviewer rejects twice. Learnings from earlier tasks propagate forward via ## Implementation Notes in tasks.md. 1 task per iteration, safe to re-run after interruption.
  • Boundary-first spec discipline. design.md now 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-batch for multi-spec initiatives. Turn a roadmap into multiple specs in parallel, 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, Windsurf, OpenCode, Gemini CLI, and Antigravity are in beta. No external dependencies; subagents are spawned through each platform's native primitive.

Full skills-mode workflow and /kiro-impl internals: Skill Reference.

Upgrading from v1.x or v2.x? See the Migration Guide.

Why cc-sdd?

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.

Quick Start

cd your-project
npx cc-sdd@latest

The 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 Chinese

Supports 8 AI coding agents (Claude Code and Codex stable; Cursor, Copilot, Windsurf, OpenCode, Gemini CLI, and Antigravity in beta) and 13 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.

Common workflows

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 to start autonomous implementation with per-task subagent spawn, independent review, and auto-debug on failure.

See It In Action

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, independent reviewer, and auto-debug per task

Typical 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.

Then /kiro-impl runs the tasks autonomously with TDD (RED โ†’ GREEN) behind feature flags, an independent reviewer pass, and auto-debug on failure.

Example: design.md System Flow

Supported Agents

All 8 skills variants ship the same 17-skill set. The difference is how much real-world usage each platform integration has seen.

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)
Windsurf IDE --windsurf-skills Beta --windsurf (deprecated)
OpenCode --opencode-skills Beta --opencode / --opencode-agent (deprecated)
Gemini CLI --gemini-skills Beta --gemini (deprecated)
Antigravity --antigravity Beta (experimental) โ€”
Qwen Code โ€” โ€” --qwen

"Beta" does not mean "missing features", the 17 skills and templates are identical across all 8 platforms. It means the platform integration (subagent spawn behavior, ergonomics, SKILL.md loading) has had less real-world usage than Claude Code and Codex, and edge cases may still surface. Please report issues if you hit any.

Advanced Installation

Skills mode (recommended)

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 --windsurf-skills   # Windsurf IDE 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, experimental)

Legacy modes (deprecated)

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       # Windsurf IDE workflows (use --windsurf-skills)
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 Code

Language

npx 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

Advanced options

# Preview changes before applying
npx cc-sdd@latest --dry-run

# Custom specs directory
npx cc-sdd@latest --kiro-dir docs

Customization

Edit 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.

Documentation

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 | ๆ—ฅๆœฌ่ชž

Related resources

Articles & presentations

External resources

License

MIT License

Release History

VersionChangesUrgencyDate
v3.0.2## ๐Ÿ”ง Patch Fixes Patch release that keeps the Codex `spec-reviewer` role valid for cross-spec review. ### What Changed - Added the missing `description` field to the Codex `spec-reviewer` template so Codex keeps the custom role available instead of ignoring it as malformed. ### Resources - **Pull Requests**: [#160](https://github.com/gotalab/cc-sdd/pull/160), [#161](https://github.com/gotalab/cc-sdd/pull/161) - **Full Changelog**: [CHANGELOG.md](https://github.com/gotalab/cc-sdd/blob/main/CHMedium4/13/2026
v3.0.1## ๐Ÿ›ก๏ธ Path Safety Hardening Patch release focused on safer filesystem handling in `cc-sdd`, with a small follow-up mojibake fix and a minor English wording cleanup. ### What Changed - Hardened manifest-, template-, and shared-rule-derived path handling so generated file operations stay within their expected roots - Rejected unsafe traversal-style inputs and writes through symlinked destinations during execution - Fixed the mojibake in the Claude Code Skills `kiro-impl` template so the featureMedium4/11/2026
v3.0.0## Skills Mode & Autonomous Implementation cc-sdd v3.0.0 makes Agent Skills the primary workflow across 8 platforms and turns approved specs into a practical execution control plane, from discovery through long-running autonomous implementation. ### Highlights - Skills mode is now the primary installation path across 8 platforms - New workflow entry points: /kiro-discovery, /kiro-spec-batch, and autonomous /kiro-impl - Native subagent-driven implementation flow replaces the external Ralph LoopMedium4/9/2026
v2.1.1## ๐Ÿ”ง Bug Fixes & Security This patch release includes a bug fix for OpenCode agent and a security update. ### What Changed - Fixed OpenCode agent slash command frontmatter to use full agent path - Updated vitest to v4 to resolve security vulnerabilities ### New Contributors * @hiiamkazuto made their first contribution in #134 ### Resources - **Pull Requests**: #134, #135 - **Full Changelog**: [CHANGELOG.md](https://github.com/gotalab/cc-sdd/blob/main/CHANGELOG.md#211---2026-02-02) - **ReleaLow2/1/2026
v2.1.0## ๐Ÿš€ OpenCode Support Added OpenCode as the 8th supported agent with full Spec-Driven Development workflow integration, and updated recommended models to the latest versions. ### โœจ Highlights - **OpenCode Support**: Full SDD workflow with 11 kiro commands and subagent mode - **Model Updates**: Claude Opus 4.5, OpenAI GPT-5.2, Google Gemini 3 Flash - **Cleaner Prompts**: Removed think keywords from templates ### ๐Ÿ”ง Changes - **Added**: OpenCode support with `.opencode/commands/` and `.opencodLow2/1/2026
v2.0.5## ๐ŸŒ Greek Language Support Added Greek (el) as the 13th supported language. ### What's New - **Greek (el) language support** - All templates, guidelines, and documentation now available in Greek ### New Contributors * @tpapamichail made their first contribution in #121 ### Resources - **Pull Request**: [#121](https://github.com/gotalab/cc-sdd/pull/121) - **Full Changelog**: [CHANGELOG.md](https://github.com/gotalab/cc-sdd/blob/main/CHANGELOG.md#205---2026-01-08) - **Release Notes**: [EngliLow1/7/2026
v2.0.4## What's Changed ### ๐Ÿ› Bug Fixes - Fixed GitHub Copilot prompt files to replace deprecated `mode` attribute with `agent` (#118) - Fixed registry.ts with review improvements (#107) ### ๐Ÿ“š Documentation - Added AI-Assisted SDD book reference to documentation (#109) ## New Contributors * @irisTa56 made their first contribution in #118 * @leosamp made their first contribution in #109 * @Kakenyan made their first contribution in #107 **Full Changelog**: https://github.com/gotalab/cc-sdd/compareLow1/6/2026
v2.0.3## ๐ŸŽ‰ cc-sdd v2.0.3 โ€“ GPT-5.1 Codex tuning Small, focused patch release that refines GPT-5.1 model recommendations and keeps tests aligned with the stricter language-handling rules introduced in v2.0.2. ### โœจ Highlights - **GPT-5.1 Codex recommendations**: Explicitly recommend `gpt-5.1-codex medium/high` for Codex CLI, Cursor, GitHub Copilot, and Windsurf as the primary code-focused option, while keeping `gpt-5.1 medium/high` as a general-purpose fallback. - **DEV_GUIDELINES test alignment**: Low11/15/2025
v2.0.2## ๐Ÿ“ cc-sdd v2.0.2 โ€“ Language & EARS Behavior This release refines language handling and EARS-format guidance across all agents so that generated Markdown follows the spec language more reliably, with clearer EARS behavior. ### What Changed - Align DEV guidelines so that all generated Markdown in project files (requirements, design, tasks, research, validation) uses the target language from `spec.json.language` / `{{LANG_CODE}}`. - Unify fallback behavior across agents so that when `spec.jsonLow11/15/2025
v2.0.1## ๐Ÿ“ Ver 2.0.1 โ€“ Documentation Update Documentation-only release improving README clarity and visual consistency. ### Resources - **PRs**: [#93](https://github.com/gotalab/cc-sdd/pull/93), [#94](https://github.com/gotalab/cc-sdd/pull/94), [#95](https://github.com/gotalab/cc-sdd/pull/95) - **CHANGELOG**: [CHANGELOG.md](https://github.com/gotalab/cc-sdd/blob/main/CHANGELOG.md#201---2025-11-10) - **Release Notes**: [English](https://github.com/gotalab/cc-sdd/blob/main/docs/RELEASE_NOTES/RELEASE_Low11/10/2025
v2.0.0## TL;DR - Stable v2.0.0 (2025-11-09) promotes every alpha.1ใ€œalpha.6 feature to `npx cc-sdd@latest`, so the default install now includes the full spec-driven toolchain. - Parallel task analysis, Research.md, and unified steering/memory overhaul daily authoring. - Brownfield validation commands plus Claude Subagents, Codex, Windsurf, and Copilot bundles are officially supported targets. ## Highlights - **Parallel + Research Flow**: `spec-tasks` auto-flags parallel-ready work with `(P)`, adds `--Low11/9/2025
v1.1.5## What's New - โœจ Add full support for Qwen Code AI assistant - ๐Ÿ“ฆ Reuse existing gemini-cli templates for efficient implementation - ๐Ÿ“š Update all documentation with Qwen Code support ## Usage ```bash npx cc-sdd@latest --qwen-code --lang ja ``` Full changelog: https://github.com/gotalab/cc-sdd/compare/v1.1.4...v1.1.5Low9/24/2025
v1.1.4Hotfix release for bash command snippets in steering and spec-status.\n\nWhat's fixed\n- Fix bash command blocks in steering and spec-status that could fail on some environments (especially Windows/Claude Code).\n- Make the command sections more robust to avoid shell parsing errors.\n\nNotes\n- No breaking changes.\n- Templates and generated command files were aligned accordingly.\n\nRelated\n- Issue: https://github.com/gotalab/cc-sdd/issues/30Low9/17/2025
v1.1.3## ๐Ÿš€ What's New ### Improvements - **Steering Command Templates**: Simplified custom files detection logic using `ls + wc` instead of complex `find + grep` commands - **Enhanced Project Analysis**: Added `AGENTS.md` to steering project analysis for better AI context awareness - **Documentation Updates**: Fixed Kiro IDE integration descriptions across all README files (English, Japanese, Traditional Chinese) ### Template Updates - Updated both Mac and Windows steering templates with coLow9/15/2025
v1.1.2Add more supported languages ## ๐ŸŒ Supported Languages - English (`en`) - Japanese (`ja`) - Traditional Chinese (`zh-TW`) - Chinese (`zh`) ๐Ÿ†• - Spanish (`es`) ๐Ÿ†• - Portuguese (`pt`) ๐Ÿ†• - German (`de`) ๐Ÿ†• - French (`fr`) ๐Ÿ†• - Russian (`ru`) ๐Ÿ†• - Italian (`it`) ๐Ÿ†• - Korean (`ko`) ๐Ÿ†• - Arabic (`ar`) ๐Ÿ†• **Full Changelog**: https://github.com/gotalab/cc-sdd/compare/v1.1.1...v1.1.2Low9/14/2025
v1.1.1## What's Changed * test(cc-sdd): update tests and ignore generated artifacts by @gotalab in https://github.com/gotalab/cc-sdd/pull/57 **Full Changelog**: https://github.com/gotalab/cc-sdd/compare/v1.1.0...v1.1.1Low9/7/2025
v1.1.0## What's Changed * test: improve custom steering output and add edge cases by @gotalab in https://github.com/gotalab/cc-sdd/pull/46 * fix(cc-sdd): install commands on Linux by reusing mac templates (Fixes #44) by @gotalab in https://github.com/gotalab/cc-sdd/pull/47 * Create claude-dispatch.yml by @gotalab in https://github.com/gotalab/cc-sdd/pull/48 * feat(cursor): add Cursor agent manifest, defaults, CLI flags, and tests by @devin-ai-integration[bot] in https://github.com/gotalab/cc-sdd/pull/Low9/7/2025
v1.0.0-beta.4## What's Changed * Update steering documents and improve steering-update command by @gotalab in https://github.com/gotalab/claude-code-spec/pull/3 * Add Claude Code GitHub Workflow by @gotalab in https://github.com/gotalab/claude-code-spec/pull/9 * Add English version documentation by @gotalab in https://github.com/gotalab/claude-code-spec/pull/8 * Add English version documentation with improved language navigation by @gotalab in https://github.com/gotalab/claude-code-spec/pull/10 * Move commanLow8/24/2025

Dependencies & License Audit

Loading dependencies...

Similar Packages

skiller-desktop-skills-managerAI agent skills manager for Claude Code, Cursor, Codex and more โ€” install, sync, and manage skills from one desktop app.v0.2.11
ai-task-managerTask management for AI coding assistantsv1.36.0
signalSIGNAL โ€” Agent Skills: terse structured output (tiers, templates, checkpoints), git workflow skills (commit, push, PR, review, ckpt), Karpathy-inspired coding norms. Claude Code, Cursor, Gemini CLI, Cv0.3.1
voratiqAgent ensembles to design, generate, and select the best code for every task.main@2026-04-21
cherry-studioAI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMsv1.9.2