get-shit-done-cc 1.5.1 → 1.5.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.
- package/README.md +14 -0
- package/commands/gsd/execute-phase.md +11 -1
- package/commands/gsd/execute-plan.md +15 -1
- package/commands/gsd/help.md +14 -0
- package/commands/gsd/new-project.md +39 -40
- package/commands/gsd/plan-phase.md +14 -0
- package/get-shit-done/templates/roadmap.md +4 -0
- package/get-shit-done/workflows/define-requirements.md +33 -12
- package/get-shit-done/workflows/execute-plan.md +2 -2
- package/get-shit-done/workflows/research-project.md +4 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -77,6 +77,20 @@ npx get-shit-done-cc
|
|
|
77
77
|
|
|
78
78
|
That's it. Verify with `/gsd:help` inside your Claude Code interface.
|
|
79
79
|
|
|
80
|
+
### Staying Updated
|
|
81
|
+
|
|
82
|
+
GSD evolves fast. Check for updates periodically:
|
|
83
|
+
|
|
84
|
+
```
|
|
85
|
+
/gsd:whats-new
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
Update with:
|
|
89
|
+
|
|
90
|
+
```bash
|
|
91
|
+
npx get-shit-done-cc@latest
|
|
92
|
+
```
|
|
93
|
+
|
|
80
94
|
<details>
|
|
81
95
|
<summary><strong>Non-interactive Install (Docker, CI, Scripts)</strong></summary>
|
|
82
96
|
|
|
@@ -64,7 +64,16 @@ Phase: $ARGUMENTS
|
|
|
64
64
|
- Report phase completion status
|
|
65
65
|
- Update ROADMAP.md
|
|
66
66
|
|
|
67
|
-
6. **
|
|
67
|
+
6. **Update requirements**
|
|
68
|
+
Phase is complete, so mark its requirements as Complete:
|
|
69
|
+
- Read ROADMAP.md, find this phase's `Requirements:` line (e.g., "AUTH-01, AUTH-02")
|
|
70
|
+
- Read REQUIREMENTS.md traceability table
|
|
71
|
+
- For each REQ-ID in this phase: change Status from "Pending" to "Complete"
|
|
72
|
+
- Write updated REQUIREMENTS.md
|
|
73
|
+
- Stage for commit: `git add .planning/REQUIREMENTS.md`
|
|
74
|
+
- Skip if: REQUIREMENTS.md doesn't exist, or phase has no Requirements line
|
|
75
|
+
|
|
76
|
+
7. **Offer next steps**
|
|
68
77
|
- Route to next action (see `<offer_next>`)
|
|
69
78
|
</process>
|
|
70
79
|
|
|
@@ -207,5 +216,6 @@ After all tasks complete:
|
|
|
207
216
|
- [ ] Each plan has SUMMARY.md
|
|
208
217
|
- [ ] STATE.md reflects phase completion
|
|
209
218
|
- [ ] ROADMAP.md updated
|
|
219
|
+
- [ ] REQUIREMENTS.md updated (phase requirements marked Complete)
|
|
210
220
|
- [ ] User informed of next steps
|
|
211
221
|
</success_criteria>
|
|
@@ -108,7 +108,20 @@ ls -1 .planning/phases/[phase-dir]/*-SUMMARY.md 2>/dev/null | wc -l
|
|
|
108
108
|
| Condition | Action |
|
|
109
109
|
|-----------|--------|
|
|
110
110
|
| summaries < plans | More plans remain → Route A |
|
|
111
|
-
| summaries = plans | Phase complete →
|
|
111
|
+
| summaries = plans | Phase complete → Update requirements, then Step 3 |
|
|
112
|
+
|
|
113
|
+
**Step 2.5: Update requirements (only when phase complete)**
|
|
114
|
+
|
|
115
|
+
When summaries = plans, update REQUIREMENTS.md before presenting completion:
|
|
116
|
+
|
|
117
|
+
1. Get phase number from completed plan path
|
|
118
|
+
2. Read ROADMAP.md, find the phase's `Requirements:` line (e.g., "AUTH-01, AUTH-02")
|
|
119
|
+
3. Read REQUIREMENTS.md traceability table
|
|
120
|
+
4. For each REQ-ID in this phase: change Status from "Pending" to "Complete"
|
|
121
|
+
5. Write updated REQUIREMENTS.md
|
|
122
|
+
6. Stage for commit: `git add .planning/REQUIREMENTS.md`
|
|
123
|
+
|
|
124
|
+
**Skip if:** REQUIREMENTS.md doesn't exist, or phase has no Requirements line in ROADMAP.md.
|
|
112
125
|
|
|
113
126
|
---
|
|
114
127
|
|
|
@@ -322,5 +335,6 @@ Templates for checkpoint handling:
|
|
|
322
335
|
<success_criteria>
|
|
323
336
|
- [ ] Plan executed (SUMMARY.md created)
|
|
324
337
|
- [ ] All checkpoints handled
|
|
338
|
+
- [ ] If phase complete: REQUIREMENTS.md updated (phase requirements marked Complete)
|
|
325
339
|
- [ ] User informed of completion and next steps
|
|
326
340
|
</success_criteria>
|
package/commands/gsd/help.md
CHANGED
|
@@ -26,6 +26,20 @@ Output ONLY the reference content below. Do NOT add:
|
|
|
26
26
|
3. `/gsd:plan-phase <number>` - Create detailed plan for first phase
|
|
27
27
|
4. `/gsd:execute-plan <path>` - Execute the plan
|
|
28
28
|
|
|
29
|
+
## Staying Updated
|
|
30
|
+
|
|
31
|
+
GSD evolves fast. Check for updates periodically:
|
|
32
|
+
|
|
33
|
+
```
|
|
34
|
+
/gsd:whats-new
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
Shows what changed since your installed version. Update with:
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
npx get-shit-done-cc@latest
|
|
41
|
+
```
|
|
42
|
+
|
|
29
43
|
## Core Workflow
|
|
30
44
|
|
|
31
45
|
```
|
|
@@ -215,50 +215,49 @@ Do not compress. Capture everything gathered.
|
|
|
215
215
|
|
|
216
216
|
</step>
|
|
217
217
|
|
|
218
|
-
<step name="
|
|
218
|
+
<step name="workflow_preferences">
|
|
219
219
|
|
|
220
|
-
Ask workflow
|
|
220
|
+
Ask all workflow preferences in a single AskUserQuestion call (3 questions):
|
|
221
221
|
|
|
222
|
-
Use AskUserQuestion:
|
|
223
|
-
|
|
224
|
-
- header: "Mode"
|
|
225
|
-
- question: "How do you want to work?"
|
|
226
|
-
- options:
|
|
227
|
-
- "YOLO" — Auto-approve, just execute (Recommended)
|
|
228
|
-
- "Interactive" — Confirm at each step
|
|
229
|
-
|
|
230
|
-
</step>
|
|
231
|
-
|
|
232
|
-
<step name="depth">
|
|
233
|
-
|
|
234
|
-
Ask planning depth preference:
|
|
235
|
-
|
|
236
|
-
Use AskUserQuestion:
|
|
237
|
-
|
|
238
|
-
- header: "Depth"
|
|
239
|
-
- question: "How thorough should planning be?"
|
|
240
|
-
- options:
|
|
241
|
-
- "Quick" — Ship fast, minimal phases/plans (3-5 phases, 1-3 plans each)
|
|
242
|
-
- "Standard" — Balanced scope and speed (5-8 phases, 3-5 plans each)
|
|
243
|
-
- "Comprehensive" — Thorough coverage, more phases/plans (8-12 phases, 5-10 plans each)
|
|
222
|
+
Use AskUserQuestion with questions array:
|
|
244
223
|
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
224
|
+
```
|
|
225
|
+
questions: [
|
|
226
|
+
{
|
|
227
|
+
header: "Mode",
|
|
228
|
+
question: "How do you want to work?",
|
|
229
|
+
multiSelect: false,
|
|
230
|
+
options: [
|
|
231
|
+
{ label: "YOLO (Recommended)", description: "Auto-approve, just execute" },
|
|
232
|
+
{ label: "Interactive", description: "Confirm at each step" }
|
|
233
|
+
]
|
|
234
|
+
},
|
|
235
|
+
{
|
|
236
|
+
header: "Depth",
|
|
237
|
+
question: "How thorough should planning be?",
|
|
238
|
+
multiSelect: false,
|
|
239
|
+
options: [
|
|
240
|
+
{ label: "Quick", description: "Ship fast (3-5 phases, 1-3 plans each)" },
|
|
241
|
+
{ label: "Standard", description: "Balanced scope and speed (5-8 phases, 3-5 plans each)" },
|
|
242
|
+
{ label: "Comprehensive", description: "Thorough coverage (8-12 phases, 5-10 plans each)" }
|
|
243
|
+
]
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
header: "Execution",
|
|
247
|
+
question: "Run plans in parallel?",
|
|
248
|
+
multiSelect: false,
|
|
249
|
+
options: [
|
|
250
|
+
{ label: "Parallel (Recommended)", description: "Independent plans run simultaneously" },
|
|
251
|
+
{ label: "Sequential", description: "One plan at a time" }
|
|
252
|
+
]
|
|
253
|
+
}
|
|
254
|
+
]
|
|
255
|
+
```
|
|
260
256
|
|
|
261
|
-
**
|
|
257
|
+
**Notes:**
|
|
258
|
+
- Depth controls compression tolerance, not artificial inflation
|
|
259
|
+
- Parallelization spawns multiple agents for independent plans
|
|
260
|
+
- All settings can be changed later in config.json
|
|
262
261
|
|
|
263
262
|
</step>
|
|
264
263
|
|
|
@@ -39,6 +39,20 @@ Phase number: $ARGUMENTS (optional - auto-detects next unplanned phase if not pr
|
|
|
39
39
|
**Load roadmap:**
|
|
40
40
|
@.planning/ROADMAP.md
|
|
41
41
|
|
|
42
|
+
**Load requirements:**
|
|
43
|
+
@.planning/REQUIREMENTS.md
|
|
44
|
+
|
|
45
|
+
After loading, extract the requirements for the current phase:
|
|
46
|
+
1. Find the phase in ROADMAP.md, get its `Requirements:` list (e.g., "PROF-01, PROF-02, PROF-03")
|
|
47
|
+
2. Look up each REQ-ID in REQUIREMENTS.md to get the full description
|
|
48
|
+
3. Present the requirements this phase must satisfy:
|
|
49
|
+
```
|
|
50
|
+
Phase [N] Requirements:
|
|
51
|
+
- PROF-01: User can create profile with display name
|
|
52
|
+
- PROF-02: User can upload avatar image
|
|
53
|
+
- PROF-03: User can write bio (max 500 chars)
|
|
54
|
+
```
|
|
55
|
+
|
|
42
56
|
**Load phase context if exists (created by /gsd:discuss-phase):**
|
|
43
57
|
Check for and read `.planning/phases/XX-name/{phase}-CONTEXT.md` - contains research findings, clarifications, and decisions from phase discussion.
|
|
44
58
|
|
|
@@ -38,6 +38,7 @@ Decimal phases appear between their surrounding integers in numeric order.
|
|
|
38
38
|
### Phase 1: [Name]
|
|
39
39
|
**Goal**: [What this phase delivers]
|
|
40
40
|
**Depends on**: Nothing (first phase)
|
|
41
|
+
**Requirements**: [REQ-01, REQ-02, REQ-03]
|
|
41
42
|
**Research**: Unlikely (established patterns)
|
|
42
43
|
**Plans**: [Number of plans, e.g., "3 plans" or "TBD"]
|
|
43
44
|
|
|
@@ -49,6 +50,7 @@ Plans:
|
|
|
49
50
|
### Phase 2: [Name]
|
|
50
51
|
**Goal**: [What this phase delivers]
|
|
51
52
|
**Depends on**: Phase 1
|
|
53
|
+
**Requirements**: [REQ-04, REQ-05]
|
|
52
54
|
**Research**: Likely (new integration)
|
|
53
55
|
**Research topics**: [What needs investigating]
|
|
54
56
|
**Plans**: [Number of plans]
|
|
@@ -68,6 +70,7 @@ Plans:
|
|
|
68
70
|
### Phase 3: [Name]
|
|
69
71
|
**Goal**: [What this phase delivers]
|
|
70
72
|
**Depends on**: Phase 2
|
|
73
|
+
**Requirements**: [REQ-06, REQ-07, REQ-08]
|
|
71
74
|
**Research**: Likely (external API)
|
|
72
75
|
**Research topics**: [What needs investigating]
|
|
73
76
|
**Plans**: [Number of plans]
|
|
@@ -79,6 +82,7 @@ Plans:
|
|
|
79
82
|
### Phase 4: [Name]
|
|
80
83
|
**Goal**: [What this phase delivers]
|
|
81
84
|
**Depends on**: Phase 3
|
|
85
|
+
**Requirements**: [REQ-09, REQ-10]
|
|
82
86
|
**Research**: Unlikely (internal patterns)
|
|
83
87
|
**Plans**: [Number of plans]
|
|
84
88
|
|
|
@@ -159,32 +159,53 @@ IDs enable traceability from roadmap phases.
|
|
|
159
159
|
</step>
|
|
160
160
|
|
|
161
161
|
<step name="summarize">
|
|
162
|
-
Present
|
|
162
|
+
Present the FULL requirements list before committing — not counts, the actual requirements:
|
|
163
163
|
|
|
164
164
|
```
|
|
165
|
-
## Requirements
|
|
165
|
+
## v1 Requirements
|
|
166
166
|
|
|
167
|
-
|
|
168
|
-
-
|
|
169
|
-
- [
|
|
170
|
-
- [
|
|
171
|
-
Total: [X] requirements
|
|
167
|
+
### [Category 1]
|
|
168
|
+
- [ ] **[REQ-ID]**: [Full requirement description]
|
|
169
|
+
- [ ] **[REQ-ID]**: [Full requirement description]
|
|
170
|
+
- [ ] **[REQ-ID]**: [Full requirement description]
|
|
172
171
|
|
|
173
|
-
|
|
174
|
-
- [
|
|
175
|
-
|
|
172
|
+
### [Category 2]
|
|
173
|
+
- [ ] **[REQ-ID]**: [Full requirement description]
|
|
174
|
+
- [ ] **[REQ-ID]**: [Full requirement description]
|
|
175
|
+
|
|
176
|
+
[... list ALL v1 requirements ...]
|
|
177
|
+
|
|
178
|
+
---
|
|
179
|
+
|
|
180
|
+
## v2 (Deferred)
|
|
181
|
+
|
|
182
|
+
### [Category]
|
|
183
|
+
- [REQ-ID]: [Requirement description]
|
|
184
|
+
- [REQ-ID]: [Requirement description]
|
|
185
|
+
|
|
186
|
+
[... list ALL v2 requirements ...]
|
|
187
|
+
|
|
188
|
+
---
|
|
189
|
+
|
|
190
|
+
## Out of Scope
|
|
176
191
|
|
|
177
|
-
**Out of Scope:**
|
|
178
192
|
- [Feature]: [reason]
|
|
179
193
|
- [Feature]: [reason]
|
|
180
194
|
|
|
181
|
-
|
|
195
|
+
[... list ALL exclusions ...]
|
|
196
|
+
|
|
197
|
+
---
|
|
198
|
+
|
|
199
|
+
**Core Value:** [from PROJECT.md]
|
|
200
|
+
**Alignment:** ✓ Covered / ⚠️ Gaps noted
|
|
182
201
|
|
|
183
202
|
---
|
|
184
203
|
|
|
185
204
|
Does this capture what you're building? (yes / adjust)
|
|
186
205
|
```
|
|
187
206
|
|
|
207
|
+
**Critical:** Show every single requirement. The user must see exactly what they're committing to. Counts are useless — list the actual items.
|
|
208
|
+
|
|
188
209
|
If "adjust": Return to scope_categories or identify_gaps as appropriate.
|
|
189
210
|
</step>
|
|
190
211
|
|
|
@@ -1491,7 +1491,7 @@ ROADMAP_FILE=".planning/ROADMAP.md"
|
|
|
1491
1491
|
|
|
1492
1492
|
- Mark phase complete: status → "Complete"
|
|
1493
1493
|
- Add completion date
|
|
1494
|
-
|
|
1494
|
+
</step>
|
|
1495
1495
|
|
|
1496
1496
|
<step name="git_commit_metadata">
|
|
1497
1497
|
Commit execution metadata (SUMMARY + STATE + ROADMAP):
|
|
@@ -1506,7 +1506,7 @@ git add .planning/phases/XX-name/{phase}-{plan}-SUMMARY.md
|
|
|
1506
1506
|
git add .planning/STATE.md
|
|
1507
1507
|
```
|
|
1508
1508
|
|
|
1509
|
-
**2. Stage roadmap
|
|
1509
|
+
**2. Stage roadmap:**
|
|
1510
1510
|
|
|
1511
1511
|
```bash
|
|
1512
1512
|
git add .planning/ROADMAP.md
|
|
@@ -350,12 +350,14 @@ Research complete:
|
|
|
350
350
|
|
|
351
351
|
## ▶ Next Up
|
|
352
352
|
|
|
353
|
-
**
|
|
353
|
+
**Define requirements** — scope your v1 from research findings
|
|
354
354
|
|
|
355
|
-
`/gsd:
|
|
355
|
+
`/gsd:define-requirements`
|
|
356
356
|
|
|
357
357
|
<sub>`/clear` first → fresh context window</sub>
|
|
358
358
|
|
|
359
|
+
**Flow:** research-project → **define-requirements** → create-roadmap
|
|
360
|
+
|
|
359
361
|
---
|
|
360
362
|
```
|
|
361
363
|
</step>
|
package/package.json
CHANGED