get-shit-done-cc 1.3.3 → 1.3.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.
@@ -169,9 +169,7 @@ Project state updated: .planning/STATE.md
169
169
 
170
170
  **Phase {N}: {description}**
171
171
 
172
- ```
173
- /gsd:plan-phase {N}
174
- ```
172
+ `/gsd:plan-phase {N}`
175
173
 
176
174
  <sub>`/clear` first → fresh context window</sub>
177
175
 
@@ -82,9 +82,7 @@ Roadmap created:
82
82
 
83
83
  **Phase 1: [Name]** — [Goal from ROADMAP.md]
84
84
 
85
- ```
86
- /gsd:plan-phase 1
87
- ```
85
+ `/gsd:plan-phase 1`
88
86
 
89
87
  <sub>`/clear` first → fresh context window</sub>
90
88
 
@@ -188,9 +188,7 @@ Project state updated: .planning/STATE.md
188
188
 
189
189
  **Phase {decimal_phase}: {description}** — urgent insertion
190
190
 
191
- ```
192
- /gsd:plan-phase {decimal_phase}
193
- ```
191
+ `/gsd:plan-phase {decimal_phase}`
194
192
 
195
193
  <sub>`/clear` first → fresh context window</sub>
196
194
 
@@ -13,7 +13,7 @@ allowed-tools:
13
13
  <objective>
14
14
  Analyze existing codebase using parallel Explore agents to produce structured codebase documents.
15
15
 
16
- This command spawns multiple Explore agents to analyze different aspects of the codebase in parallel, each with fresh context. Each agent produces focused documentation under 100 lines.
16
+ This command spawns multiple Explore agents to analyze different aspects of the codebase in parallel, each with fresh context.
17
17
 
18
18
  Output: .planning/codebase/ folder with 7 structured documents about the codebase state.
19
19
  </objective>
@@ -71,14 +71,12 @@ Check for .planning/STATE.md - loads context if project already initialized
71
71
  - TESTING.md - Test structure, coverage, practices
72
72
  - INTEGRATIONS.md - APIs, databases, external services
73
73
  - CONCERNS.md - Technical debt, risks, issues
74
- 6. Verify each document is under 100 lines (summarize if needed)
75
- 7. Offer next steps (typically: /gsd:new-project or /gsd:plan-phase)
74
+ 6. Offer next steps (typically: /gsd:new-project or /gsd:plan-phase)
76
75
  </process>
77
76
 
78
77
  <success_criteria>
79
78
  - [ ] .planning/codebase/ directory created
80
79
  - [ ] All 7 codebase documents written
81
- - [ ] Each document under 100 lines
82
80
  - [ ] Documents follow template structure
83
81
  - [ ] Parallel agents completed without errors
84
82
  - [ ] User knows next steps
@@ -181,9 +181,7 @@ Project initialized:
181
181
 
182
182
  **[Project Name]** — create roadmap
183
183
 
184
- ```
185
- /gsd:create-roadmap
186
- ```
184
+ `/gsd:create-roadmap`
187
185
 
188
186
  <sub>`/clear` first → fresh context window</sub>
189
187
 
@@ -106,9 +106,7 @@ Check if `{phase}-{plan}-PLAN.md` exists for that number.
106
106
 
107
107
  **{phase}-{plan}: [Plan Name]** — [objective summary from PLAN.md]
108
108
 
109
- ```
110
- /gsd:execute-plan [full-path-to-PLAN.md]
111
- ```
109
+ `/gsd:execute-plan [full-path-to-PLAN.md]`
112
110
 
113
111
  <sub>`/clear` first → fresh context window</sub>
114
112
 
@@ -132,9 +130,7 @@ Check if `{phase}-{plan}-PLAN.md` exists for that number.
132
130
 
133
131
  **Phase [N]: [Name]** — [Goal from ROADMAP.md]
134
132
 
135
- ```
136
- /gsd:plan-phase [phase-number]
137
- ```
133
+ `/gsd:plan-phase [phase-number]`
138
134
 
139
135
  <sub>`/clear` first → fresh context window</sub>
140
136
 
@@ -151,9 +147,7 @@ Check if `{phase}-{plan}-PLAN.md` exists for that number.
151
147
 
152
148
  **Phase [N]: [Name]** — [Goal from ROADMAP.md]
153
149
 
154
- ```
155
- /gsd:plan-phase [phase]
156
- ```
150
+ `/gsd:plan-phase [phase]`
157
151
 
158
152
  <sub>`/clear` first → fresh context window</sub>
159
153
 
@@ -4,24 +4,22 @@ Standard format for presenting next steps after completing a command or workflow
4
4
 
5
5
  ## Core Structure
6
6
 
7
- ```markdown
7
+ ```
8
8
  ---
9
9
 
10
10
  ## ▶ Next Up
11
11
 
12
12
  **{identifier}: {name}** — {one-line description}
13
13
 
14
- ```
15
- {command to copy-paste}
16
- ```
14
+ `{command to copy-paste}`
17
15
 
18
16
  <sub>`/clear` first → fresh context window</sub>
19
17
 
20
18
  ---
21
19
 
22
20
  **Also available:**
23
- - {alternative option 1}
24
- - {alternative option 2}
21
+ - `{alternative option 1}` — description
22
+ - `{alternative option 2}` — description
25
23
 
26
24
  ---
27
25
  ```
@@ -30,7 +28,7 @@ Standard format for presenting next steps after completing a command or workflow
30
28
 
31
29
  1. **Always show what it is** — name + description, never just a command path
32
30
  2. **Pull context from source** — ROADMAP.md for phases, PLAN.md `<objective>` for plans
33
- 3. **Command in clean code block** — easy to copy-paste
31
+ 3. **Command in inline code** — backticks, easy to copy-paste, renders as clickable link
34
32
  4. **`/clear` explanation** — always include, keeps it concise but explains why
35
33
  5. **"Also available" not "Other options"** — sounds more app-like
36
34
  6. **Visual separators** — `---` above and below to make it stand out
@@ -39,16 +37,14 @@ Standard format for presenting next steps after completing a command or workflow
39
37
 
40
38
  ### Execute Next Plan
41
39
 
42
- ```markdown
40
+ ```
43
41
  ---
44
42
 
45
43
  ## ▶ Next Up
46
44
 
47
45
  **02-03: Refresh Token Rotation** — Add /api/auth/refresh with sliding expiry
48
46
 
49
- ```
50
- /gsd:execute-plan .planning/phases/02-auth/02-03-PLAN.md
51
- ```
47
+ `/gsd:execute-plan .planning/phases/02-auth/02-03-PLAN.md`
52
48
 
53
49
  <sub>`/clear` first → fresh context window</sub>
54
50
 
@@ -65,7 +61,7 @@ Standard format for presenting next steps after completing a command or workflow
65
61
 
66
62
  Add note that this is the last plan and what comes after:
67
63
 
68
- ```markdown
64
+ ```
69
65
  ---
70
66
 
71
67
  ## ▶ Next Up
@@ -73,9 +69,7 @@ Add note that this is the last plan and what comes after:
73
69
  **02-03: Refresh Token Rotation** — Add /api/auth/refresh with sliding expiry
74
70
  <sub>Final plan in Phase 2</sub>
75
71
 
76
- ```
77
- /gsd:execute-plan .planning/phases/02-auth/02-03-PLAN.md
78
- ```
72
+ `/gsd:execute-plan .planning/phases/02-auth/02-03-PLAN.md`
79
73
 
80
74
  <sub>`/clear` first → fresh context window</sub>
81
75
 
@@ -90,16 +84,14 @@ Add note that this is the last plan and what comes after:
90
84
 
91
85
  ### Plan a Phase
92
86
 
93
- ```markdown
87
+ ```
94
88
  ---
95
89
 
96
90
  ## ▶ Next Up
97
91
 
98
92
  **Phase 2: Authentication** — JWT login flow with refresh tokens
99
93
 
100
- ```
101
- /gsd:plan-phase 2
102
- ```
94
+ `/gsd:plan-phase 2`
103
95
 
104
96
  <sub>`/clear` first → fresh context window</sub>
105
97
 
@@ -117,7 +109,7 @@ Add note that this is the last plan and what comes after:
117
109
 
118
110
  Show completion status before next action:
119
111
 
120
- ```markdown
112
+ ```
121
113
  ---
122
114
 
123
115
  ## ✓ Phase 2 Complete
@@ -128,9 +120,7 @@ Show completion status before next action:
128
120
 
129
121
  **Phase 3: Core Features** — User dashboard, settings, and data export
130
122
 
131
- ```
132
- /gsd:plan-phase 3
133
- ```
123
+ `/gsd:plan-phase 3`
134
124
 
135
125
  <sub>`/clear` first → fresh context window</sub>
136
126
 
@@ -148,27 +138,18 @@ Show completion status before next action:
148
138
 
149
139
  When there's no clear primary action:
150
140
 
151
- ```markdown
141
+ ```
152
142
  ---
153
143
 
154
144
  ## ▶ Next Up
155
145
 
156
146
  **Phase 3: Core Features** — User dashboard, settings, and data export
157
147
 
158
- **To plan directly:**
159
- ```
160
- /gsd:plan-phase 3
161
- ```
148
+ **To plan directly:** `/gsd:plan-phase 3`
162
149
 
163
- **To discuss context first:**
164
- ```
165
- /gsd:discuss-phase 3
166
- ```
150
+ **To discuss context first:** `/gsd:discuss-phase 3`
167
151
 
168
- **To research unknowns:**
169
- ```
170
- /gsd:research-phase 3
171
- ```
152
+ **To research unknowns:** `/gsd:research-phase 3`
172
153
 
173
154
  <sub>`/clear` first → fresh context window</sub>
174
155
 
@@ -177,7 +158,7 @@ When there's no clear primary action:
177
158
 
178
159
  ### Milestone Complete
179
160
 
180
- ```markdown
161
+ ```
181
162
  ---
182
163
 
183
164
  ## 🎉 Milestone v1.0 Complete
@@ -188,9 +169,7 @@ All 4 phases shipped
188
169
 
189
170
  **Plan v1.1** — Enhanced features and optimizations
190
171
 
191
- ```
192
- /gsd:discuss-milestone
193
- ```
172
+ `/gsd:discuss-milestone`
194
173
 
195
174
  <sub>`/clear` first → fresh context window</sub>
196
175
 
@@ -237,23 +216,19 @@ Extract: `**02-03: Refresh Token Rotation** — Add /api/auth/refresh with slidi
237
216
 
238
217
  ### Don't: Command-only (no context)
239
218
 
240
- ```markdown
219
+ ```
241
220
  ## To Continue
242
221
 
243
222
  Run `/clear`, then paste:
244
- ```
245
223
  /gsd:execute-plan .planning/phases/02-auth/02-03-PLAN.md
246
224
  ```
247
- ```
248
225
 
249
226
  User has no idea what 02-03 is about.
250
227
 
251
228
  ### Don't: Missing /clear explanation
252
229
 
253
- ```markdown
254
- ```
255
- /gsd:plan-phase 3
256
230
  ```
231
+ `/gsd:plan-phase 3`
257
232
 
258
233
  Run /clear first.
259
234
  ```
@@ -262,9 +237,19 @@ Doesn't explain why. User might skip it.
262
237
 
263
238
  ### Don't: "Other options" language
264
239
 
265
- ```markdown
240
+ ```
266
241
  Other options:
267
242
  - Review roadmap
268
243
  ```
269
244
 
270
245
  Sounds like an afterthought. Use "Also available:" instead.
246
+
247
+ ### Don't: Fenced code blocks for commands
248
+
249
+ ```
250
+ ```
251
+ /gsd:plan-phase 3
252
+ ```
253
+ ```
254
+
255
+ Fenced blocks inside templates create nesting ambiguity. Use inline backticks instead.
@@ -177,7 +177,6 @@ Template for `.planning/codebase/STACK.md` - captures the technology foundation.
177
177
  - Note runtime version from .nvmrc or package.json engines
178
178
  - Include only dependencies that affect understanding (not every utility)
179
179
  - Specify versions only when version matters (breaking changes, compatibility)
180
- - Keep under ~100 lines total
181
180
 
182
181
  **Useful for phase planning when:**
183
182
  - Adding new dependencies (check compatibility)
@@ -430,9 +430,7 @@ Tag: v[X.Y]
430
430
 
431
431
  **Plan Next Milestone** — define v[X.Y+1] features and scope
432
432
 
433
- ```
434
- /gsd:discuss-milestone
435
- ```
433
+ `/gsd:discuss-milestone`
436
434
 
437
435
  <sub>`/clear` first → fresh context window</sub>
438
436
 
@@ -329,9 +329,7 @@ Milestone v[X.Y] [Name] created:
329
329
 
330
330
  **Phase [N]: [Name]** — [Goal from ROADMAP.md]
331
331
 
332
- ```
333
- /gsd:plan-phase [N]
334
- ```
332
+ `/gsd:plan-phase [N]`
335
333
 
336
334
  <sub>`/clear` first → fresh context window</sub>
337
335
 
@@ -388,9 +388,7 @@ Project initialized:
388
388
 
389
389
  **Phase 1: [Name]** — [Goal from ROADMAP.md]
390
390
 
391
- ```
392
- /gsd:plan-phase 1
393
- ```
391
+ `/gsd:plan-phase 1`
394
392
 
395
393
  <sub>`/clear` first → fresh context window</sub>
396
394
 
@@ -144,9 +144,7 @@ Ready to create the milestone structure.
144
144
 
145
145
  **Create Milestone v[X.Y]** — [Theme Name]
146
146
 
147
- ```
148
- /gsd:new-milestone
149
- ```
147
+ `/gsd:new-milestone`
150
148
 
151
149
  <sub>`/clear` first → fresh context window</sub>
152
150
 
@@ -200,9 +200,7 @@ Created: .planning/phases/${PHASE}-${SLUG}/${PHASE}-CONTEXT.md
200
200
 
201
201
  **Phase ${PHASE}: [Name]** — [Goal from ROADMAP.md]
202
202
 
203
- ```
204
- /gsd:plan-phase ${PHASE}
205
- ```
203
+ `/gsd:plan-phase ${PHASE}`
206
204
 
207
205
  <sub>`/clear` first → fresh context window</sub>
208
206
 
@@ -1177,7 +1177,6 @@ For each document needing update:
1177
1177
  1. Read current document
1178
1178
  2. Identify what changed (new entries, removed entries, modified sections)
1179
1179
  3. Apply minimal edits to reflect new state
1180
- 4. Keep document under 100 lines (summarize if needed)
1181
1180
 
1182
1181
  **Commit codebase updates:**
1183
1182
  ```bash
@@ -1262,9 +1261,7 @@ Summary: .planning/phases/XX-name/{phase}-{plan}-SUMMARY.md
1262
1261
 
1263
1262
  **{phase}-{next-plan}: [Plan Name]** — [objective from next PLAN.md]
1264
1263
 
1265
- ```
1266
- /gsd:execute-plan .planning/phases/XX-name/{phase}-{next-plan}-PLAN.md
1267
- ```
1264
+ `/gsd:execute-plan .planning/phases/XX-name/{phase}-{next-plan}-PLAN.md`
1268
1265
 
1269
1266
  <sub>`/clear` first → fresh context window</sub>
1270
1267
 
@@ -1318,9 +1315,7 @@ This milestone is 100% done.
1318
1315
 
1319
1316
  **Complete Milestone** — archive and prepare for next
1320
1317
 
1321
- ```
1322
- /gsd:complete-milestone
1323
- ```
1318
+ `/gsd:complete-milestone`
1324
1319
 
1325
1320
  <sub>`/clear` first → fresh context window</sub>
1326
1321
 
@@ -1349,9 +1344,7 @@ All [Y] plans finished.
1349
1344
 
1350
1345
  **Phase [X+1]: [Name]** — [Goal from ROADMAP.md]
1351
1346
 
1352
- ```
1353
- /gsd:plan-phase [X+1]
1354
- ```
1347
+ `/gsd:plan-phase [X+1]`
1355
1348
 
1356
1349
  <sub>`/clear` first → fresh context window</sub>
1357
1350
 
@@ -1,7 +1,7 @@
1
1
  <purpose>
2
2
  Orchestrate parallel Explore agents to analyze codebase and produce structured documents in .planning/codebase/
3
3
 
4
- Each agent has fresh context and focuses on specific aspects. Output is concise (under 100 lines per document) and actionable for planning.
4
+ Each agent has fresh context and focuses on specific aspects. Output is concise and actionable for planning.
5
5
  </purpose>
6
6
 
7
7
  <philosophy>
@@ -11,8 +11,8 @@ Each agent has fresh context and focuses on specific aspects. Output is concise
11
11
  - Each agent optimized for its domain (tech vs organization vs quality vs issues)
12
12
  - Faster execution (agents run simultaneously)
13
13
 
14
- **Why 100-line limit:**
15
- Codebase maps are reference material loaded frequently. Concise summaries are more useful than exhaustive inventories. If codebase is large, summarize patterns rather than listing every file.
14
+ **Document quality over length:**
15
+ Include enough detail to be useful as reference. Prioritize practical examples (especially code patterns) over arbitrary brevity. A 200-line TESTING.md with real patterns is more valuable than a 74-line summary.
16
16
  </philosophy>
17
17
 
18
18
  <process>
@@ -255,13 +255,6 @@ If an agent didn't find information for a section, use placeholder:
255
255
  - "Not applicable" (for patterns that don't apply to this codebase)
256
256
  - "No significant concerns" (for CONCERNS.md if codebase is clean)
257
257
 
258
- **Line count check:**
259
-
260
- Before writing, estimate total lines for each document. If any will exceed 100 lines:
261
- - Summarize patterns instead of listing all instances
262
- - Prioritize most important/frequent patterns
263
- - Reference "see code for full details" for exhaustive lists
264
-
265
258
  Continue to write_documents.
266
259
  </step>
267
260
 
@@ -281,11 +274,7 @@ For each document:
281
274
  - "Not detected" for optional infrastructure
282
275
  - "Not applicable" for patterns that don't fit this codebase
283
276
  - "No significant concerns" for clean codebase areas
284
- 4. **Verify line count** - if filled template exceeds 100 lines, summarize:
285
- - Keep most critical findings
286
- - Summarize patterns instead of exhaustive lists
287
- - Add "(see code for full details)" where appropriate
288
- 5. **Write to .planning/codebase/{NAME}.md** (uppercase filename)
277
+ 4. **Write to .planning/codebase/{NAME}.md** (uppercase filename)
289
278
 
290
279
  **Example filling pattern:**
291
280
 
@@ -329,7 +318,6 @@ wc -l .planning/codebase/*.md
329
318
 
330
319
  **Verification checklist:**
331
320
  - All 7 documents exist
332
- - Each document under 100 lines
333
321
  - No empty documents
334
322
  - Templates populated with findings
335
323
 
@@ -377,7 +365,6 @@ Created .planning/codebase/:
377
365
  - INTEGRATIONS.md ([N] lines) - External services and APIs
378
366
  - CONCERNS.md ([N] lines) - Technical debt and issues
379
367
 
380
- [If any files >100 lines, add warning: "⚠ Some files exceed 100 lines - consider summarizing further"]
381
368
 
382
369
  ---
383
370
 
@@ -385,9 +372,7 @@ Created .planning/codebase/:
385
372
 
386
373
  **Initialize project** — use codebase context for planning
387
374
 
388
- ```
389
- /gsd:new-project
390
- ```
375
+ `/gsd:new-project`
391
376
 
392
377
  <sub>`/clear` first → fresh context window</sub>
393
378
 
@@ -412,7 +397,6 @@ End workflow.
412
397
  - Agent prompts are specific and actionable
413
398
  - TaskOutput used to collect all agent results
414
399
  - All 7 codebase documents written using template filling
415
- - Each document under 100 lines (or warning shown)
416
400
  - Documents follow template structure with actual findings
417
401
  - Clear completion summary with line counts
418
402
  - User offered clear next steps in GSD style
@@ -771,9 +771,7 @@ Phase plan created: .planning/phases/XX-name/{phase}-01-PLAN.md
771
771
 
772
772
  **{phase}-01: [Plan Name]** — [objective summary]
773
773
 
774
- ```
775
- /gsd:execute-plan .planning/phases/XX-name/{phase}-01-PLAN.md
776
- ```
774
+ `/gsd:execute-plan .planning/phases/XX-name/{phase}-01-PLAN.md`
777
775
 
778
776
  <sub>`/clear` first → fresh context window</sub>
779
777
 
@@ -802,9 +800,7 @@ Total: [X] tasks across [Y] focused plans.
802
800
 
803
801
  **{phase}-01: [Plan Name]** — [objective summary]
804
802
 
805
- ```
806
- /gsd:execute-plan .planning/phases/XX-name/{phase}-01-PLAN.md
807
- ```
803
+ `/gsd:execute-plan .planning/phases/XX-name/{phase}-01-PLAN.md`
808
804
 
809
805
  <sub>`/clear` first → fresh context window</sub>
810
806
 
@@ -182,9 +182,7 @@ Based on user selection, route to appropriate workflow:
182
182
 
183
183
  **{phase}-{plan}: [Plan Name]** — [objective from PLAN.md]
184
184
 
185
- ```
186
- /gsd:execute-plan [path]
187
- ```
185
+ `/gsd:execute-plan [path]`
188
186
 
189
187
  <sub>`/clear` first → fresh context window</sub>
190
188
 
@@ -198,9 +196,7 @@ Based on user selection, route to appropriate workflow:
198
196
 
199
197
  **Phase [N]: [Name]** — [Goal from ROADMAP.md]
200
198
 
201
- ```
202
- /gsd:plan-phase [phase-number]
203
- ```
199
+ `/gsd:plan-phase [phase-number]`
204
200
 
205
201
  <sub>`/clear` first → fresh context window</sub>
206
202
 
@@ -397,9 +397,7 @@ Exit skill and invoke SlashCommand("/gsd:plan-phase [X+1]")
397
397
 
398
398
  **Phase [X+1]: [Name]** — [Goal from ROADMAP.md]
399
399
 
400
- ```
401
- /gsd:plan-phase [X+1]
402
- ```
400
+ `/gsd:plan-phase [X+1]`
403
401
 
404
402
  <sub>`/clear` first → fresh context window</sub>
405
403
 
@@ -440,9 +438,7 @@ Exit skill and invoke SlashCommand("/gsd:complete-milestone [version]")
440
438
 
441
439
  **Complete Milestone [version]** — archive and prepare for next
442
440
 
443
- ```
444
- /gsd:complete-milestone [version]
445
- ```
441
+ `/gsd:complete-milestone [version]`
446
442
 
447
443
  <sub>`/clear` first → fresh context window</sub>
448
444
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "get-shit-done-cc",
3
- "version": "1.3.3",
3
+ "version": "1.3.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"