get-shit-done-cc 1.2.4 → 1.2.6

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