@bhargavvc/sdd-cc 1.30.0 → 1.35.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.ja-JP.md +144 -110
- package/README.ko-KR.md +143 -107
- package/README.md +183 -112
- package/README.pt-BR.md +90 -52
- package/README.zh-CN.md +141 -101
- package/agents/sdd-advisor-researcher.md +23 -0
- package/agents/sdd-ai-researcher.md +133 -0
- package/agents/sdd-code-fixer.md +516 -0
- package/agents/sdd-code-reviewer.md +355 -0
- package/agents/sdd-codebase-mapper.md +3 -3
- package/agents/sdd-debugger.md +17 -5
- package/agents/sdd-doc-verifier.md +201 -0
- package/agents/sdd-doc-writer.md +602 -0
- package/agents/sdd-domain-researcher.md +153 -0
- package/agents/sdd-eval-auditor.md +164 -0
- package/agents/sdd-eval-planner.md +154 -0
- package/agents/sdd-executor.md +87 -4
- package/agents/sdd-framework-selector.md +160 -0
- package/agents/sdd-intel-updater.md +314 -0
- package/agents/sdd-nyquist-auditor.md +1 -1
- package/agents/sdd-phase-researcher.md +71 -4
- package/agents/sdd-plan-checker.md +100 -6
- package/agents/sdd-planner.md +145 -206
- package/agents/sdd-project-researcher.md +25 -2
- package/agents/sdd-research-synthesizer.md +3 -3
- package/agents/sdd-roadmapper.md +6 -6
- package/agents/sdd-security-auditor.md +128 -0
- package/agents/sdd-ui-auditor.md +43 -3
- package/agents/sdd-ui-checker.md +5 -5
- package/agents/sdd-ui-researcher.md +27 -4
- package/agents/sdd-user-profiler.md +2 -2
- package/agents/sdd-verifier.md +142 -22
- package/bin/install.js +2151 -551
- package/commands/sdd/add-backlog.md +5 -5
- package/commands/sdd/add-tests.md +2 -2
- package/commands/sdd/ai-integration-phase.md +36 -0
- package/commands/sdd/analyze-dependencies.md +34 -0
- package/commands/sdd/audit-fix.md +33 -0
- package/commands/sdd/autonomous.md +7 -2
- package/commands/sdd/cleanup.md +5 -0
- package/commands/sdd/code-review-fix.md +52 -0
- package/commands/sdd/code-review.md +55 -0
- package/commands/sdd/complete-milestone.md +6 -6
- package/commands/sdd/debug.md +22 -9
- package/commands/sdd/discuss-phase.md +7 -2
- package/commands/sdd/do.md +1 -1
- package/commands/sdd/docs-update.md +48 -0
- package/commands/sdd/eval-review.md +32 -0
- package/commands/sdd/execute-phase.md +4 -0
- package/commands/sdd/explore.md +27 -0
- package/commands/sdd/fast.md +2 -2
- package/commands/sdd/from-sdd2.md +45 -0
- package/commands/sdd/help.md +2 -0
- package/commands/sdd/import.md +36 -0
- package/commands/sdd/intel.md +179 -0
- package/commands/sdd/join-discord.md +2 -1
- package/commands/sdd/manager.md +1 -0
- package/commands/sdd/map-codebase.md +3 -3
- package/commands/sdd/new-milestone.md +1 -1
- package/commands/sdd/new-project.md +5 -1
- package/commands/sdd/new-workspace.md +1 -1
- package/commands/sdd/next.md +2 -0
- package/commands/sdd/plan-milestone-gaps.md +2 -2
- package/commands/sdd/plan-phase.md +6 -1
- package/commands/sdd/plant-seed.md +1 -1
- package/commands/sdd/profile-user.md +1 -1
- package/commands/sdd/quick.md +5 -3
- package/commands/sdd/reapply-patches.md +230 -42
- package/commands/sdd/research-phase.md +3 -3
- package/commands/sdd/review-backlog.md +1 -0
- package/commands/sdd/review.md +6 -3
- package/commands/sdd/scan.md +26 -0
- package/commands/sdd/secure-phase.md +35 -0
- package/commands/sdd/ship.md +1 -1
- package/commands/sdd/thread.md +5 -5
- package/commands/sdd/undo.md +34 -0
- package/commands/sdd/verify-work.md +1 -1
- package/commands/sdd/workstreams.md +17 -11
- package/hooks/dist/sdd-check-update.js +33 -8
- package/hooks/dist/sdd-context-monitor.js +17 -8
- package/hooks/dist/sdd-phase-boundary.sh +27 -0
- package/hooks/dist/sdd-prompt-guard.js +1 -0
- package/hooks/dist/sdd-read-guard.js +82 -0
- package/hooks/dist/sdd-session-state.sh +33 -0
- package/hooks/dist/sdd-statusline.js +137 -15
- package/hooks/dist/sdd-validate-commit.sh +47 -0
- package/hooks/dist/sdd-workflow-guard.js +4 -4
- package/hooks/sdd-check-update.js +139 -0
- package/hooks/sdd-context-monitor.js +165 -0
- package/hooks/sdd-phase-boundary.sh +27 -0
- package/hooks/sdd-prompt-guard.js +97 -0
- package/hooks/sdd-read-guard.js +82 -0
- package/hooks/sdd-session-state.sh +33 -0
- package/hooks/sdd-statusline.js +241 -0
- package/hooks/sdd-validate-commit.sh +47 -0
- package/hooks/sdd-workflow-guard.js +94 -0
- package/package.json +3 -3
- package/scripts/build-hooks.js +18 -7
- package/scripts/prompt-injection-scan.sh +1 -0
- package/scripts/rebrand-gsd-to-sdd.sh +221 -220
- package/scripts/run-tests.cjs +5 -1
- package/scripts/sync-upstream.sh +1 -1
- package/sdd/bin/lib/commands.cjs +79 -17
- package/sdd/bin/lib/config.cjs +90 -48
- package/sdd/bin/lib/core.cjs +452 -87
- package/sdd/bin/lib/docs.cjs +267 -0
- package/sdd/bin/lib/frontmatter.cjs +381 -336
- package/sdd/bin/lib/init.cjs +110 -16
- package/sdd/bin/lib/intel.cjs +660 -0
- package/sdd/bin/lib/learnings.cjs +378 -0
- package/sdd/bin/lib/milestone.cjs +42 -11
- package/sdd/bin/lib/model-profiles.cjs +17 -15
- package/sdd/bin/lib/phase.cjs +367 -288
- package/sdd/bin/lib/profile-output.cjs +106 -10
- package/sdd/bin/lib/roadmap.cjs +146 -115
- package/sdd/bin/lib/schema-detect.cjs +238 -0
- package/sdd/bin/lib/sdd2-import.cjs +511 -0
- package/sdd/bin/lib/security.cjs +124 -3
- package/sdd/bin/lib/state.cjs +648 -264
- package/sdd/bin/lib/template.cjs +8 -4
- package/sdd/bin/lib/verify.cjs +209 -28
- package/sdd/bin/lib/workstream.cjs +7 -3
- package/sdd/bin/sdd-tools.cjs +184 -12
- package/sdd/contexts/dev.md +21 -0
- package/sdd/contexts/research.md +22 -0
- package/sdd/contexts/review.md +22 -0
- package/sdd/references/agent-contracts.md +79 -0
- package/sdd/references/ai-evals.md +156 -0
- package/sdd/references/ai-frameworks.md +186 -0
- package/sdd/references/artifact-types.md +113 -0
- package/sdd/references/common-bug-patterns.md +114 -0
- package/sdd/references/context-budget.md +49 -0
- package/sdd/references/continuation-format.md +25 -25
- package/sdd/references/domain-probes.md +125 -0
- package/sdd/references/few-shot-examples/plan-checker.md +73 -0
- package/sdd/references/few-shot-examples/verifier.md +109 -0
- package/sdd/references/gate-prompts.md +100 -0
- package/sdd/references/gates.md +70 -0
- package/sdd/references/git-integration.md +1 -1
- package/sdd/references/ios-scaffold.md +123 -0
- package/sdd/references/model-profile-resolution.md +2 -0
- package/sdd/references/model-profiles.md +24 -18
- package/sdd/references/planner-gap-closure.md +62 -0
- package/sdd/references/planner-reviews.md +39 -0
- package/sdd/references/planner-revision.md +87 -0
- package/sdd/references/planning-config.md +252 -0
- package/sdd/references/revision-loop.md +97 -0
- package/sdd/references/thinking-models-debug.md +44 -0
- package/sdd/references/thinking-models-execution.md +50 -0
- package/sdd/references/thinking-models-planning.md +62 -0
- package/sdd/references/thinking-models-research.md +50 -0
- package/sdd/references/thinking-models-verification.md +55 -0
- package/sdd/references/thinking-partner.md +96 -0
- package/sdd/references/ui-brand.md +4 -4
- package/sdd/references/universal-anti-patterns.md +63 -0
- package/sdd/references/verification-overrides.md +227 -0
- package/sdd/references/workstream-flag.md +56 -3
- package/sdd/templates/AI-SPEC.md +246 -0
- package/sdd/templates/DEBUG.md +1 -1
- package/sdd/templates/SECURITY.md +61 -0
- package/sdd/templates/UAT.md +4 -4
- package/sdd/templates/VALIDATION.md +4 -4
- package/sdd/templates/claude-md.md +32 -9
- package/sdd/templates/config.json +4 -0
- package/sdd/templates/debug-subagent-prompt.md +1 -1
- package/sdd/templates/dev-preferences.md +1 -1
- package/sdd/templates/discovery.md +2 -2
- package/sdd/templates/phase-prompt.md +1 -1
- package/sdd/templates/planner-subagent-prompt.md +3 -3
- package/sdd/templates/project.md +1 -1
- package/sdd/templates/research.md +1 -1
- package/sdd/templates/state.md +2 -2
- package/sdd/workflows/add-phase.md +8 -8
- package/sdd/workflows/add-tests.md +12 -9
- package/sdd/workflows/add-todo.md +5 -3
- package/sdd/workflows/ai-integration-phase.md +284 -0
- package/sdd/workflows/analyze-dependencies.md +96 -0
- package/sdd/workflows/audit-fix.md +157 -0
- package/sdd/workflows/audit-milestone.md +11 -11
- package/sdd/workflows/audit-uat.md +2 -2
- package/sdd/workflows/autonomous.md +195 -27
- package/sdd/workflows/check-todos.md +12 -10
- package/sdd/workflows/cleanup.md +2 -0
- package/sdd/workflows/code-review-fix.md +497 -0
- package/sdd/workflows/code-review.md +515 -0
- package/sdd/workflows/complete-milestone.md +56 -22
- package/sdd/workflows/diagnose-issues.md +10 -3
- package/sdd/workflows/discovery-phase.md +5 -3
- package/sdd/workflows/discuss-phase-assumptions.md +24 -6
- package/sdd/workflows/discuss-phase-power.md +291 -0
- package/sdd/workflows/discuss-phase.md +173 -21
- package/sdd/workflows/do.md +23 -21
- package/sdd/workflows/docs-update.md +1155 -0
- package/sdd/workflows/eval-review.md +155 -0
- package/sdd/workflows/execute-phase.md +594 -38
- package/sdd/workflows/execute-plan.md +67 -96
- package/sdd/workflows/explore.md +139 -0
- package/sdd/workflows/fast.md +5 -5
- package/sdd/workflows/forensics.md +2 -2
- package/sdd/workflows/health.md +4 -4
- package/sdd/workflows/help.md +122 -119
- package/sdd/workflows/import.md +276 -0
- package/sdd/workflows/inbox.md +387 -0
- package/sdd/workflows/insert-phase.md +7 -7
- package/sdd/workflows/list-phase-assumptions.md +4 -4
- package/sdd/workflows/list-workspaces.md +2 -2
- package/sdd/workflows/manager.md +35 -32
- package/sdd/workflows/map-codebase.md +7 -5
- package/sdd/workflows/milestone-summary.md +2 -2
- package/sdd/workflows/new-milestone.md +17 -9
- package/sdd/workflows/new-project.md +50 -25
- package/sdd/workflows/new-workspace.md +7 -5
- package/sdd/workflows/next.md +67 -11
- package/sdd/workflows/note.md +9 -7
- package/sdd/workflows/pause-work.md +75 -12
- package/sdd/workflows/plan-milestone-gaps.md +8 -8
- package/sdd/workflows/plan-phase.md +294 -42
- package/sdd/workflows/plant-seed.md +6 -3
- package/sdd/workflows/pr-branch.md +42 -14
- package/sdd/workflows/profile-user.md +9 -7
- package/sdd/workflows/progress.md +45 -45
- package/sdd/workflows/quick.md +195 -47
- package/sdd/workflows/remove-phase.md +6 -6
- package/sdd/workflows/remove-workspace.md +3 -1
- package/sdd/workflows/research-phase.md +2 -2
- package/sdd/workflows/resume-project.md +12 -12
- package/sdd/workflows/review.md +109 -9
- package/sdd/workflows/scan.md +102 -0
- package/sdd/workflows/secure-phase.md +166 -0
- package/sdd/workflows/session-report.md +2 -2
- package/sdd/workflows/settings.md +38 -12
- package/sdd/workflows/ship.md +21 -9
- package/sdd/workflows/stats.md +1 -1
- package/sdd/workflows/transition.md +23 -23
- package/sdd/workflows/ui-phase.md +15 -7
- package/sdd/workflows/ui-review.md +29 -4
- package/sdd/workflows/undo.md +314 -0
- package/sdd/workflows/update.md +171 -20
- package/sdd/workflows/validate-phase.md +6 -4
- package/sdd/workflows/verify-phase.md +210 -6
- package/sdd/workflows/verify-work.md +83 -9
- package/sdd/commands/sdd/workstreams.md +0 -63
package/README.md
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
|
|
3
|
-
#
|
|
3
|
+
# SPEC-DRIVEN DEVELOPMENT
|
|
4
4
|
|
|
5
5
|
**English** · [Português](README.pt-BR.md) · [简体中文](README.zh-CN.md) · [日本語](README.ja-JP.md) · [한국어](README.ko-KR.md)
|
|
6
6
|
|
|
7
|
-
**A light-weight and powerful meta-prompting, context engineering and spec-driven development system for Claude Code, OpenCode, Gemini CLI, Codex, Copilot, Cursor, Windsurf, and
|
|
7
|
+
**A light-weight and powerful meta-prompting, context engineering and spec-driven development system for Claude Code, OpenCode, Gemini CLI, Kilo, Codex, Copilot, Cursor, Windsurf, Antigravity, Augment, Trae, Qwen Code, Cline, and CodeBuddy.**
|
|
8
8
|
|
|
9
9
|
**Solves context rot — the quality degradation that happens as Claude fills its context window.**
|
|
10
10
|
|
|
11
11
|
[](https://www.npmjs.com/package/@bhargavvc/sdd-cc)
|
|
12
12
|
[](https://www.npmjs.com/package/@bhargavvc/sdd-cc)
|
|
13
|
-
[](https://discord.gg/
|
|
13
|
+
[](https://github.com/bhargavvc/sdd-cc/actions/workflows/test.yml)
|
|
14
|
+
[](https://discord.gg/mYgfVNfA2r)
|
|
15
15
|
[](https://x.com/sdd_foundation)
|
|
16
16
|
[](https://dexscreener.com/solana/dwudwjvan7bzkw9zwlbyv6kspdlvhwzrqy6ebk8xzxkv)
|
|
17
|
-
[](https://github.com/bhargavvc/sdd-cc)
|
|
18
18
|
[](LICENSE)
|
|
19
19
|
|
|
20
20
|
<br>
|
|
@@ -47,6 +47,20 @@ npx @bhargavvc/sdd-cc@latest
|
|
|
47
47
|
|
|
48
48
|
---
|
|
49
49
|
|
|
50
|
+
> [!IMPORTANT]
|
|
51
|
+
> ### Welcome Back to SDD
|
|
52
|
+
>
|
|
53
|
+
> If you're returning to SDD after the recent Anthropic Terms of Service changes — welcome back. We kept building while you were gone.
|
|
54
|
+
>
|
|
55
|
+
> **To re-import an existing project into SDD:**
|
|
56
|
+
> 1. Run `/sdd-map-codebase` to scan and index your current codebase state
|
|
57
|
+
> 2. Run `/sdd-new-project` to initialize a fresh SDD planning structure using the codebase map as context
|
|
58
|
+
> 3. Review [docs/USER-GUIDE.md](docs/USER-GUIDE.md) and the [CHANGELOG](CHANGELOG.md) for updates — a lot has changed since you were last here
|
|
59
|
+
>
|
|
60
|
+
> Your code is fine. SDD just needs its planning context rebuilt. The two commands above handle that.
|
|
61
|
+
|
|
62
|
+
---
|
|
63
|
+
|
|
50
64
|
## Why I Built This
|
|
51
65
|
|
|
52
66
|
I'm a solo developer. I don't write code — Claude Code does.
|
|
@@ -73,6 +87,16 @@ SDD fixes that. It's the context engineering layer that makes Claude Code reliab
|
|
|
73
87
|
|
|
74
88
|
People who want to describe what they want and have it built correctly — without pretending they're running a 50-person engineering org.
|
|
75
89
|
|
|
90
|
+
Built-in quality gates catch real problems: schema drift detection flags ORM changes missing migrations, security enforcement anchors verification to threat models, and scope reduction detection prevents the planner from silently dropping your requirements.
|
|
91
|
+
|
|
92
|
+
### v1.34.0 Highlights
|
|
93
|
+
|
|
94
|
+
- **Gates taxonomy** — 4 canonical gate types (pre-flight, revision, escalation, abort) wired into plan-checker and verifier agents
|
|
95
|
+
- **Shell hooks fix** — `hooks/*.sh` files are now correctly included in the npm package, eliminating startup hook errors on fresh installs
|
|
96
|
+
- **Post-merge hunk verification** — `reapply-patches` detects silently dropped hunks after three-way merge
|
|
97
|
+
- **detectConfigDir fix** — Claude Code users no longer see false "update available" warnings when multiple runtimes are installed
|
|
98
|
+
- **3 bug fixes** — Milestone backlog preservation, detectConfigDir priority, and npm package manifest
|
|
99
|
+
|
|
76
100
|
---
|
|
77
101
|
|
|
78
102
|
## Getting Started
|
|
@@ -82,18 +106,20 @@ npx @bhargavvc/sdd-cc@latest
|
|
|
82
106
|
```
|
|
83
107
|
|
|
84
108
|
The installer prompts you to choose:
|
|
85
|
-
1. **Runtime** — Claude Code, OpenCode, Gemini, Codex, Copilot, Cursor, Windsurf, Antigravity, or all (interactive multi-select — pick multiple runtimes in a single install session)
|
|
109
|
+
1. **Runtime** — Claude Code, OpenCode, Gemini, Kilo, Codex, Copilot, Cursor, Windsurf, Antigravity, Augment, Trae, Qwen Code, CodeBuddy, Cline, or all (interactive multi-select — pick multiple runtimes in a single install session)
|
|
86
110
|
2. **Location** — Global (all projects) or local (current project only)
|
|
87
111
|
|
|
88
112
|
Verify with:
|
|
89
|
-
- Claude Code / Gemini: `/sdd
|
|
90
|
-
- OpenCode: `/sdd-help`
|
|
113
|
+
- Claude Code / Gemini / Copilot / Antigravity / Qwen Code: `/sdd-help`
|
|
114
|
+
- OpenCode / Kilo / Augment / Trae / CodeBuddy: `/sdd-help`
|
|
91
115
|
- Codex: `$sdd-help`
|
|
92
|
-
-
|
|
93
|
-
- Antigravity: `/sdd:help`
|
|
116
|
+
- Cline: SDD installs via `.clinerules` — verify by checking `.clinerules` exists
|
|
94
117
|
|
|
95
118
|
> [!NOTE]
|
|
96
|
-
> Codex
|
|
119
|
+
> Claude Code 2.1.88+, Qwen Code, and Codex install as skills (`skills/sdd-*/SKILL.md`). Older Claude Code versions use `commands/sdd/`. Cline uses `.clinerules` for configuration. The installer handles all formats automatically.
|
|
120
|
+
|
|
121
|
+
> [!TIP]
|
|
122
|
+
> For source-based installs or environments where npm is unavailable, see **[docs/manual-update.md](docs/manual-update.md)**.
|
|
97
123
|
|
|
98
124
|
### Staying Updated
|
|
99
125
|
|
|
@@ -111,17 +137,21 @@ npx @bhargavvc/sdd-cc@latest
|
|
|
111
137
|
npx @bhargavvc/sdd-cc --claude --global # Install to ~/.claude/
|
|
112
138
|
npx @bhargavvc/sdd-cc --claude --local # Install to ./.claude/
|
|
113
139
|
|
|
114
|
-
# OpenCode
|
|
140
|
+
# OpenCode
|
|
115
141
|
npx @bhargavvc/sdd-cc --opencode --global # Install to ~/.config/opencode/
|
|
116
142
|
|
|
117
143
|
# Gemini CLI
|
|
118
144
|
npx @bhargavvc/sdd-cc --gemini --global # Install to ~/.gemini/
|
|
119
145
|
|
|
120
|
-
#
|
|
146
|
+
# Kilo
|
|
147
|
+
npx @bhargavvc/sdd-cc --kilo --global # Install to ~/.config/kilo/
|
|
148
|
+
npx @bhargavvc/sdd-cc --kilo --local # Install to ./.kilo/
|
|
149
|
+
|
|
150
|
+
# Codex
|
|
121
151
|
npx @bhargavvc/sdd-cc --codex --global # Install to ~/.codex/
|
|
122
152
|
npx @bhargavvc/sdd-cc --codex --local # Install to ./.codex/
|
|
123
153
|
|
|
124
|
-
# Copilot
|
|
154
|
+
# Copilot
|
|
125
155
|
npx @bhargavvc/sdd-cc --copilot --global # Install to ~/.github/
|
|
126
156
|
npx @bhargavvc/sdd-cc --copilot --local # Install to ./.github/
|
|
127
157
|
|
|
@@ -129,20 +159,40 @@ npx @bhargavvc/sdd-cc --copilot --local # Install to ./.github/
|
|
|
129
159
|
npx @bhargavvc/sdd-cc --cursor --global # Install to ~/.cursor/
|
|
130
160
|
npx @bhargavvc/sdd-cc --cursor --local # Install to ./.cursor/
|
|
131
161
|
|
|
132
|
-
# Windsurf
|
|
133
|
-
npx @bhargavvc/sdd-cc --windsurf --global # Install to ~/.windsurf/
|
|
162
|
+
# Windsurf
|
|
163
|
+
npx @bhargavvc/sdd-cc --windsurf --global # Install to ~/.codeium/windsurf/
|
|
134
164
|
npx @bhargavvc/sdd-cc --windsurf --local # Install to ./.windsurf/
|
|
135
165
|
|
|
136
|
-
# Antigravity
|
|
166
|
+
# Antigravity
|
|
137
167
|
npx @bhargavvc/sdd-cc --antigravity --global # Install to ~/.gemini/antigravity/
|
|
138
168
|
npx @bhargavvc/sdd-cc --antigravity --local # Install to ./.agent/
|
|
139
169
|
|
|
170
|
+
# Augment
|
|
171
|
+
npx @bhargavvc/sdd-cc --augment --global # Install to ~/.augment/
|
|
172
|
+
npx @bhargavvc/sdd-cc --augment --local # Install to ./.augment/
|
|
173
|
+
|
|
174
|
+
# Trae
|
|
175
|
+
npx @bhargavvc/sdd-cc --trae --global # Install to ~/.trae/
|
|
176
|
+
npx @bhargavvc/sdd-cc --trae --local # Install to ./.trae/
|
|
177
|
+
|
|
178
|
+
# Qwen Code
|
|
179
|
+
npx @bhargavvc/sdd-cc --qwen --global # Install to ~/.qwen/
|
|
180
|
+
npx @bhargavvc/sdd-cc --qwen --local # Install to ./.qwen/
|
|
181
|
+
|
|
182
|
+
# CodeBuddy
|
|
183
|
+
npx @bhargavvc/sdd-cc --codebuddy --global # Install to ~/.codebuddy/
|
|
184
|
+
npx @bhargavvc/sdd-cc --codebuddy --local # Install to ./.codebuddy/
|
|
185
|
+
|
|
186
|
+
# Cline
|
|
187
|
+
npx @bhargavvc/sdd-cc --cline --global # Install to ~/.cline/
|
|
188
|
+
npx @bhargavvc/sdd-cc --cline --local # Install to ./.clinerules
|
|
189
|
+
|
|
140
190
|
# All runtimes
|
|
141
191
|
npx @bhargavvc/sdd-cc --all --global # Install to all directories
|
|
142
192
|
```
|
|
143
193
|
|
|
144
194
|
Use `--global` (`-g`) or `--local` (`-l`) to skip the location prompt.
|
|
145
|
-
Use `--claude`, `--opencode`, `--gemini`, `--codex`, `--copilot`, `--cursor`, `--windsurf`, `--antigravity`, or `--all` to skip the runtime prompt.
|
|
195
|
+
Use `--claude`, `--opencode`, `--gemini`, `--kilo`, `--codex`, `--copilot`, `--cursor`, `--windsurf`, `--antigravity`, `--augment`, `--trae`, `--qwen`, `--codebuddy`, `--cline`, or `--all` to skip the runtime prompt.
|
|
146
196
|
Use `--sdk` to also install the SDD SDK CLI (`sdd-sdk`) for headless autonomous execution.
|
|
147
197
|
|
|
148
198
|
</details>
|
|
@@ -150,14 +200,17 @@ Use `--sdk` to also install the SDD SDK CLI (`sdd-sdk`) for headless autonomous
|
|
|
150
200
|
<details>
|
|
151
201
|
<summary><strong>Development Installation</strong></summary>
|
|
152
202
|
|
|
153
|
-
Clone the repository and run the installer locally:
|
|
203
|
+
Clone the repository, build hooks, and run the installer locally:
|
|
154
204
|
|
|
155
205
|
```bash
|
|
156
|
-
git clone https://github.com/
|
|
206
|
+
git clone https://github.com/bhargavvc/sdd-cc.git
|
|
157
207
|
cd sdd
|
|
208
|
+
npm run build:hooks
|
|
158
209
|
node bin/install.js --claude --local
|
|
159
210
|
```
|
|
160
211
|
|
|
212
|
+
The `build:hooks` step is required — it compiles hook sources into `hooks/dist/` which the installer copies from. Without it, hooks won't be installed and you'll get hook errors in Claude Code. (The npm release handles this automatically via `prepublishOnly`.)
|
|
213
|
+
|
|
161
214
|
Installs to `./.claude/` for testing modifications before contributing.
|
|
162
215
|
|
|
163
216
|
</details>
|
|
@@ -210,12 +263,12 @@ If you prefer not to use that flag, add this to your project's `.claude/settings
|
|
|
210
263
|
|
|
211
264
|
## How It Works
|
|
212
265
|
|
|
213
|
-
> **Already have code?** Run `/sdd
|
|
266
|
+
> **Already have code?** Run `/sdd-map-codebase` first. It spawns parallel agents to analyze your stack, architecture, conventions, and concerns. Then `/sdd-new-project` knows your codebase — questions focus on what you're adding, and planning automatically loads your patterns.
|
|
214
267
|
|
|
215
268
|
### 1. Initialize Project
|
|
216
269
|
|
|
217
270
|
```
|
|
218
|
-
/sdd
|
|
271
|
+
/sdd-new-project
|
|
219
272
|
```
|
|
220
273
|
|
|
221
274
|
One command, one flow. The system:
|
|
@@ -234,7 +287,7 @@ You approve the roadmap. Now you're ready to build.
|
|
|
234
287
|
### 2. Discuss Phase
|
|
235
288
|
|
|
236
289
|
```
|
|
237
|
-
/sdd
|
|
290
|
+
/sdd-discuss-phase 1
|
|
238
291
|
```
|
|
239
292
|
|
|
240
293
|
**This is where you shape the implementation.**
|
|
@@ -257,14 +310,14 @@ The deeper you go here, the more the system builds what you actually want. Skip
|
|
|
257
310
|
|
|
258
311
|
**Creates:** `{phase_num}-CONTEXT.md`
|
|
259
312
|
|
|
260
|
-
> **Assumptions Mode:** Prefer codebase analysis over questions? Set `workflow.discuss_mode` to `assumptions` in `/sdd
|
|
313
|
+
> **Assumptions Mode:** Prefer codebase analysis over questions? Set `workflow.discuss_mode` to `assumptions` in `/sdd-settings`. The system reads your code, surfaces what it would do and why, and only asks you to correct what's wrong. See [Discuss Mode](docs/workflow-discuss-mode.md).
|
|
261
314
|
|
|
262
315
|
---
|
|
263
316
|
|
|
264
317
|
### 3. Plan Phase
|
|
265
318
|
|
|
266
319
|
```
|
|
267
|
-
/sdd
|
|
320
|
+
/sdd-plan-phase 1
|
|
268
321
|
```
|
|
269
322
|
|
|
270
323
|
The system:
|
|
@@ -282,7 +335,7 @@ Each plan is small enough to execute in a fresh context window. No degradation,
|
|
|
282
335
|
### 4. Execute Phase
|
|
283
336
|
|
|
284
337
|
```
|
|
285
|
-
/sdd
|
|
338
|
+
/sdd-execute-phase 1
|
|
286
339
|
```
|
|
287
340
|
|
|
288
341
|
The system:
|
|
@@ -333,7 +386,7 @@ This is why "vertical slices" (Plan 01: User feature end-to-end) parallelize bet
|
|
|
333
386
|
### 5. Verify Work
|
|
334
387
|
|
|
335
388
|
```
|
|
336
|
-
/sdd
|
|
389
|
+
/sdd-verify-work 1
|
|
337
390
|
```
|
|
338
391
|
|
|
339
392
|
**This is where you confirm it actually works.**
|
|
@@ -347,7 +400,7 @@ The system:
|
|
|
347
400
|
3. **Diagnoses failures automatically** — Spawns debug agents to find root causes
|
|
348
401
|
4. **Creates verified fix plans** — Ready for immediate re-execution
|
|
349
402
|
|
|
350
|
-
If everything passes, you move on. If something's broken, you don't manually debug — you just run `/sdd
|
|
403
|
+
If everything passes, you move on. If something's broken, you don't manually debug — you just run `/sdd-execute-phase` again with the fix plans it created.
|
|
351
404
|
|
|
352
405
|
**Creates:** `{phase_num}-UAT.md`, fix plans if issues found
|
|
353
406
|
|
|
@@ -356,38 +409,38 @@ If everything passes, you move on. If something's broken, you don't manually deb
|
|
|
356
409
|
### 6. Repeat → Ship → Complete → Next Milestone
|
|
357
410
|
|
|
358
411
|
```
|
|
359
|
-
/sdd
|
|
360
|
-
/sdd
|
|
361
|
-
/sdd
|
|
362
|
-
/sdd
|
|
363
|
-
/sdd
|
|
412
|
+
/sdd-discuss-phase 2
|
|
413
|
+
/sdd-plan-phase 2
|
|
414
|
+
/sdd-execute-phase 2
|
|
415
|
+
/sdd-verify-work 2
|
|
416
|
+
/sdd-ship 2 # Create PR from verified work
|
|
364
417
|
...
|
|
365
|
-
/sdd
|
|
366
|
-
/sdd
|
|
418
|
+
/sdd-complete-milestone
|
|
419
|
+
/sdd-new-milestone
|
|
367
420
|
```
|
|
368
421
|
|
|
369
422
|
Or let SDD figure out the next step automatically:
|
|
370
423
|
|
|
371
424
|
```
|
|
372
|
-
/sdd
|
|
425
|
+
/sdd-next # Auto-detect and run next step
|
|
373
426
|
```
|
|
374
427
|
|
|
375
428
|
Loop **discuss → plan → execute → verify → ship** until milestone complete.
|
|
376
429
|
|
|
377
|
-
If you want faster intake during discussion, use `/sdd
|
|
430
|
+
If you want faster intake during discussion, use `/sdd-discuss-phase <n> --batch` to answer a small grouped set of questions at once instead of one-by-one. Use `--chain` to auto-chain discuss into plan+execute without stopping between steps.
|
|
378
431
|
|
|
379
432
|
Each phase gets your input (discuss), proper research (plan), clean execution (execute), and human verification (verify). Context stays fresh. Quality stays high.
|
|
380
433
|
|
|
381
|
-
When all phases are done, `/sdd
|
|
434
|
+
When all phases are done, `/sdd-complete-milestone` archives the milestone and tags the release.
|
|
382
435
|
|
|
383
|
-
Then `/sdd
|
|
436
|
+
Then `/sdd-new-milestone` starts the next version — same flow as `new-project` but for your existing codebase. You describe what you want to build next, the system researches the domain, you scope requirements, and it creates a fresh roadmap. Each milestone is a clean cycle: define → build → ship.
|
|
384
437
|
|
|
385
438
|
---
|
|
386
439
|
|
|
387
440
|
### Quick Mode
|
|
388
441
|
|
|
389
442
|
```
|
|
390
|
-
/sdd
|
|
443
|
+
/sdd-quick
|
|
391
444
|
```
|
|
392
445
|
|
|
393
446
|
**For ad-hoc tasks that don't need full planning.**
|
|
@@ -402,12 +455,14 @@ Quick mode gives you SDD guarantees (atomic commits, state tracking) with a fast
|
|
|
402
455
|
|
|
403
456
|
**`--research` flag:** Spawns a focused researcher before planning. Investigates implementation approaches, library options, and pitfalls. Use when you're unsure how to approach a task.
|
|
404
457
|
|
|
405
|
-
**`--full` flag:** Enables plan-checking
|
|
458
|
+
**`--full` flag:** Enables all phases — discussion + research + plan-checking + verification. The full SDD pipeline in quick-task form.
|
|
459
|
+
|
|
460
|
+
**`--validate` flag:** Enables plan-checking + post-execution verification only (the previous `--full` behavior).
|
|
406
461
|
|
|
407
|
-
Flags are composable: `--discuss --research --
|
|
462
|
+
Flags are composable: `--discuss --research --validate` gives discussion + research + plan-checking + verification.
|
|
408
463
|
|
|
409
464
|
```
|
|
410
|
-
/sdd
|
|
465
|
+
/sdd-quick
|
|
411
466
|
> What do you want to do? "Add dark mode toggle to settings"
|
|
412
467
|
```
|
|
413
468
|
|
|
@@ -506,117 +561,119 @@ You're never locked in. The system adapts.
|
|
|
506
561
|
|
|
507
562
|
| Command | What it does |
|
|
508
563
|
|---------|--------------|
|
|
509
|
-
| `/sdd
|
|
510
|
-
| `/sdd
|
|
511
|
-
| `/sdd
|
|
512
|
-
| `/sdd
|
|
513
|
-
| `/sdd
|
|
514
|
-
| `/sdd
|
|
515
|
-
| `/sdd
|
|
516
|
-
| `/sdd
|
|
517
|
-
| `/sdd
|
|
518
|
-
| `/sdd
|
|
519
|
-
| `/sdd
|
|
520
|
-
| `/sdd
|
|
521
|
-
| `/sdd
|
|
564
|
+
| `/sdd-new-project [--auto]` | Full initialization: questions → research → requirements → roadmap |
|
|
565
|
+
| `/sdd-discuss-phase [N] [--auto] [--analyze] [--chain]` | Capture implementation decisions before planning (`--analyze` adds trade-off analysis, `--chain` auto-chains into plan+execute) |
|
|
566
|
+
| `/sdd-plan-phase [N] [--auto] [--reviews]` | Research + plan + verify for a phase (`--reviews` loads codebase review findings) |
|
|
567
|
+
| `/sdd-execute-phase <N>` | Execute all plans in parallel waves, verify when complete |
|
|
568
|
+
| `/sdd-verify-work [N]` | Manual user acceptance testing ¹ |
|
|
569
|
+
| `/sdd-ship [N] [--draft]` | Create PR from verified phase work with auto-generated body |
|
|
570
|
+
| `/sdd-next` | Automatically advance to the next logical workflow step |
|
|
571
|
+
| `/sdd-fast <text>` | Inline trivial tasks — skips planning entirely, executes immediately |
|
|
572
|
+
| `/sdd-audit-milestone` | Verify milestone achieved its definition of done |
|
|
573
|
+
| `/sdd-complete-milestone` | Archive milestone, tag release |
|
|
574
|
+
| `/sdd-new-milestone [name]` | Start next version: questions → research → requirements → roadmap |
|
|
575
|
+
| `/sdd-forensics [desc]` | Post-mortem investigation of failed workflow runs (diagnoses stuck loops, missing artifacts, git anomalies) |
|
|
576
|
+
| `/sdd-milestone-summary [version]` | Generate comprehensive project summary for team onboarding and review |
|
|
522
577
|
|
|
523
578
|
### Workstreams
|
|
524
579
|
|
|
525
580
|
| Command | What it does |
|
|
526
581
|
|---------|--------------|
|
|
527
|
-
| `/sdd
|
|
528
|
-
| `/sdd
|
|
529
|
-
| `/sdd
|
|
530
|
-
| `/sdd
|
|
582
|
+
| `/sdd-workstreams list` | Show all workstreams and their status |
|
|
583
|
+
| `/sdd-workstreams create <name>` | Create a namespaced workstream for parallel milestone work |
|
|
584
|
+
| `/sdd-workstreams switch <name>` | Switch active workstream |
|
|
585
|
+
| `/sdd-workstreams complete <name>` | Complete and merge a workstream |
|
|
531
586
|
|
|
532
587
|
### Multi-Project Workspaces
|
|
533
588
|
|
|
534
589
|
| Command | What it does |
|
|
535
590
|
|---------|--------------|
|
|
536
|
-
| `/sdd
|
|
537
|
-
| `/sdd
|
|
538
|
-
| `/sdd
|
|
591
|
+
| `/sdd-new-workspace` | Create isolated workspace with repo copies (worktrees or clones) |
|
|
592
|
+
| `/sdd-list-workspaces` | Show all SDD workspaces and their status |
|
|
593
|
+
| `/sdd-remove-workspace` | Remove workspace and clean up worktrees |
|
|
539
594
|
|
|
540
595
|
### UI Design
|
|
541
596
|
|
|
542
597
|
| Command | What it does |
|
|
543
598
|
|---------|--------------|
|
|
544
|
-
| `/sdd
|
|
545
|
-
| `/sdd
|
|
599
|
+
| `/sdd-ui-phase [N]` | Generate UI design contract (UI-SPEC.md) for frontend phases |
|
|
600
|
+
| `/sdd-ui-review [N]` | Retroactive 6-pillar visual audit of implemented frontend code |
|
|
546
601
|
|
|
547
602
|
### Navigation
|
|
548
603
|
|
|
549
604
|
| Command | What it does |
|
|
550
605
|
|---------|--------------|
|
|
551
|
-
| `/sdd
|
|
552
|
-
| `/sdd
|
|
553
|
-
| `/sdd
|
|
554
|
-
| `/sdd
|
|
555
|
-
| `/sdd
|
|
556
|
-
| `/sdd
|
|
606
|
+
| `/sdd-progress` | Where am I? What's next? |
|
|
607
|
+
| `/sdd-next` | Auto-detect state and run the next step |
|
|
608
|
+
| `/sdd-help` | Show all commands and usage guide |
|
|
609
|
+
| `/sdd-update` | Update SDD with changelog preview |
|
|
610
|
+
| `/sdd-join-discord` | Join the SDD Discord community |
|
|
611
|
+
| `/sdd-manager` | Interactive command center for managing multiple phases |
|
|
557
612
|
|
|
558
613
|
### Brownfield
|
|
559
614
|
|
|
560
615
|
| Command | What it does |
|
|
561
616
|
|---------|--------------|
|
|
562
|
-
| `/sdd
|
|
617
|
+
| `/sdd-map-codebase [area]` | Analyze existing codebase before new-project |
|
|
563
618
|
|
|
564
619
|
### Phase Management
|
|
565
620
|
|
|
566
621
|
| Command | What it does |
|
|
567
622
|
|---------|--------------|
|
|
568
|
-
| `/sdd
|
|
569
|
-
| `/sdd
|
|
570
|
-
| `/sdd
|
|
571
|
-
| `/sdd
|
|
572
|
-
| `/sdd
|
|
623
|
+
| `/sdd-add-phase` | Append phase to roadmap |
|
|
624
|
+
| `/sdd-insert-phase [N]` | Insert urgent work between phases |
|
|
625
|
+
| `/sdd-remove-phase [N]` | Remove future phase, renumber |
|
|
626
|
+
| `/sdd-list-phase-assumptions [N]` | See Claude's intended approach before planning |
|
|
627
|
+
| `/sdd-plan-milestone-gaps` | Create phases to close gaps from audit |
|
|
573
628
|
|
|
574
629
|
### Session
|
|
575
630
|
|
|
576
631
|
| Command | What it does |
|
|
577
632
|
|---------|--------------|
|
|
578
|
-
| `/sdd
|
|
579
|
-
| `/sdd
|
|
580
|
-
| `/sdd
|
|
633
|
+
| `/sdd-pause-work` | Create handoff when stopping mid-phase (writes HANDOFF.json) |
|
|
634
|
+
| `/sdd-resume-work` | Restore from last session |
|
|
635
|
+
| `/sdd-session-report` | Generate session summary with work performed and outcomes |
|
|
581
636
|
|
|
582
637
|
### Workstreams
|
|
583
638
|
|
|
584
639
|
| Command | What it does |
|
|
585
640
|
|---------|--------------|
|
|
586
|
-
| `/sdd
|
|
641
|
+
| `/sdd-workstreams` | Manage parallel workstreams (list, create, switch, status, progress, complete) |
|
|
587
642
|
|
|
588
643
|
### Code Quality
|
|
589
644
|
|
|
590
645
|
| Command | What it does |
|
|
591
646
|
|---------|--------------|
|
|
592
|
-
| `/sdd
|
|
593
|
-
| `/sdd
|
|
594
|
-
| `/sdd
|
|
647
|
+
| `/sdd-review` | Cross-AI peer review of current phase or branch |
|
|
648
|
+
| `/sdd-secure-phase [N]` | Security enforcement with threat-model-anchored verification |
|
|
649
|
+
| `/sdd-pr-branch` | Create clean PR branch filtering `.planning/` commits |
|
|
650
|
+
| `/sdd-audit-uat` | Audit verification debt — find phases missing UAT |
|
|
651
|
+
| `/sdd-docs-update` | Verified documentation generation with doc-writer and doc-verifier agents |
|
|
595
652
|
|
|
596
653
|
### Backlog & Threads
|
|
597
654
|
|
|
598
655
|
| Command | What it does |
|
|
599
656
|
|---------|--------------|
|
|
600
|
-
| `/sdd
|
|
601
|
-
| `/sdd
|
|
602
|
-
| `/sdd
|
|
603
|
-
| `/sdd
|
|
657
|
+
| `/sdd-plant-seed <idea>` | Capture forward-looking ideas with trigger conditions — surfaces at the right milestone |
|
|
658
|
+
| `/sdd-add-backlog <desc>` | Add idea to backlog parking lot (999.x numbering, outside active sequence) |
|
|
659
|
+
| `/sdd-review-backlog` | Review and promote backlog items to active milestone or remove stale entries |
|
|
660
|
+
| `/sdd-thread [name]` | Persistent context threads — lightweight cross-session knowledge for work spanning multiple sessions |
|
|
604
661
|
|
|
605
662
|
### Utilities
|
|
606
663
|
|
|
607
664
|
| Command | What it does |
|
|
608
665
|
|---------|--------------|
|
|
609
|
-
| `/sdd
|
|
610
|
-
| `/sdd
|
|
611
|
-
| `/sdd
|
|
612
|
-
| `/sdd
|
|
613
|
-
| `/sdd
|
|
614
|
-
| `/sdd
|
|
615
|
-
| `/sdd
|
|
616
|
-
| `/sdd
|
|
617
|
-
| `/sdd
|
|
618
|
-
| `/sdd
|
|
619
|
-
| `/sdd
|
|
666
|
+
| `/sdd-settings` | Configure model profile and workflow agents |
|
|
667
|
+
| `/sdd-set-profile <profile>` | Switch model profile (quality/balanced/budget/inherit) |
|
|
668
|
+
| `/sdd-add-todo [desc]` | Capture idea for later |
|
|
669
|
+
| `/sdd-check-todos` | List pending todos |
|
|
670
|
+
| `/sdd-debug [desc]` | Systematic debugging with persistent state |
|
|
671
|
+
| `/sdd-do <text>` | Route freeform text to the right SDD command automatically |
|
|
672
|
+
| `/sdd-note <text>` | Zero-friction idea capture — append, list, or promote notes to todos |
|
|
673
|
+
| `/sdd-quick [--full] [--validate] [--discuss] [--research]` | Execute ad-hoc task with SDD guarantees (`--full` enables all phases, `--validate` adds plan-checking and verification, `--discuss` gathers context first, `--research` investigates approaches before planning) |
|
|
674
|
+
| `/sdd-health [--repair]` | Validate `.planning/` directory integrity, auto-repair with `--repair` |
|
|
675
|
+
| `/sdd-stats` | Display project statistics — phases, plans, requirements, git metrics |
|
|
676
|
+
| `/sdd-profile-user [--questionnaire] [--refresh]` | Generate developer behavioral profile from session analysis for personalized responses |
|
|
620
677
|
|
|
621
678
|
<sup>¹ Contributed by reddit user OracleGreyBeard</sup>
|
|
622
679
|
|
|
@@ -624,7 +681,7 @@ You're never locked in. The system adapts.
|
|
|
624
681
|
|
|
625
682
|
## Configuration
|
|
626
683
|
|
|
627
|
-
SDD stores project settings in `.planning/config.json`. Configure during `/sdd
|
|
684
|
+
SDD stores project settings in `.planning/config.json`. Configure during `/sdd-new-project` or update later with `/sdd-settings`. For the full config schema, workflow toggles, git branching options, and per-agent model breakdown, see the [User Guide](docs/USER-GUIDE.md#configuration-reference).
|
|
628
685
|
|
|
629
686
|
### Core Settings
|
|
630
687
|
|
|
@@ -632,6 +689,7 @@ SDD stores project settings in `.planning/config.json`. Configure during `/sdd:n
|
|
|
632
689
|
|---------|---------|---------|------------------|
|
|
633
690
|
| `mode` | `yolo`, `interactive` | `interactive` | Auto-approve vs confirm at each step |
|
|
634
691
|
| `granularity` | `coarse`, `standard`, `fine` | `standard` | Phase granularity — how finely scope is sliced (phases × plans) |
|
|
692
|
+
| `project_code` | string | `""` | Prefix phase directories with a project code |
|
|
635
693
|
|
|
636
694
|
### Model Profiles
|
|
637
695
|
|
|
@@ -646,12 +704,12 @@ Control which Claude model each agent uses. Balance quality vs token spend.
|
|
|
646
704
|
|
|
647
705
|
Switch profiles:
|
|
648
706
|
```
|
|
649
|
-
/sdd
|
|
707
|
+
/sdd-set-profile budget
|
|
650
708
|
```
|
|
651
709
|
|
|
652
710
|
Use `inherit` when using non-Anthropic providers (OpenRouter, local models) or to follow the current runtime model selection (e.g. OpenCode `/model`).
|
|
653
711
|
|
|
654
|
-
Or configure via `/sdd
|
|
712
|
+
Or configure via `/sdd-settings`.
|
|
655
713
|
|
|
656
714
|
### Workflow Agents
|
|
657
715
|
|
|
@@ -667,10 +725,11 @@ These spawn additional agents during planning/execution. They improve quality bu
|
|
|
667
725
|
| `workflow.discuss_mode` | `'discuss'` | Discussion mode: `discuss` (interview), `assumptions` (codebase-first) |
|
|
668
726
|
| `workflow.skip_discuss` | `false` | Skip discuss-phase in autonomous mode |
|
|
669
727
|
| `workflow.text_mode` | `false` | Text-only mode for remote sessions (no TUI menus) |
|
|
728
|
+
| `workflow.use_worktrees` | `true` | Toggle worktree isolation for execution |
|
|
670
729
|
|
|
671
|
-
Use `/sdd
|
|
672
|
-
- `/sdd
|
|
673
|
-
- `/sdd
|
|
730
|
+
Use `/sdd-settings` to toggle these, or override per-invocation:
|
|
731
|
+
- `/sdd-plan-phase --skip-research`
|
|
732
|
+
- `/sdd-plan-phase --skip-verify`
|
|
674
733
|
|
|
675
734
|
### Execution
|
|
676
735
|
|
|
@@ -758,11 +817,11 @@ This prevents Claude from reading these files entirely, regardless of what comma
|
|
|
758
817
|
|
|
759
818
|
**Commands not found after install?**
|
|
760
819
|
- Restart your runtime to reload commands/skills
|
|
761
|
-
- Verify files exist in `~/.claude/
|
|
820
|
+
- Verify files exist in `~/.claude/skills/sdd-*/SKILL.md` (Claude Code 2.1.88+) or `~/.claude/commands/sdd/` (legacy)
|
|
762
821
|
- For Codex, verify skills exist in `~/.codex/skills/sdd-*/SKILL.md` (global) or `./.codex/skills/sdd-*/SKILL.md` (local)
|
|
763
822
|
|
|
764
823
|
**Commands not working as expected?**
|
|
765
|
-
- Run `/sdd
|
|
824
|
+
- Run `/sdd-help` to verify installation
|
|
766
825
|
- Re-run `npx @bhargavvc/sdd-cc` to reinstall
|
|
767
826
|
|
|
768
827
|
**Updating to the latest version?**
|
|
@@ -787,21 +846,33 @@ To remove SDD completely:
|
|
|
787
846
|
npx @bhargavvc/sdd-cc --claude --global --uninstall
|
|
788
847
|
npx @bhargavvc/sdd-cc --opencode --global --uninstall
|
|
789
848
|
npx @bhargavvc/sdd-cc --gemini --global --uninstall
|
|
849
|
+
npx @bhargavvc/sdd-cc --kilo --global --uninstall
|
|
790
850
|
npx @bhargavvc/sdd-cc --codex --global --uninstall
|
|
791
851
|
npx @bhargavvc/sdd-cc --copilot --global --uninstall
|
|
792
852
|
npx @bhargavvc/sdd-cc --cursor --global --uninstall
|
|
793
853
|
npx @bhargavvc/sdd-cc --windsurf --global --uninstall
|
|
794
854
|
npx @bhargavvc/sdd-cc --antigravity --global --uninstall
|
|
855
|
+
npx @bhargavvc/sdd-cc --augment --global --uninstall
|
|
856
|
+
npx @bhargavvc/sdd-cc --trae --global --uninstall
|
|
857
|
+
npx @bhargavvc/sdd-cc --qwen --global --uninstall
|
|
858
|
+
npx @bhargavvc/sdd-cc --codebuddy --global --uninstall
|
|
859
|
+
npx @bhargavvc/sdd-cc --cline --global --uninstall
|
|
795
860
|
|
|
796
861
|
# Local installs (current project)
|
|
797
862
|
npx @bhargavvc/sdd-cc --claude --local --uninstall
|
|
798
863
|
npx @bhargavvc/sdd-cc --opencode --local --uninstall
|
|
799
864
|
npx @bhargavvc/sdd-cc --gemini --local --uninstall
|
|
865
|
+
npx @bhargavvc/sdd-cc --kilo --local --uninstall
|
|
800
866
|
npx @bhargavvc/sdd-cc --codex --local --uninstall
|
|
801
867
|
npx @bhargavvc/sdd-cc --copilot --local --uninstall
|
|
802
868
|
npx @bhargavvc/sdd-cc --cursor --local --uninstall
|
|
803
869
|
npx @bhargavvc/sdd-cc --windsurf --local --uninstall
|
|
804
870
|
npx @bhargavvc/sdd-cc --antigravity --local --uninstall
|
|
871
|
+
npx @bhargavvc/sdd-cc --augment --local --uninstall
|
|
872
|
+
npx @bhargavvc/sdd-cc --trae --local --uninstall
|
|
873
|
+
npx @bhargavvc/sdd-cc --qwen --local --uninstall
|
|
874
|
+
npx @bhargavvc/sdd-cc --codebuddy --local --uninstall
|
|
875
|
+
npx @bhargavvc/sdd-cc --cline --local --uninstall
|
|
805
876
|
```
|
|
806
877
|
|
|
807
878
|
This removes all SDD commands, agents, hooks, and settings while preserving your other configurations.
|
|
@@ -810,7 +881,7 @@ This removes all SDD commands, agents, hooks, and settings while preserving your
|
|
|
810
881
|
|
|
811
882
|
## Community Ports
|
|
812
883
|
|
|
813
|
-
OpenCode, Gemini CLI, and Codex are now natively supported via `npx @bhargavvc/sdd-cc`.
|
|
884
|
+
OpenCode, Gemini CLI, Kilo, and Codex are now natively supported via `npx @bhargavvc/sdd-cc`.
|
|
814
885
|
|
|
815
886
|
These community ports pioneered multi-runtime support:
|
|
816
887
|
|
|
@@ -823,11 +894,11 @@ These community ports pioneered multi-runtime support:
|
|
|
823
894
|
|
|
824
895
|
## Star History
|
|
825
896
|
|
|
826
|
-
<a href="https://star-history.com/#
|
|
897
|
+
<a href="https://star-history.com/#bhargavvc/sdd-cc&Date">
|
|
827
898
|
<picture>
|
|
828
|
-
<source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=
|
|
829
|
-
<source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=
|
|
830
|
-
<img alt="Star History Chart" src="https://api.star-history.com/svg?repos=
|
|
899
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://api.star-history.com/svg?repos=bhargavvc/sdd-cc&type=Date&theme=dark" />
|
|
900
|
+
<source media="(prefers-color-scheme: light)" srcset="https://api.star-history.com/svg?repos=bhargavvc/sdd-cc&type=Date" />
|
|
901
|
+
<img alt="Star History Chart" src="https://api.star-history.com/svg?repos=bhargavvc/sdd-cc&type=Date" />
|
|
831
902
|
</picture>
|
|
832
903
|
</a>
|
|
833
904
|
|