@undeemed/get-shit-done-codex 1.6.12 → 1.20.2

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 (104) hide show
  1. package/README.md +22 -3
  2. package/agents/gsd-codebase-mapper.md +761 -0
  3. package/agents/gsd-debugger.md +1198 -0
  4. package/agents/gsd-executor.md +419 -0
  5. package/agents/gsd-integration-checker.md +423 -0
  6. package/agents/gsd-phase-researcher.md +469 -0
  7. package/agents/gsd-plan-checker.md +622 -0
  8. package/agents/gsd-planner.md +1159 -0
  9. package/agents/gsd-project-researcher.md +618 -0
  10. package/agents/gsd-research-synthesizer.md +236 -0
  11. package/agents/gsd-roadmapper.md +639 -0
  12. package/agents/gsd-verifier.md +541 -0
  13. package/bin/install.js +106 -100
  14. package/commands/gsd/add-phase.md +17 -185
  15. package/commands/gsd/add-todo.md +23 -163
  16. package/commands/gsd/audit-milestone.md +3 -219
  17. package/commands/gsd/check-todos.md +20 -196
  18. package/commands/gsd/cleanup.md +18 -0
  19. package/commands/gsd/debug.md +13 -0
  20. package/commands/gsd/discuss-phase.md +10 -3
  21. package/commands/gsd/execute-phase.md +3 -265
  22. package/commands/gsd/health.md +22 -0
  23. package/commands/gsd/help.md +8 -369
  24. package/commands/gsd/insert-phase.md +9 -203
  25. package/commands/gsd/join-discord.md +18 -0
  26. package/commands/gsd/new-milestone.md +12 -678
  27. package/commands/gsd/new-project.md +8 -862
  28. package/commands/gsd/new-project.md.bak +1041 -0
  29. package/commands/gsd/pause-work.md +17 -105
  30. package/commands/gsd/plan-milestone-gaps.md +3 -247
  31. package/commands/gsd/plan-phase.md +13 -444
  32. package/commands/gsd/progress.md +5 -337
  33. package/commands/gsd/quick.md +40 -0
  34. package/commands/gsd/reapply-patches.md +110 -0
  35. package/commands/gsd/remove-phase.md +9 -315
  36. package/commands/gsd/research-phase.md +26 -19
  37. package/commands/gsd/set-profile.md +34 -0
  38. package/commands/gsd/settings.md +36 -0
  39. package/commands/gsd/update.md +25 -160
  40. package/commands/gsd/verify-work.md +3 -183
  41. package/get-shit-done/bin/gsd-tools.cjs +5243 -0
  42. package/get-shit-done/bin/gsd-tools.test.cjs +2273 -0
  43. package/get-shit-done/references/checkpoints.md +254 -267
  44. package/get-shit-done/references/decimal-phase-calculation.md +65 -0
  45. package/get-shit-done/references/git-integration.md +3 -9
  46. package/get-shit-done/references/git-planning-commit.md +38 -0
  47. package/get-shit-done/references/model-profile-resolution.md +34 -0
  48. package/get-shit-done/references/model-profiles.md +92 -0
  49. package/get-shit-done/references/phase-argument-parsing.md +61 -0
  50. package/get-shit-done/references/planning-config.md +196 -0
  51. package/get-shit-done/references/questioning.md +4 -0
  52. package/get-shit-done/references/verification-patterns.md +17 -0
  53. package/get-shit-done/templates/UAT.md +1 -1
  54. package/get-shit-done/templates/codebase/structure.md +3 -3
  55. package/get-shit-done/templates/config.json +10 -0
  56. package/get-shit-done/templates/context.md +2 -10
  57. package/get-shit-done/templates/phase-prompt.md +18 -27
  58. package/get-shit-done/templates/planner-subagent-prompt.md +4 -4
  59. package/get-shit-done/templates/research-project/ARCHITECTURE.md +1 -1
  60. package/get-shit-done/templates/research.md +25 -2
  61. package/get-shit-done/templates/state.md +0 -30
  62. package/get-shit-done/templates/summary-complex.md +59 -0
  63. package/get-shit-done/templates/summary-minimal.md +41 -0
  64. package/get-shit-done/templates/summary-standard.md +48 -0
  65. package/get-shit-done/templates/summary.md +5 -28
  66. package/get-shit-done/templates/user-setup.md +1 -13
  67. package/get-shit-done/templates/verification-report.md +1 -1
  68. package/get-shit-done/workflows/add-phase.md +111 -0
  69. package/get-shit-done/workflows/add-todo.md +157 -0
  70. package/get-shit-done/workflows/audit-milestone.md +242 -0
  71. package/get-shit-done/workflows/check-todos.md +176 -0
  72. package/get-shit-done/workflows/cleanup.md +152 -0
  73. package/get-shit-done/workflows/complete-milestone.md +225 -301
  74. package/get-shit-done/workflows/diagnose-issues.md +3 -17
  75. package/get-shit-done/workflows/discovery-phase.md +6 -10
  76. package/get-shit-done/workflows/discuss-phase.md +99 -36
  77. package/get-shit-done/workflows/execute-phase.md +205 -349
  78. package/get-shit-done/workflows/execute-plan.md +179 -1569
  79. package/get-shit-done/workflows/health.md +156 -0
  80. package/get-shit-done/workflows/help.md +486 -0
  81. package/get-shit-done/workflows/insert-phase.md +129 -0
  82. package/get-shit-done/workflows/list-phase-assumptions.md +2 -2
  83. package/get-shit-done/workflows/map-codebase.md +55 -17
  84. package/get-shit-done/workflows/new-milestone.md +373 -0
  85. package/get-shit-done/workflows/new-project.md +1113 -0
  86. package/get-shit-done/workflows/pause-work.md +122 -0
  87. package/get-shit-done/workflows/plan-milestone-gaps.md +256 -0
  88. package/get-shit-done/workflows/plan-phase.md +448 -0
  89. package/get-shit-done/workflows/progress.md +393 -0
  90. package/get-shit-done/workflows/quick.md +444 -0
  91. package/get-shit-done/workflows/remove-phase.md +154 -0
  92. package/get-shit-done/workflows/research-phase.md +74 -0
  93. package/get-shit-done/workflows/resume-project.md +18 -23
  94. package/get-shit-done/workflows/set-profile.md +80 -0
  95. package/get-shit-done/workflows/settings.md +200 -0
  96. package/get-shit-done/workflows/transition.md +78 -103
  97. package/get-shit-done/workflows/update.md +214 -0
  98. package/get-shit-done/workflows/verify-phase.md +107 -494
  99. package/get-shit-done/workflows/verify-work.md +18 -11
  100. package/hooks/dist/gsd-check-update.js +66 -0
  101. package/hooks/dist/gsd-statusline.js +91 -0
  102. package/package.json +19 -3
  103. package/scripts/build-hooks.js +42 -0
  104. package/commands/gsd/whats-new.md +0 -124
@@ -11,13 +11,12 @@ allowed-tools:
11
11
  - Write
12
12
  - Task
13
13
  ---
14
-
15
14
  <objective>
16
15
  Validate built features through conversational testing with persistent state.
17
16
 
18
17
  Purpose: Confirm what Claude built actually works from user's perspective. One test at a time, plain text responses, no interrogation. When issues are found, automatically diagnose, plan fixes, and prepare for execution.
19
18
 
20
- Output: {phase}-UAT.md tracking all test results. If issues found: diagnosed gaps, verified fix plans ready for /gsd:execute-phase
19
+ Output: {phase_num}-UAT.md tracking all test results. If issues found: diagnosed gaps, verified fix plans ready for /gsd:execute-phase
21
20
  </objective>
22
21
 
23
22
  <execution_context>
@@ -35,185 +34,6 @@ Phase: $ARGUMENTS (optional)
35
34
  </context>
36
35
 
37
36
  <process>
38
- 1. Check for active UAT sessions (resume or start new)
39
- 2. Find SUMMARY.md files for the phase
40
- 3. Extract testable deliverables (user-observable outcomes)
41
- 4. Create {phase}-UAT.md with test list
42
- 5. Present tests one at a time:
43
- - Show expected behavior
44
- - Wait for plain text response
45
- - "yes/y/next" = pass, anything else = issue (severity inferred)
46
- 6. Update UAT.md after each response
47
- 7. On completion: commit, present summary
48
- 8. If issues found:
49
- - Spawn parallel debug agents to diagnose root causes
50
- - Spawn gsd-planner in --gaps mode to create fix plans
51
- - Spawn gsd-plan-checker to verify fix plans
52
- - Iterate planner ↔ checker until plans pass (max 3)
53
- - Present ready status with `/clear` then `/gsd:execute-phase`
37
+ Execute the verify-work workflow from @~/.claude/get-shit-done/workflows/verify-work.md end-to-end.
38
+ Preserve all workflow gates (session management, test presentation, diagnosis, fix planning, routing).
54
39
  </process>
55
-
56
- <anti_patterns>
57
- - Don't use AskUserQuestion for test responses — plain text conversation
58
- - Don't ask severity — infer from description
59
- - Don't present full checklist upfront — one test at a time
60
- - Don't run automated tests — this is manual user validation
61
- - Don't fix issues during testing — log as gaps, diagnose after all tests complete
62
- </anti_patterns>
63
-
64
- <offer_next>
65
- Output this markdown directly (not as a code block). Route based on UAT results:
66
-
67
- | Status | Route |
68
- |--------|-------|
69
- | All tests pass + more phases | Route A (next phase) |
70
- | All tests pass + last phase | Route B (milestone complete) |
71
- | Issues found + fix plans ready | Route C (execute fixes) |
72
- | Issues found + planning blocked | Route D (manual intervention) |
73
-
74
- ---
75
-
76
- **Route A: All tests pass, more phases remain**
77
-
78
- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
79
- GSD-CODEX ► PHASE {Z} VERIFIED ✓
80
- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
81
-
82
- **Phase {Z}: {Name}**
83
-
84
- {N}/{N} tests passed
85
- UAT complete ✓
86
-
87
- ───────────────────────────────────────────────────────────────
88
-
89
- ## ▶ Next Up
90
-
91
- **Phase {Z+1}: {Name}** — {Goal from ROADMAP.md}
92
-
93
- /gsd:discuss-phase {Z+1} — gather context and clarify approach
94
-
95
- <sub>/clear first → fresh context window</sub>
96
-
97
- ───────────────────────────────────────────────────────────────
98
-
99
- **Also available:**
100
- - /gsd:plan-phase {Z+1} — skip discussion, plan directly
101
- - /gsd:execute-phase {Z+1} — skip to execution (if already planned)
102
-
103
- ───────────────────────────────────────────────────────────────
104
-
105
- ---
106
-
107
- **Route B: All tests pass, milestone complete**
108
-
109
- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
110
- GSD-CODEX ► PHASE {Z} VERIFIED ✓
111
- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
112
-
113
- **Phase {Z}: {Name}**
114
-
115
- {N}/{N} tests passed
116
- Final phase verified ✓
117
-
118
- ───────────────────────────────────────────────────────────────
119
-
120
- ## ▶ Next Up
121
-
122
- **Audit milestone** — verify requirements, cross-phase integration, E2E flows
123
-
124
- /gsd:audit-milestone
125
-
126
- <sub>/clear first → fresh context window</sub>
127
-
128
- ───────────────────────────────────────────────────────────────
129
-
130
- **Also available:**
131
- - /gsd:complete-milestone — skip audit, archive directly
132
-
133
- ───────────────────────────────────────────────────────────────
134
-
135
- ---
136
-
137
- **Route C: Issues found, fix plans ready**
138
-
139
- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
140
- GSD-CODEX ► PHASE {Z} ISSUES FOUND ⚠
141
- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
142
-
143
- **Phase {Z}: {Name}**
144
-
145
- {N}/{M} tests passed
146
- {X} issues diagnosed
147
- Fix plans verified ✓
148
-
149
- ### Issues Found
150
-
151
- {List issues with severity from UAT.md}
152
-
153
- ───────────────────────────────────────────────────────────────
154
-
155
- ## ▶ Next Up
156
-
157
- **Execute fix plans** — run diagnosed fixes
158
-
159
- /gsd:execute-phase {Z} --gaps-only
160
-
161
- <sub>/clear first → fresh context window</sub>
162
-
163
- ───────────────────────────────────────────────────────────────
164
-
165
- **Also available:**
166
- - cat .planning/phases/{phase_dir}/*-PLAN.md — review fix plans
167
- - /gsd:plan-phase {Z} --gaps — regenerate fix plans
168
-
169
- ───────────────────────────────────────────────────────────────
170
-
171
- ---
172
-
173
- **Route D: Issues found, planning blocked**
174
-
175
- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
176
- GSD-CODEX ► PHASE {Z} BLOCKED ✗
177
- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
178
-
179
- **Phase {Z}: {Name}**
180
-
181
- {N}/{M} tests passed
182
- Fix planning blocked after {X} iterations
183
-
184
- ### Unresolved Issues
185
-
186
- {List blocking issues from planner/checker output}
187
-
188
- ───────────────────────────────────────────────────────────────
189
-
190
- ## ▶ Next Up
191
-
192
- **Manual intervention required**
193
-
194
- Review the issues above and either:
195
- 1. Provide guidance for fix planning
196
- 2. Manually address blockers
197
- 3. Accept current state and continue
198
-
199
- ───────────────────────────────────────────────────────────────
200
-
201
- **Options:**
202
- - /gsd:plan-phase {Z} --gaps — retry fix planning with guidance
203
- - /gsd:discuss-phase {Z} — gather more context before replanning
204
-
205
- ───────────────────────────────────────────────────────────────
206
- </offer_next>
207
-
208
- <success_criteria>
209
- - [ ] UAT.md created with tests from SUMMARY.md
210
- - [ ] Tests presented one at a time with expected behavior
211
- - [ ] Plain text responses (no structured forms)
212
- - [ ] Severity inferred, never asked
213
- - [ ] Batched writes: on issue, every 5 passes, or completion
214
- - [ ] Committed on completion
215
- - [ ] If issues: parallel debug agents diagnose root causes
216
- - [ ] If issues: gsd-planner creates fix plans from diagnosed gaps
217
- - [ ] If issues: gsd-plan-checker verifies fix plans (max 3 iterations)
218
- - [ ] Ready for `/gsd:execute-phase` when complete
219
- </success_criteria>