get-shit-done-cc 1.2.2 → 1.2.4

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.
@@ -3,9 +3,9 @@ description: Gather context for next milestone through adaptive questioning
3
3
  ---
4
4
 
5
5
  <objective>
6
- Use adaptive questioning to gather comprehensive milestone context before creating a new milestone.
6
+ Help you figure out what to build in the next milestone through collaborative thinking.
7
7
 
8
- Purpose: After completing a milestone, discuss the scope and focus of the next milestone before diving into phase creation. Builds understanding of goals, constraints, priorities, and lessons learned.
8
+ Purpose: After completing a milestone, explore what features you want to add, improve, or fix. Features first scope and phases derive from what you want to build.
9
9
  Output: Context gathered, then routes to /gsd:new-milestone
10
10
  </objective>
11
11
 
@@ -28,10 +28,9 @@ Output: Context gathered, then routes to /gsd:new-milestone
28
28
  1. Verify previous milestone complete (or acknowledge active milestone)
29
29
  2. Present context from previous milestone (accomplishments, phase count)
30
30
  3. Follow discuss-milestone.md workflow:
31
- - Ask about milestone theme/focus
32
- - Ask about scope (estimated phases)
33
- - Ask about constraints and priorities
34
- - Ask about lessons from previous milestone
31
+ - Ask: "What do you want to add, improve, or fix?"
32
+ - Dig into features they mention
33
+ - Help them articulate what matters most
35
34
  - Present decision gate (ready / ask more / let me add context)
36
35
  4. Hand off to /gsd:new-milestone with gathered context
37
36
  </process>
@@ -67,11 +67,11 @@ Usage: `/gsd:create-roadmap`
67
67
  ### Phase Planning
68
68
 
69
69
  **`/gsd:discuss-phase <number>`**
70
- Gather phase context through adaptive questioning before planning.
70
+ Help articulate your vision for a phase before planning.
71
71
 
72
- - Builds understanding of objectives, constraints, risks
73
- - Creates CONTEXT.md in phase directory
74
- - Use before planning unfamiliar or complex phases
72
+ - Captures how you imagine this phase working
73
+ - Creates CONTEXT.md with your vision, essentials, and boundaries
74
+ - Use when you have ideas about how something should look/feel
75
75
 
76
76
  Usage: `/gsd:discuss-phase 2`
77
77
 
@@ -86,10 +86,10 @@ Comprehensive ecosystem research for niche/complex domains.
86
86
  Usage: `/gsd:research-phase 3`
87
87
 
88
88
  **`/gsd:list-phase-assumptions <number>`**
89
- Surface Claude's assumptions about a phase before planning.
89
+ See what Claude is planning to do before it starts.
90
90
 
91
- - Shows what Claude thinks about technical approach, scope, risks
92
- - Enables early course correction before planning begins
91
+ - Shows Claude's intended approach for a phase
92
+ - Lets you course-correct if Claude misunderstood your vision
93
93
  - No files created - conversational output only
94
94
 
95
95
  Usage: `/gsd:list-phase-assumptions 3`
@@ -141,10 +141,10 @@ Result: Creates Phase 7.1
141
141
  ### Milestone Management
142
142
 
143
143
  **`/gsd:discuss-milestone`**
144
- Gather context for next milestone through adaptive questioning.
144
+ Figure out what you want to build in the next milestone.
145
145
 
146
- - Reviews previous milestone accomplishments
147
- - Asks about scope, constraints, priorities for next milestone
146
+ - Reviews what shipped in previous milestone
147
+ - Helps you identify features to add, improve, or fix
148
148
  - Routes to /gsd:new-milestone when ready
149
149
 
150
150
  Usage: `/gsd:discuss-milestone`
@@ -66,20 +66,13 @@ Appears to include:
66
66
  Total: 4 phases, 8 plans, all complete
67
67
  ```
68
68
 
69
- **Check workflow config for gate behavior:**
70
-
69
+ <config-check>
71
70
  ```bash
72
71
  cat .planning/config.json 2>/dev/null
73
72
  ```
73
+ </config-check>
74
74
 
75
- Parse the config:
76
-
77
- - If `mode: "yolo"` → auto-approve
78
- - If `mode: "interactive"` → prompt user
79
- - If `mode: "custom"` → check `gates.confirm_milestone_scope` (if exists)
80
-
81
- **If auto-approved:**
82
-
75
+ <if mode="yolo">
83
76
  ```
84
77
  ⚡ Auto-approved: Milestone scope verification
85
78
 
@@ -88,8 +81,10 @@ Parse the config:
88
81
  Proceeding to stats gathering...
89
82
  ```
90
83
 
91
- **If prompting (interactive mode):**
84
+ Proceed directly to gather_stats step.
85
+ </if>
92
86
 
87
+ <if mode="interactive" OR="custom with gates.confirm_milestone_scope true">
93
88
  ```
94
89
  Ready to mark this milestone as shipped?
95
90
  (yes / wait / adjust scope)
@@ -99,6 +94,7 @@ Wait for confirmation.
99
94
 
100
95
  If "adjust scope": Ask which phases should be included.
101
96
  If "wait": Stop, user will return when ready.
97
+ </if>
102
98
  </step>
103
99
 
104
100
  <step name="gather_stats">
@@ -147,20 +147,13 @@ Does this look right? (yes / adjust)
147
147
  </step>
148
148
 
149
149
  <step name="confirm_phases">
150
- **Check workflow config for gate behavior:**
151
-
150
+ <config-check>
152
151
  ```bash
153
152
  cat .planning/config.json 2>/dev/null
154
153
  ```
154
+ </config-check>
155
155
 
156
- Parse the config:
157
-
158
- - If `mode: "yolo"` → auto-approve
159
- - If `mode: "interactive"` or missing → prompt user
160
- - If `mode: "custom"` → check `gates.confirm_phases`
161
-
162
- **If auto-approved:**
163
-
156
+ <if mode="yolo">
164
157
  ```
165
158
  ⚡ Auto-approved: Milestone phases ([N] phases)
166
159
 
@@ -171,8 +164,10 @@ Parse the config:
171
164
  Proceeding to create milestone structure...
172
165
  ```
173
166
 
174
- **If prompting:**
167
+ Proceed directly to update_roadmap step.
168
+ </if>
175
169
 
170
+ <if mode="interactive" OR="missing OR custom with gates.confirm_phases true">
176
171
  Present the phase breakdown:
177
172
 
178
173
  ```
@@ -264,22 +264,14 @@ Does this look right? (yes / adjust)
264
264
  </step>
265
265
 
266
266
  <step name="confirm_phases">
267
- **Check workflow config for gate behavior:**
268
-
267
+ <config-check>
269
268
  ```bash
270
269
  cat .planning/config.json 2>/dev/null
271
270
  ```
271
+ Note: Config may not exist yet (project initialization). If missing, default to interactive mode.
272
+ </config-check>
272
273
 
273
- **Note:** Config may not exist yet (this is project initialization). If missing, default to interactive mode.
274
-
275
- Parse the config (if exists):
276
-
277
- - If `mode: "yolo"` → auto-approve
278
- - If `mode: "interactive"` or missing → prompt user
279
- - If `mode: "custom"` → check `gates.confirm_phases`
280
-
281
- **If auto-approved:**
282
-
274
+ <if mode="yolo">
283
275
  ```
284
276
  ⚡ Auto-approved: Phase breakdown ([N] phases)
285
277
 
@@ -290,10 +282,10 @@ Parse the config (if exists):
290
282
  Proceeding to research detection...
291
283
  ```
292
284
 
293
- Proceed directly to detect_research_needs.
294
-
295
- **If prompting:**
285
+ Proceed directly to detect_research_needs step.
286
+ </if>
296
287
 
288
+ <if mode="interactive" OR="missing OR custom with gates.confirm_phases true">
297
289
  Present the phase breakdown inline:
298
290
 
299
291
  "Here's how I'd break this down:
@@ -309,28 +301,17 @@ If "adjust": Ask what to change, revise, present again.
309
301
  </step>
310
302
 
311
303
  <step name="decision_gate">
312
- After phases confirmed (or auto-approved):
313
-
314
- **Check workflow config for gate behavior:**
315
-
316
- Read config from previous step (already parsed, or default to interactive if missing).
317
-
318
- - If `mode: "yolo"` → auto-approve
319
- - If `mode: "interactive"` or missing → prompt user
320
- - If `mode: "custom"` → check `gates.confirm_roadmap`
321
-
322
- **If auto-approved:**
323
-
304
+ <if mode="yolo">
324
305
  ```
325
306
  ⚡ Auto-approved: Create roadmap with [N] phases
326
307
 
327
308
  Proceeding to create .planning/ROADMAP.md...
328
309
  ```
329
310
 
330
- Proceed directly to create_structure.
331
-
332
- **If prompting:**
311
+ Proceed directly to create_structure step.
312
+ </if>
333
313
 
314
+ <if mode="interactive" OR="missing OR custom with gates.confirm_roadmap true">
334
315
  Use AskUserQuestion:
335
316
 
336
317
  - header: "Ready"
@@ -78,20 +78,13 @@ SUMMARY naming follows same pattern:
78
78
 
79
79
  Confirm with user if ambiguous.
80
80
 
81
- **Check workflow config for gate behavior:**
82
-
81
+ <config-check>
83
82
  ```bash
84
83
  cat .planning/config.json 2>/dev/null
85
84
  ```
85
+ </config-check>
86
86
 
87
- Parse the config:
88
-
89
- - If `mode: "yolo"` → auto-approve execution
90
- - If `mode: "interactive"` → prompt user
91
- - If `mode: "custom"` → check `gates.execute_next_plan`
92
-
93
- **If auto-approved:**
94
-
87
+ <if mode="yolo">
95
88
  ```
96
89
  ⚡ Auto-approved: Execute {phase}-{plan}-PLAN.md
97
90
  [Plan X of Y for Phase Z]
@@ -99,10 +92,10 @@ Parse the config:
99
92
  Starting execution...
100
93
  ```
101
94
 
102
- Proceed directly to parse_segments.
103
-
104
- **If prompting:**
95
+ Proceed directly to parse_segments step.
96
+ </if>
105
97
 
98
+ <if mode="interactive" OR="custom with gates.execute_next_plan true">
106
99
  Present:
107
100
 
108
101
  ```
@@ -112,7 +105,8 @@ Found plan to execute: {phase}-{plan}-PLAN.md
112
105
  Proceed with execution?
113
106
  ```
114
107
 
115
- Wait for confirmation.
108
+ Wait for confirmation before proceeding.
109
+ </if>
116
110
  </step>
117
111
 
118
112
  <step name="record_start_time">
@@ -413,7 +407,7 @@ cat .planning/phases/XX-name/{phase}-{plan}-PLAN.md
413
407
  This IS the execution instructions. Follow it exactly.
414
408
 
415
409
  **If plan references CONTEXT.md:**
416
- The CONTEXT.md file provides phase-level objectives, constraints, and success indicators gathered before planning. This context informs implementation decisions throughout execution.
410
+ The CONTEXT.md file provides the user's vision for this phase — how they imagine it working, what's essential, and what's out of scope. Honor this context throughout execution.
417
411
  </step>
418
412
 
419
413
  <step name="previous_phase_check">
@@ -415,17 +415,15 @@ This file contains comprehensive ecosystem research for niche/complex domains. I
415
415
  - `<code_examples>` → reference in task actions when applicable
416
416
 
417
417
  **If {phase}-CONTEXT.md exists:**
418
- This file contains the user's input gathered through pre-planning questions. It captures their intent, preferences, constraints, and decisions BEFORE you plan.
418
+ This file contains the user's vision gathered through pre-planning discussion. It captures how they imagine this phase working, what's essential, and what's out of scope.
419
419
 
420
420
  **You MUST use this context to inform your planning:**
421
421
 
422
- - `<phase_objectives>` → defines what to build (don't guess scope)
423
- - `<constraints>` → technical/timeline limits to respect
424
- - `<risks>` → inform verification criteria and task ordering
425
- - `<success_indicators>` → become plan success criteria
426
- - `<codebase_context>` → patterns to follow, files to reference
427
- - `<decisions_needed>` → resolve during task breakdown or flag as checkpoints
428
- - `<notes>` → user clarifications that override assumptions
422
+ - `<vision>` → how the user imagines this working (honor their intent)
423
+ - `<essential>` → what must be nailed in this phase (prioritize these)
424
+ - `<boundaries>` → what's explicitly out of scope (don't add these)
425
+ - `<specifics>` → particular look/feel/behavior mentioned (incorporate these)
426
+ - `<notes>` → additional context that informs approach
429
427
 
430
428
  **If neither RESEARCH.md nor CONTEXT.md exist:**
431
429
  For niche domains (3D, games, audio, shaders, etc.), suggest `/gsd:research-phase {phase}` first.
@@ -507,14 +505,13 @@ See ~/.claude/get-shit-done/references/scope-estimation.md for complete splittin
507
505
  </step>
508
506
 
509
507
  <step name="confirm_breakdown">
510
- **FIRST: Check if confirmation gate is disabled**
511
-
508
+ <config-check>
512
509
  ```bash
513
510
  cat .planning/config.json 2>/dev/null
514
511
  ```
512
+ </config-check>
515
513
 
516
- **If `mode: "yolo"`** → Show summary below, then SKIP directly to write_phase_prompt step. Do NOT ask questions. Do NOT wait for confirmation.
517
-
514
+ <if mode="yolo">
518
515
  ```
519
516
  ⚡ Auto-approved: Phase [X] breakdown ([N] tasks, [M] plan(s))
520
517
 
@@ -523,10 +520,10 @@ cat .planning/config.json 2>/dev/null
523
520
  Proceeding to plan creation...
524
521
  ```
525
522
 
526
- ---
527
-
528
- **Only if mode is "interactive" OR (mode is "custom" AND gates.confirm_breakdown is true), continue below:**
523
+ Skip directly to write_phase_prompt step.
524
+ </if>
529
525
 
526
+ <if mode="interactive" OR="custom with gates.confirm_breakdown true">
530
527
  Present the breakdown inline and wait for confirmation:
531
528
 
532
529
  **If single plan (2-3 tasks):**
@@ -571,6 +568,7 @@ Wait for confirmation before proceeding.
571
568
 
572
569
  If "adjust": Ask what to change, revise, present again.
573
570
  If "start over": Return to gather_phase_context step.
571
+ </if>
574
572
  </step>
575
573
 
576
574
  <step name="approach_ambiguity">
@@ -589,18 +587,15 @@ Only ask if genuinely ambiguous. Don't ask obvious choices.
589
587
  </step>
590
588
 
591
589
  <step name="decision_gate">
592
- **FIRST: Check mode from config (already parsed in confirm_breakdown)**
593
-
594
- **If `mode: "yolo"`** → Output the message below, then SKIP directly to write_phase_prompt. Do NOT ask questions.
595
-
590
+ <if mode="yolo">
596
591
  ```
597
592
  ⚡ Auto-approved: Create phase prompt for Phase [X]
598
593
  ```
599
594
 
600
- ---
601
-
602
- **Only if mode is "interactive" OR (mode is "custom" AND gates.confirm_plan is true), continue below:**
595
+ Skip directly to write_phase_prompt step.
596
+ </if>
603
597
 
598
+ <if mode="interactive" OR="custom with gates.confirm_plan true">
604
599
  Use AskUserQuestion:
605
600
 
606
601
  - header: "Ready"
@@ -611,6 +606,7 @@ Use AskUserQuestion:
611
606
  - "Let me add context" - I want to provide more information
612
607
 
613
608
  Loop until "Create phase prompt" selected.
609
+ </if>
614
610
  </step>
615
611
 
616
612
  <step name="write_phase_prompt">
@@ -127,7 +127,7 @@ Based on project state, determine the most logical next action:
127
127
  → Check if CONTEXT.md exists for this phase:
128
128
 
129
129
  - If CONTEXT.md missing:
130
- → Primary: Discuss phase context (gather objectives, constraints, success indicators)
130
+ → Primary: Discuss phase vision (how user imagines it working)
131
131
  → Secondary: Plan directly (skip context gathering)
132
132
  - If CONTEXT.md exists:
133
133
  → Primary: Plan the phase
@@ -42,22 +42,15 @@ ls .planning/phases/XX-current/*-SUMMARY.md 2>/dev/null | sort
42
42
  - If counts match: all plans complete
43
43
  - If counts don't match: incomplete
44
44
 
45
- **Check workflow config for gate behavior:**
46
-
45
+ <config-check>
47
46
  ```bash
48
47
  cat .planning/config.json 2>/dev/null
49
48
  ```
50
-
51
- Parse the config:
52
-
53
- - If `mode: "yolo"` → auto-approve transition (if all complete)
54
- - If `mode: "interactive"` → prompt user
55
- - If `mode: "custom"` → check `gates.confirm_transition`
49
+ </config-check>
56
50
 
57
51
  **If all plans complete:**
58
52
 
59
- **If auto-approved:**
60
-
53
+ <if mode="yolo">
61
54
  ```
62
55
  ⚡ Auto-approved: Transition Phase [X] → Phase [X+1]
63
56
  Phase [X] complete - all [Y] plans finished.
@@ -65,11 +58,15 @@ Phase [X] complete - all [Y] plans finished.
65
58
  Proceeding to mark done and advance...
66
59
  ```
67
60
 
68
- Proceed directly to cleanup_handoff.
61
+ Proceed directly to cleanup_handoff step.
62
+ </if>
69
63
 
70
- **If prompting:**
64
+ <if mode="interactive" OR="custom with gates.confirm_transition true">
71
65
  Ask: "Phase [X] complete - all [Y] plans finished. Ready to mark done and move to Phase [X+1]?"
72
66
 
67
+ Wait for confirmation before proceeding.
68
+ </if>
69
+
73
70
  **If plans incomplete:**
74
71
 
75
72
  **SAFETY RAIL: always_confirm_destructive applies here.**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "get-shit-done-cc",
3
- "version": "1.2.2",
3
+ "version": "1.2.4",
4
4
  "description": "A meta-prompting, context engineering and spec-driven development system for Claude Code by TÂCHES.",
5
5
  "bin": {
6
6
  "get-shit-done-cc": "bin/install.js"