get-shit-done-cc 1.32.0 → 1.34.1

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.
Files changed (99) hide show
  1. package/README.ja-JP.md +7 -7
  2. package/README.ko-KR.md +7 -7
  3. package/README.md +29 -26
  4. package/README.pt-BR.md +2 -2
  5. package/README.zh-CN.md +7 -7
  6. package/agents/gsd-code-fixer.md +516 -0
  7. package/agents/gsd-code-reviewer.md +355 -0
  8. package/agents/gsd-debugger.md +10 -1
  9. package/agents/gsd-executor.md +3 -0
  10. package/agents/gsd-intel-updater.md +314 -0
  11. package/agents/gsd-phase-researcher.md +3 -0
  12. package/agents/gsd-plan-checker.md +12 -0
  13. package/agents/gsd-planner.md +7 -0
  14. package/agents/gsd-verifier.md +55 -1
  15. package/bin/install.js +177 -222
  16. package/commands/gsd/analyze-dependencies.md +1 -1
  17. package/commands/gsd/audit-fix.md +33 -0
  18. package/commands/gsd/code-review-fix.md +52 -0
  19. package/commands/gsd/code-review.md +55 -0
  20. package/commands/gsd/explore.md +27 -0
  21. package/commands/gsd/import.md +36 -0
  22. package/commands/gsd/intel.md +179 -0
  23. package/commands/gsd/next.md +2 -0
  24. package/commands/gsd/reapply-patches.md +16 -0
  25. package/commands/gsd/scan.md +26 -0
  26. package/commands/gsd/undo.md +34 -0
  27. package/commands/gsd/workstreams.md +6 -6
  28. package/get-shit-done/bin/gsd-tools.cjs +96 -1
  29. package/get-shit-done/bin/lib/config.cjs +31 -10
  30. package/get-shit-done/bin/lib/core.cjs +66 -31
  31. package/get-shit-done/bin/lib/frontmatter.cjs +34 -2
  32. package/get-shit-done/bin/lib/intel.cjs +660 -0
  33. package/get-shit-done/bin/lib/learnings.cjs +378 -0
  34. package/get-shit-done/bin/lib/milestone.cjs +13 -4
  35. package/get-shit-done/bin/lib/model-profiles.cjs +17 -17
  36. package/get-shit-done/bin/lib/security.cjs +119 -0
  37. package/get-shit-done/bin/lib/verify.cjs +15 -15
  38. package/get-shit-done/contexts/dev.md +21 -0
  39. package/get-shit-done/contexts/research.md +22 -0
  40. package/get-shit-done/contexts/review.md +22 -0
  41. package/get-shit-done/references/agent-contracts.md +79 -0
  42. package/get-shit-done/references/common-bug-patterns.md +114 -0
  43. package/get-shit-done/references/context-budget.md +49 -0
  44. package/get-shit-done/references/domain-probes.md +125 -0
  45. package/get-shit-done/references/few-shot-examples/plan-checker.md +73 -0
  46. package/get-shit-done/references/few-shot-examples/verifier.md +109 -0
  47. package/get-shit-done/references/gate-prompts.md +100 -0
  48. package/get-shit-done/references/gates.md +70 -0
  49. package/get-shit-done/references/model-profile-resolution.md +2 -0
  50. package/get-shit-done/references/model-profiles.md +20 -14
  51. package/get-shit-done/references/planning-config.md +216 -1
  52. package/get-shit-done/references/revision-loop.md +97 -0
  53. package/get-shit-done/references/thinking-models-debug.md +44 -0
  54. package/get-shit-done/references/thinking-models-execution.md +50 -0
  55. package/get-shit-done/references/thinking-models-planning.md +62 -0
  56. package/get-shit-done/references/thinking-models-research.md +50 -0
  57. package/get-shit-done/references/thinking-models-verification.md +55 -0
  58. package/get-shit-done/references/thinking-partner.md +96 -0
  59. package/get-shit-done/references/universal-anti-patterns.md +58 -0
  60. package/get-shit-done/references/verification-overrides.md +227 -0
  61. package/get-shit-done/workflows/analyze-dependencies.md +3 -3
  62. package/get-shit-done/workflows/audit-fix.md +157 -0
  63. package/get-shit-done/workflows/autonomous.md +22 -1
  64. package/get-shit-done/workflows/code-review-fix.md +497 -0
  65. package/get-shit-done/workflows/code-review.md +515 -0
  66. package/get-shit-done/workflows/discuss-phase-power.md +3 -3
  67. package/get-shit-done/workflows/discuss-phase.md +20 -0
  68. package/get-shit-done/workflows/execute-phase.md +103 -0
  69. package/get-shit-done/workflows/explore.md +139 -0
  70. package/get-shit-done/workflows/import.md +274 -0
  71. package/get-shit-done/workflows/inbox.md +384 -0
  72. package/get-shit-done/workflows/manager.md +5 -5
  73. package/get-shit-done/workflows/new-milestone.md +1 -1
  74. package/get-shit-done/workflows/next.md +56 -0
  75. package/get-shit-done/workflows/plan-phase.md +48 -1
  76. package/get-shit-done/workflows/quick.md +96 -2
  77. package/get-shit-done/workflows/review.md +23 -3
  78. package/get-shit-done/workflows/scan.md +102 -0
  79. package/get-shit-done/workflows/settings.md +1 -1
  80. package/get-shit-done/workflows/ui-review.md +2 -2
  81. package/get-shit-done/workflows/undo.md +312 -0
  82. package/hooks/dist/gsd-check-update.js +12 -2
  83. package/hooks/dist/gsd-phase-boundary.sh +27 -0
  84. package/hooks/dist/gsd-prompt-guard.js +1 -0
  85. package/hooks/dist/gsd-session-state.sh +33 -0
  86. package/hooks/dist/gsd-validate-commit.sh +47 -0
  87. package/hooks/gsd-check-update.js +139 -0
  88. package/hooks/gsd-context-monitor.js +163 -0
  89. package/hooks/gsd-phase-boundary.sh +27 -0
  90. package/hooks/gsd-prompt-guard.js +97 -0
  91. package/hooks/gsd-read-guard.js +77 -0
  92. package/hooks/gsd-session-state.sh +33 -0
  93. package/hooks/gsd-statusline.js +126 -0
  94. package/hooks/gsd-validate-commit.sh +47 -0
  95. package/hooks/gsd-workflow-guard.js +94 -0
  96. package/package.json +3 -3
  97. package/scripts/build-hooks.js +17 -7
  98. package/scripts/prompt-injection-scan.sh +1 -0
  99. package/scripts/run-tests.cjs +5 -1
package/README.ja-JP.md CHANGED
@@ -125,21 +125,21 @@ npx get-shit-done-cc@latest
125
125
  npx get-shit-done-cc --claude --global # ~/.claude/ にインストール
126
126
  npx get-shit-done-cc --claude --local # ./.claude/ にインストール
127
127
 
128
- # OpenCode(オープンソース、無料モデル)
128
+ # OpenCode
129
129
  npx get-shit-done-cc --opencode --global # ~/.config/opencode/ にインストール
130
130
 
131
131
  # Gemini CLI
132
132
  npx get-shit-done-cc --gemini --global # ~/.gemini/ にインストール
133
133
 
134
- # Kilo(OpenCodeフォーク)
134
+ # Kilo
135
135
  npx get-shit-done-cc --kilo --global # ~/.config/kilo/ にインストール
136
136
  npx get-shit-done-cc --kilo --local # ./.kilo/ にインストール
137
137
 
138
- # Codex(スキルファースト)
138
+ # Codex
139
139
  npx get-shit-done-cc --codex --global # ~/.codex/ にインストール
140
140
  npx get-shit-done-cc --codex --local # ./.codex/ にインストール
141
141
 
142
- # Copilot(GitHub Copilot CLI)
142
+ # Copilot
143
143
  npx get-shit-done-cc --copilot --global # ~/.github/ にインストール
144
144
  npx get-shit-done-cc --copilot --local # ./.github/ にインストール
145
145
 
@@ -147,7 +147,7 @@ npx get-shit-done-cc --copilot --local # ./.github/ にインストール
147
147
  npx get-shit-done-cc --cursor --global # ~/.cursor/ にインストール
148
148
  npx get-shit-done-cc --cursor --local # ./.cursor/ にインストール
149
149
 
150
- # Antigravity(Google、スキルファースト、Geminiベース)
150
+ # Antigravity
151
151
  npx get-shit-done-cc --antigravity --global # ~/.gemini/antigravity/ にインストール
152
152
  npx get-shit-done-cc --antigravity --local # ./.agent/ にインストール
153
153
 
@@ -155,11 +155,11 @@ npx get-shit-done-cc --antigravity --local # ./.agent/ にインストール
155
155
  npx get-shit-done-cc --augment --global # ~/.augment/ にインストール
156
156
  npx get-shit-done-cc --augment --local # ./.augment/ にインストール
157
157
 
158
- # Trae(ByteDance、スキルファースト)
158
+ # Trae
159
159
  npx get-shit-done-cc --trae --global # ~/.trae/ にインストール
160
160
  npx get-shit-done-cc --trae --local # ./.trae/ にインストール
161
161
 
162
- # Cline(.clinerules使用)
162
+ # Cline
163
163
  npx get-shit-done-cc --cline --global # ~/.cline/ にインストール
164
164
  npx get-shit-done-cc --cline --local # ./.clinerules にインストール
165
165
 
package/README.ko-KR.md CHANGED
@@ -125,21 +125,21 @@ npx get-shit-done-cc@latest
125
125
  npx get-shit-done-cc --claude --global # ~/.claude/에 설치
126
126
  npx get-shit-done-cc --claude --local # ./.claude/에 설치
127
127
 
128
- # OpenCode (오픈소스, 무료 모델)
128
+ # OpenCode
129
129
  npx get-shit-done-cc --opencode --global # ~/.config/opencode/에 설치
130
130
 
131
131
  # Gemini CLI
132
132
  npx get-shit-done-cc --gemini --global # ~/.gemini/에 설치
133
133
 
134
- # Kilo (OpenCode 포크)
134
+ # Kilo
135
135
  npx get-shit-done-cc --kilo --global # ~/.config/kilo/에 설치
136
136
  npx get-shit-done-cc --kilo --local # ./.kilo/에 설치
137
137
 
138
- # Codex (스킬 우선)
138
+ # Codex
139
139
  npx get-shit-done-cc --codex --global # ~/.codex/에 설치
140
140
  npx get-shit-done-cc --codex --local # ./.codex/에 설치
141
141
 
142
- # Copilot (GitHub Copilot CLI)
142
+ # Copilot
143
143
  npx get-shit-done-cc --copilot --global # ~/.github/에 설치
144
144
  npx get-shit-done-cc --copilot --local # ./.github/에 설치
145
145
 
@@ -147,7 +147,7 @@ npx get-shit-done-cc --copilot --local # ./.github/에 설치
147
147
  npx get-shit-done-cc --cursor --global # ~/.cursor/에 설치
148
148
  npx get-shit-done-cc --cursor --local # ./.cursor/에 설치
149
149
 
150
- # Antigravity (Google, 스킬 우선, Gemini 기반)
150
+ # Antigravity
151
151
  npx get-shit-done-cc --antigravity --global # ~/.gemini/antigravity/에 설치
152
152
  npx get-shit-done-cc --antigravity --local # ./.agent/에 설치
153
153
 
@@ -155,11 +155,11 @@ npx get-shit-done-cc --antigravity --local # ./.agent/에 설치
155
155
  npx get-shit-done-cc --augment --global # ~/.augment/에 설치
156
156
  npx get-shit-done-cc --augment --local # ./.augment/에 설치
157
157
 
158
- # Trae (ByteDance, 스킬 우선)
158
+ # Trae
159
159
  npx get-shit-done-cc --trae --global # ~/.trae/에 설치
160
160
  npx get-shit-done-cc --trae --local # ./.trae/에 설치
161
161
 
162
- # Cline (.clinerules 사용)
162
+ # Cline
163
163
  npx get-shit-done-cc --cline --global # ~/.cline/에 설치
164
164
  npx get-shit-done-cc --cline --local # ./.clinerules에 설치
165
165
 
package/README.md CHANGED
@@ -1,12 +1,3 @@
1
- > [!WARNING]
2
- > **NPM PUBLISH FIX FOR v1.32.0**
3
- > If `npx get-shit-done-cc@latest` does not resolve to v1.32.0, install directly from source:
4
- > ```bash
5
- > git clone https://github.com/gsd-build/get-shit-done && cd get-shit-done
6
- > node scripts/build-hooks.js && node bin/install.js --claude --global
7
- > ```
8
- > See **[docs/manual-update.md](docs/manual-update.md)** for all runtime flags and update instructions.
9
-
10
1
  <div align="center">
11
2
 
12
3
  # GET SHIT DONE
@@ -56,6 +47,20 @@ npx get-shit-done-cc@latest
56
47
 
57
48
  ---
58
49
 
50
+ > [!IMPORTANT]
51
+ > ### Welcome Back to GSD
52
+ >
53
+ > If you're returning to GSD 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 GSD:**
56
+ > 1. Run `/gsd-map-codebase` to scan and index your current codebase state
57
+ > 2. Run `/gsd-new-project` to initialize a fresh GSD 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. GSD just needs its planning context rebuilt. The two commands above handle that.
61
+
62
+ ---
63
+
59
64
  ## Why I Built This
60
65
 
61
66
  I'm a solo developer. I don't write code — Claude Code does.
@@ -84,15 +89,13 @@ People who want to describe what they want and have it built correctly — witho
84
89
 
85
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.
86
91
 
87
- ### v1.32.0 Highlights
92
+ ### v1.34.0 Highlights
88
93
 
89
- - **STATE.md consistency gates** — `state validate` detects drift between STATE.md and filesystem; `state sync` reconstructs from actual project state
90
- - **`--to N` flag** — Stop autonomous execution after a specific phase
91
- - **Research gate** — Blocks planning when RESEARCH.md has unresolved open questions
92
- - **Verifier milestone scope filtering** — Gaps addressed in later phases marked as deferred, not gaps
93
- - **Read-before-edit guard** — Advisory hook prevents infinite retry loops in non-Claude runtimes
94
- - **Context reduction** — Markdown truncation and cache-friendly prompt ordering for lower token usage
95
- - **4 new runtimes** — Trae, Kilo, Augment, and Cline (12 runtimes total)
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
96
99
 
97
100
  ---
98
101
 
@@ -134,21 +137,21 @@ npx get-shit-done-cc@latest
134
137
  npx get-shit-done-cc --claude --global # Install to ~/.claude/
135
138
  npx get-shit-done-cc --claude --local # Install to ./.claude/
136
139
 
137
- # OpenCode (open source, free models)
140
+ # OpenCode
138
141
  npx get-shit-done-cc --opencode --global # Install to ~/.config/opencode/
139
142
 
140
143
  # Gemini CLI
141
144
  npx get-shit-done-cc --gemini --global # Install to ~/.gemini/
142
145
 
143
- # Kilo (OpenCode fork)
146
+ # Kilo
144
147
  npx get-shit-done-cc --kilo --global # Install to ~/.config/kilo/
145
148
  npx get-shit-done-cc --kilo --local # Install to ./.kilo/
146
149
 
147
- # Codex (skills-first)
150
+ # Codex
148
151
  npx get-shit-done-cc --codex --global # Install to ~/.codex/
149
152
  npx get-shit-done-cc --codex --local # Install to ./.codex/
150
153
 
151
- # Copilot (GitHub Copilot CLI)
154
+ # Copilot
152
155
  npx get-shit-done-cc --copilot --global # Install to ~/.github/
153
156
  npx get-shit-done-cc --copilot --local # Install to ./.github/
154
157
 
@@ -156,11 +159,11 @@ npx get-shit-done-cc --copilot --local # Install to ./.github/
156
159
  npx get-shit-done-cc --cursor --global # Install to ~/.cursor/
157
160
  npx get-shit-done-cc --cursor --local # Install to ./.cursor/
158
161
 
159
- # Windsurf (Codeium, VS Code-based)
160
- npx get-shit-done-cc --windsurf --global # Install to ~/.windsurf/
162
+ # Windsurf
163
+ npx get-shit-done-cc --windsurf --global # Install to ~/.codeium/windsurf/
161
164
  npx get-shit-done-cc --windsurf --local # Install to ./.windsurf/
162
165
 
163
- # Antigravity (Google, skills-first, Gemini-based)
166
+ # Antigravity
164
167
  npx get-shit-done-cc --antigravity --global # Install to ~/.gemini/antigravity/
165
168
  npx get-shit-done-cc --antigravity --local # Install to ./.agent/
166
169
 
@@ -168,11 +171,11 @@ npx get-shit-done-cc --antigravity --local # Install to ./.agent/
168
171
  npx get-shit-done-cc --augment --global # Install to ~/.augment/
169
172
  npx get-shit-done-cc --augment --local # Install to ./.augment/
170
173
 
171
- # Trae (ByteDance, skills-first)
174
+ # Trae
172
175
  npx get-shit-done-cc --trae --global # Install to ~/.trae/
173
176
  npx get-shit-done-cc --trae --local # Install to ./.trae/
174
177
 
175
- # Cline (uses .clinerules)
178
+ # Cline
176
179
  npx get-shit-done-cc --cline --global # Install to ~/.cline/
177
180
  npx get-shit-done-cc --cline --local # Install to ./.clinerules
178
181
 
package/README.pt-BR.md CHANGED
@@ -151,11 +151,11 @@ npx get-shit-done-cc --antigravity --local
151
151
  npx get-shit-done-cc --augment --global # Install to ~/.augment/
152
152
  npx get-shit-done-cc --augment --local # Install to ./.augment/
153
153
 
154
- # Trae (ByteDance, skills-first)
154
+ # Trae
155
155
  npx get-shit-done-cc --trae --global # Install to ~/.trae/
156
156
  npx get-shit-done-cc --trae --local # Install to ./.trae/
157
157
 
158
- # Cline (usa .clinerules)
158
+ # Cline
159
159
  npx get-shit-done-cc --cline --global # Install to ~/.cline/
160
160
  npx get-shit-done-cc --cline --local # Install to ./.clinerules
161
161
 
package/README.zh-CN.md CHANGED
@@ -123,21 +123,21 @@ npx get-shit-done-cc@latest
123
123
  npx get-shit-done-cc --claude --global # 安装到 ~/.claude/
124
124
  npx get-shit-done-cc --claude --local # 安装到 ./.claude/
125
125
 
126
- # OpenCode(开源,可用免费模型)
126
+ # OpenCode
127
127
  npx get-shit-done-cc --opencode --global # 安装到 ~/.config/opencode/
128
128
 
129
129
  # Gemini CLI
130
130
  npx get-shit-done-cc --gemini --global # 安装到 ~/.gemini/
131
131
 
132
- # Kilo(OpenCode 分支)
132
+ # Kilo
133
133
  npx get-shit-done-cc --kilo --global # 安装到 ~/.config/kilo/
134
134
  npx get-shit-done-cc --kilo --local # 安装到 ./.kilo/
135
135
 
136
- # Codex(以 skills 为主)
136
+ # Codex
137
137
  npx get-shit-done-cc --codex --global # 安装到 ~/.codex/
138
138
  npx get-shit-done-cc --codex --local # 安装到 ./.codex/
139
139
 
140
- # Copilot(GitHub Copilot CLI)
140
+ # Copilot
141
141
  npx get-shit-done-cc --copilot --global # 安装到 ~/.github/
142
142
  npx get-shit-done-cc --copilot --local # 安装到 ./.github/
143
143
 
@@ -145,7 +145,7 @@ npx get-shit-done-cc --copilot --local # 安装到 ./.github/
145
145
  npx get-shit-done-cc --cursor --global # 安装到 ~/.cursor/
146
146
  npx get-shit-done-cc --cursor --local # 安装到 ./.cursor/
147
147
 
148
- # Antigravity(Google,以 skills 为主,基于 Gemini)
148
+ # Antigravity
149
149
  npx get-shit-done-cc --antigravity --global # 安装到 ~/.gemini/antigravity/
150
150
  npx get-shit-done-cc --antigravity --local # 安装到 ./.agent/
151
151
 
@@ -153,11 +153,11 @@ npx get-shit-done-cc --antigravity --local # 安装到 ./.agent/
153
153
  npx get-shit-done-cc --augment --global # 安装到 ~/.augment/
154
154
  npx get-shit-done-cc --augment --local # 安装到 ./.augment/
155
155
 
156
- # Trae(字节跳动,以 skills 为主)
156
+ # Trae
157
157
  npx get-shit-done-cc --trae --global # 安装到 ~/.trae/
158
158
  npx get-shit-done-cc --trae --local # 安装到 ./.trae/
159
159
 
160
- # Cline(使用 .clinerules)
160
+ # Cline
161
161
  npx get-shit-done-cc --cline --global # 安装到 ~/.cline/
162
162
  npx get-shit-done-cc --cline --local # 安装到 ./.clinerules
163
163