get-shit-done-cc 1.2.3 → 1.2.5

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.
@@ -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">
@@ -1061,17 +1055,11 @@ Resume file: [path to .continue-here if exists, else "None"]
1061
1055
  </step>
1062
1056
 
1063
1057
  <step name="issues_review_gate">
1064
- Before proceeding, check SUMMARY.md content:
1065
-
1066
- **Check workflow config for gate behavior:**
1067
-
1068
- - If `mode: "yolo"` → auto-approve (but still log issues)
1069
- - If `mode: "interactive"` → prompt user
1058
+ Before proceeding, check SUMMARY.md content.
1070
1059
 
1071
1060
  If "Issues Encountered" is NOT "None":
1072
1061
 
1073
- **If auto-approved:**
1074
-
1062
+ <if mode="yolo">
1075
1063
  ```
1076
1064
  ⚡ Auto-approved: Issues acknowledgment
1077
1065
  ⚠️ Note: Issues were encountered during execution:
@@ -1081,9 +1069,11 @@ If "Issues Encountered" is NOT "None":
1081
1069
  ```
1082
1070
 
1083
1071
  Continue without waiting.
1072
+ </if>
1084
1073
 
1085
- **If prompting:**
1086
- Present issues and wait for acknowledgment.
1074
+ <if mode="interactive" OR="custom with gates.issues_review true">
1075
+ Present issues and wait for acknowledgment before proceeding.
1076
+ </if>
1087
1077
  </step>
1088
1078
 
1089
1079
  <step name="update_roadmap">
@@ -1198,15 +1188,9 @@ Use AskUserQuestion:
1198
1188
  </step>
1199
1189
 
1200
1190
  <step name="offer_next">
1201
- **Check workflow config for gate behavior:**
1202
-
1203
- - If `mode: "yolo"` → auto-continue to next action
1204
- - If `mode: "interactive"` → prompt user
1205
-
1206
1191
  **If more plans in this phase:**
1207
1192
 
1208
- **If auto-approved:**
1209
-
1193
+ <if mode="yolo">
1210
1194
  ```
1211
1195
  Plan {phase}-{plan} complete.
1212
1196
  Summary: .planning/phases/XX-name/{phase}-{plan}-SUMMARY.md
@@ -1217,9 +1201,9 @@ Summary: .planning/phases/XX-name/{phase}-{plan}-SUMMARY.md
1217
1201
  ```
1218
1202
 
1219
1203
  Loop back to identify_plan step automatically.
1204
+ </if>
1220
1205
 
1221
- **If prompting:**
1222
-
1206
+ <if mode="interactive" OR="custom with gates.execute_next_plan true">
1223
1207
  ```
1224
1208
  Plan {phase}-{plan} complete.
1225
1209
  Summary: .planning/phases/XX-name/{phase}-{plan}-SUMMARY.md
@@ -1232,6 +1216,9 @@ What's next?
1232
1216
  3. Done for now
1233
1217
  ```
1234
1218
 
1219
+ Wait for user selection.
1220
+ </if>
1221
+
1235
1222
  **If phase complete (last plan done):**
1236
1223
 
1237
1224
  First, check if this is also the last phase in the milestone (milestone complete):
@@ -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.**
@@ -376,18 +373,9 @@ Re-read the ROADMAP file:
376
373
  - If next phase exists: offer to plan it
377
374
  - If no next phase (milestone 100% complete): offer to complete milestone with parsed version
378
375
 
379
- **Check workflow config for gate behavior:**
380
-
381
- Read config (already parsed).
382
-
383
- - If `mode: "yolo"` → auto-continue
384
- - If `mode: "interactive"` → prompt user
385
- - If `mode: "custom"` → check `gates.confirm_transition` (reused for continuation)
386
-
387
376
  **If next phase exists:**
388
377
 
389
- **If auto-approved:**
390
-
378
+ <if mode="yolo">
391
379
  ```
392
380
  Phase [X] marked complete.
393
381
 
@@ -397,9 +385,9 @@ Next: Phase [X+1] - [Name]
397
385
  ```
398
386
 
399
387
  Exit skill and invoke SlashCommand("/gsd:plan-phase [X+1]")
388
+ </if>
400
389
 
401
- **If prompting:**
402
-
390
+ <if mode="interactive" OR="custom with gates.confirm_transition true">
403
391
  ```
404
392
  Phase [X] marked complete.
405
393
 
@@ -412,10 +400,12 @@ What would you like to do?
412
400
  4. Take a break (done for now)
413
401
  ```
414
402
 
415
- **If no next phase (milestone 100% complete):**
403
+ Wait for user selection.
404
+ </if>
416
405
 
417
- **If auto-approved:**
406
+ **If no next phase (milestone 100% complete):**
418
407
 
408
+ <if mode="yolo">
419
409
  ```
420
410
  Phase [X] marked complete.
421
411
 
@@ -425,9 +415,9 @@ Phase [X] marked complete.
425
415
  ```
426
416
 
427
417
  Exit skill and invoke SlashCommand("/gsd:complete-milestone [version]")
418
+ </if>
428
419
 
429
- **If prompting:**
430
-
420
+ <if mode="interactive" OR="custom with gates.confirm_transition true">
431
421
  ```
432
422
  Phase [X] marked complete.
433
423
 
@@ -439,6 +429,9 @@ What would you like to do?
439
429
  3. Take a break (done for now)
440
430
  ```
441
431
 
432
+ Wait for user selection.
433
+ </if>
434
+
442
435
  </step>
443
436
 
444
437
  </process>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "get-shit-done-cc",
3
- "version": "1.2.3",
3
+ "version": "1.2.5",
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"