get-shit-done-cc 1.0.0

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.
Files changed (49) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +192 -0
  3. package/bin/install.js +53 -0
  4. package/commands/gsd/add-phase.md +201 -0
  5. package/commands/gsd/complete-milestone.md +105 -0
  6. package/commands/gsd/discuss-milestone.md +45 -0
  7. package/commands/gsd/discuss-phase.md +47 -0
  8. package/commands/gsd/execute-plan.md +108 -0
  9. package/commands/gsd/help.md +252 -0
  10. package/commands/gsd/insert-phase.md +218 -0
  11. package/commands/gsd/list-phase-assumptions.md +49 -0
  12. package/commands/gsd/new-milestone.md +58 -0
  13. package/commands/gsd/new-project.md +177 -0
  14. package/commands/gsd/pause-work.md +123 -0
  15. package/commands/gsd/plan-phase.md +60 -0
  16. package/commands/gsd/progress.md +182 -0
  17. package/commands/gsd/resume-work.md +50 -0
  18. package/get-shit-done/references/checkpoints.md +594 -0
  19. package/get-shit-done/references/cli-automation.md +527 -0
  20. package/get-shit-done/references/git-integration.md +126 -0
  21. package/get-shit-done/references/plan-format.md +397 -0
  22. package/get-shit-done/references/principles.md +97 -0
  23. package/get-shit-done/references/questioning.md +138 -0
  24. package/get-shit-done/references/research-pitfalls.md +215 -0
  25. package/get-shit-done/references/scope-estimation.md +451 -0
  26. package/get-shit-done/templates/config.json +17 -0
  27. package/get-shit-done/templates/context.md +385 -0
  28. package/get-shit-done/templates/continue-here.md +78 -0
  29. package/get-shit-done/templates/issues.md +32 -0
  30. package/get-shit-done/templates/milestone-archive.md +123 -0
  31. package/get-shit-done/templates/milestone.md +115 -0
  32. package/get-shit-done/templates/phase-prompt.md +290 -0
  33. package/get-shit-done/templates/project.md +207 -0
  34. package/get-shit-done/templates/research-prompt.md +133 -0
  35. package/get-shit-done/templates/roadmap.md +196 -0
  36. package/get-shit-done/templates/state.md +226 -0
  37. package/get-shit-done/templates/summary.md +200 -0
  38. package/get-shit-done/workflows/complete-milestone.md +490 -0
  39. package/get-shit-done/workflows/create-milestone.md +379 -0
  40. package/get-shit-done/workflows/create-roadmap.md +443 -0
  41. package/get-shit-done/workflows/discuss-milestone.md +144 -0
  42. package/get-shit-done/workflows/discuss-phase.md +254 -0
  43. package/get-shit-done/workflows/execute-phase.md +1261 -0
  44. package/get-shit-done/workflows/list-phase-assumptions.md +178 -0
  45. package/get-shit-done/workflows/plan-phase.md +783 -0
  46. package/get-shit-done/workflows/research-phase.md +293 -0
  47. package/get-shit-done/workflows/resume-project.md +248 -0
  48. package/get-shit-done/workflows/transition.md +488 -0
  49. package/package.json +30 -0
@@ -0,0 +1,488 @@
1
+ <required_reading>
2
+ **Read these files NOW:**
3
+
4
+ 1. `.planning/STATE.md`
5
+ 2. `.planning/ROADMAP.md`
6
+ 3. Current phase's plan files (`*-PLAN.md`)
7
+ 4. Current phase's summary files (`*-SUMMARY.md`)
8
+ </required_reading>
9
+
10
+ <purpose>
11
+ Mark current phase complete and advance to next. This is the natural point
12
+ where progress tracking happens - implicit via forward motion.
13
+
14
+ "Planning next phase" = "current phase is done"
15
+ </purpose>
16
+
17
+ <process>
18
+
19
+ <step name="load_project_state" priority="first">
20
+ Before transition, read project state:
21
+
22
+ ```bash
23
+ cat .planning/STATE.md 2>/dev/null
24
+ ```
25
+
26
+ Parse current position to verify we're transitioning the right phase.
27
+ Note accumulated context that may need updating after transition.
28
+ </step>
29
+
30
+ <step name="verify_completion">
31
+ Check current phase has all plan summaries:
32
+
33
+ ```bash
34
+ ls .planning/phases/XX-current/*-PLAN.md 2>/dev/null | sort
35
+ ls .planning/phases/XX-current/*-SUMMARY.md 2>/dev/null | sort
36
+ ```
37
+
38
+ **Verification logic:**
39
+
40
+ - Count PLAN files
41
+ - Count SUMMARY files
42
+ - If counts match: all plans complete
43
+ - If counts don't match: incomplete
44
+
45
+ **Check workflow config for gate behavior:**
46
+
47
+ ```bash
48
+ cat .planning/config.json 2>/dev/null
49
+ ```
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`
56
+
57
+ **If all plans complete:**
58
+
59
+ **If auto-approved:**
60
+
61
+ ```
62
+ ⚡ Auto-approved: Transition Phase [X] → Phase [X+1]
63
+ Phase [X] complete - all [Y] plans finished.
64
+
65
+ Proceeding to mark done and advance...
66
+ ```
67
+
68
+ Proceed directly to cleanup_handoff.
69
+
70
+ **If prompting:**
71
+ Ask: "Phase [X] complete - all [Y] plans finished. Ready to mark done and move to Phase [X+1]?"
72
+
73
+ **If plans incomplete:**
74
+
75
+ **SAFETY RAIL: always_confirm_destructive applies here.**
76
+ Skipping incomplete plans is destructive - ALWAYS prompt regardless of mode.
77
+
78
+ Present:
79
+
80
+ ```
81
+ Phase [X] has incomplete plans:
82
+ - {phase}-01-SUMMARY.md ✓ Complete
83
+ - {phase}-02-SUMMARY.md ✗ Missing
84
+ - {phase}-03-SUMMARY.md ✗ Missing
85
+
86
+ ⚠️ Safety rail: Skipping plans requires confirmation (destructive action)
87
+
88
+ Options:
89
+ 1. Continue current phase (execute remaining plans)
90
+ 2. Mark complete anyway (skip remaining plans)
91
+ 3. Review what's left
92
+ ```
93
+
94
+ Wait for user decision.
95
+ </step>
96
+
97
+ <step name="cleanup_handoff">
98
+ Check for lingering handoffs:
99
+
100
+ ```bash
101
+ ls .planning/phases/XX-current/.continue-here*.md 2>/dev/null
102
+ ```
103
+
104
+ If found, delete them - phase is complete, handoffs are stale.
105
+ </step>
106
+
107
+ <step name="update_roadmap">
108
+ Update the roadmap file:
109
+
110
+ ```bash
111
+ ROADMAP_FILE=".planning/ROADMAP.md"
112
+ ```
113
+
114
+ Update the file:
115
+
116
+ - Mark current phase: `[x] Complete`
117
+ - Add completion date
118
+ - Update plan count to final (e.g., "3/3 plans complete")
119
+ - Update Progress table
120
+ - Keep next phase as `[ ] Not started`
121
+
122
+ **Example:**
123
+
124
+ ```markdown
125
+ ## Phases
126
+
127
+ - [x] Phase 1: Foundation (completed 2025-01-15)
128
+ - [ ] Phase 2: Authentication ← Next
129
+ - [ ] Phase 3: Core Features
130
+
131
+ ## Progress
132
+
133
+ | Phase | Plans Complete | Status | Completed |
134
+ | ----------------- | -------------- | ----------- | ---------- |
135
+ | 1. Foundation | 3/3 | Complete | 2025-01-15 |
136
+ | 2. Authentication | 0/2 | Not started | - |
137
+ | 3. Core Features | 0/1 | Not started | - |
138
+ ```
139
+
140
+ </step>
141
+
142
+ <step name="archive_prompts">
143
+ If prompts were generated for the phase, they stay in place.
144
+ The `completed/` subfolder pattern from create-meta-prompts handles archival.
145
+ </step>
146
+
147
+ <step name="update_current_position_after_transition">
148
+ Update Current Position section in STATE.md to reflect phase completion and transition.
149
+
150
+ **Format:**
151
+
152
+ ```markdown
153
+ Phase: [next] of [total] ([Next phase name])
154
+ Plan: Not started
155
+ Status: Ready to plan
156
+ Last activity: [today] - Phase [X] complete, transitioned to Phase [X+1]
157
+
158
+ Progress: [updated progress bar]
159
+ ```
160
+
161
+ **Instructions:**
162
+
163
+ - Increment phase number to next phase
164
+ - Reset plan to "Not started"
165
+ - Set status to "Ready to plan"
166
+ - Update last activity to describe transition
167
+ - Recalculate progress bar based on completed plans
168
+
169
+ **Example - transitioning from Phase 2 to Phase 3:**
170
+
171
+ Before:
172
+
173
+ ```markdown
174
+ ## Current Position
175
+
176
+ Phase: 2 of 4 (Authentication)
177
+ Plan: 2 of 2 in current phase
178
+ Status: Phase complete
179
+ Last activity: 2025-01-20 - Completed 02-02-PLAN.md
180
+
181
+ Progress: ███████░░░ 60%
182
+ ```
183
+
184
+ After:
185
+
186
+ ```markdown
187
+ ## Current Position
188
+
189
+ Phase: 3 of 4 (Core Features)
190
+ Plan: Not started
191
+ Status: Ready to plan
192
+ Last activity: 2025-01-20 - Phase 2 complete, transitioned to Phase 3
193
+
194
+ Progress: ███████░░░ 60%
195
+ ```
196
+
197
+ **Step complete when:**
198
+
199
+ - [ ] Phase number incremented to next phase
200
+ - [ ] Plan status reset to "Not started"
201
+ - [ ] Status shows "Ready to plan"
202
+ - [ ] Last activity describes the transition
203
+ - [ ] Progress bar still reflects total completed plans
204
+ </step>
205
+
206
+ <step name="review_accumulated_context">
207
+ Review and update Accumulated Context section in STATE.md.
208
+
209
+ **Blockers/Concerns:**
210
+
211
+ - Review blockers from completed phase
212
+ - If addressed in this phase: Remove from list
213
+ - If still relevant for future: Keep with note "Carried from Phase X"
214
+ - Add any new concerns from completed phase's summaries
215
+
216
+ **Deferred Issues:**
217
+
218
+ - Count open issues in ISSUES.md
219
+ - Update count: "[N] open issues - see ISSUES.md"
220
+ - If many accumulated, note: "Consider addressing ISS-XXX, ISS-YYY in next phase"
221
+
222
+ **Example:**
223
+
224
+ Before:
225
+
226
+ ```markdown
227
+ ### Blockers/Concerns Carried Forward
228
+
229
+ - ⚠️ [Phase 1] Database schema not indexed for common queries
230
+ - ⚠️ [Phase 2] WebSocket reconnection behavior on flaky networks unknown
231
+
232
+ ### Deferred Issues
233
+
234
+ - ISS-001: Rate limiting on sync endpoint (Phase 2) - Medium
235
+ ```
236
+
237
+ After (if database indexing was addressed in Phase 2):
238
+
239
+ ```markdown
240
+ ### Blockers/Concerns Carried Forward
241
+
242
+ - ⚠️ [Phase 2] WebSocket reconnection behavior on flaky networks unknown
243
+
244
+ ### Deferred Issues
245
+
246
+ - ISS-001: Rate limiting on sync endpoint (Phase 2) - Medium
247
+ - ISS-002: Better sync error messages (Phase 2) - Quick
248
+ ```
249
+
250
+ **Step complete when:**
251
+
252
+ - [ ] Resolved blockers removed from list
253
+ - [ ] Unresolved blockers kept with phase prefix
254
+ - [ ] New concerns from completed phase added
255
+ - [ ] Deferred issues count updated
256
+ </step>
257
+
258
+ <step name="update_brief_alignment">
259
+ Perform brief alignment check after phase completion to verify work matches original vision.
260
+
261
+ **Instructions:**
262
+
263
+ 1. Re-read PROJECT.md core requirements
264
+ 2. Assess what was built in completed phase
265
+ 3. Compare against project's problem statement and success criteria
266
+ 4. Determine alignment status:
267
+ - ✓ Aligned: Work delivers on project goals, no scope drift
268
+ - ⚠️ Drift detected: Some divergence from original vision
269
+ - ✗ Misaligned: Work doesn't serve the project
270
+
271
+ **Format:**
272
+
273
+ ```markdown
274
+ ## Brief Alignment
275
+
276
+ Last checked: [today] (Phase [X] completion)
277
+ Status: [✓ Aligned / ⚠️ Drift detected / ✗ Misaligned]
278
+ Assessment: [One sentence describing alignment state]
279
+ Drift notes: [Details if drift detected, otherwise "None"]
280
+ ```
281
+
282
+ **Example - transitioning after Phase 2 completion:**
283
+
284
+ Before:
285
+
286
+ ```markdown
287
+ ## Brief Alignment
288
+
289
+ Last checked: Project start
290
+ Status: ✓ Aligned
291
+ Assessment: No work done yet - baseline alignment.
292
+ Drift notes: None
293
+ ```
294
+
295
+ After:
296
+
297
+ ```markdown
298
+ ## Brief Alignment
299
+
300
+ Last checked: 2025-01-20 (Phase 2 completion)
301
+ Status: ✓ Aligned
302
+ Assessment: Auth phase delivered JWT-based authentication as specified. Sync phase next aligns with project's real-time requirements.
303
+ Drift notes: None
304
+ ```
305
+
306
+ **Alternative example - drift detected:**
307
+
308
+ After (with drift):
309
+
310
+ ```markdown
311
+ ## Brief Alignment
312
+
313
+ Last checked: 2025-01-20 (Phase 2 completion)
314
+ Status: ⚠️ Drift detected
315
+ Assessment: Auth phase added OAuth2 support beyond project's JWT requirement.
316
+ Drift notes: OAuth2 adds complexity not in original scope. Consider if this serves user needs or gold-plating.
317
+ ```
318
+
319
+ **Step complete when:**
320
+
321
+ - [ ] PROJECT.md core requirements reviewed
322
+ - [ ] Completed phase work assessed against project goals
323
+ - [ ] Last checked updated to current date with phase reference
324
+ - [ ] Status reflects actual alignment (Aligned/Drift/Misaligned)
325
+ - [ ] Assessment explains the alignment state in one sentence
326
+ - [ ] Drift notes document any divergence from project goals
327
+ </step>
328
+
329
+ <step name="update_session_continuity_after_transition">
330
+ Update Session Continuity section in STATE.md to reflect transition completion.
331
+
332
+ **Format:**
333
+
334
+ ```markdown
335
+ Last session: [today]
336
+ Stopped at: Phase [X] complete, ready to plan Phase [X+1]
337
+ Resume file: None
338
+ ```
339
+
340
+ **Example - after completing Phase 2 transition:**
341
+
342
+ Before:
343
+
344
+ ```markdown
345
+ ## Session Continuity
346
+
347
+ Last session: 2025-01-20
348
+ Stopped at: Completed 02-02-PLAN.md
349
+ Resume file: None
350
+ ```
351
+
352
+ After:
353
+
354
+ ```markdown
355
+ ## Session Continuity
356
+
357
+ Last session: 2025-01-20 16:45
358
+ Stopped at: Phase 2 complete, ready to plan Phase 3
359
+ Resume file: None
360
+ ```
361
+
362
+ **Step complete when:**
363
+
364
+ - [ ] Last session timestamp updated to current date and time
365
+ - [ ] Stopped at describes phase completion and next phase
366
+ - [ ] Resume file confirmed as None (transitions don't use resume files)
367
+ </step>
368
+
369
+ <step name="offer_next_phase">
370
+ **Check if there's a next phase in the current milestone:**
371
+
372
+ Re-read the ROADMAP file:
373
+
374
+ - Parse current milestone version (e.g., "v1.0" from "## Current Milestone: v1.0 Foundation")
375
+ - Look for phases after the current one in the current milestone section
376
+ - If next phase exists: offer to plan it
377
+ - If no next phase (milestone 100% complete): offer to complete milestone with parsed version
378
+
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
+ **If next phase exists:**
388
+
389
+ **If auto-approved:**
390
+
391
+ ```
392
+ Phase [X] marked complete.
393
+
394
+ Next: Phase [X+1] - [Name]
395
+
396
+ ⚡ Auto-continuing: Plan Phase [X+1] in detail
397
+ ```
398
+
399
+ Exit skill and invoke SlashCommand("/gsd:plan-phase [X+1]")
400
+
401
+ **If prompting:**
402
+
403
+ ```
404
+ Phase [X] marked complete.
405
+
406
+ Next: Phase [X+1] - [Name]
407
+
408
+ What would you like to do?
409
+ 1. Discuss Phase [X+1] context (/gsd:discuss-phase [X+1])
410
+ 2. Plan Phase [X+1] in detail (/gsd:plan-phase [X+1])
411
+ 3. Review roadmap
412
+ 4. Take a break (done for now)
413
+ ```
414
+
415
+ **If no next phase (milestone 100% complete):**
416
+
417
+ **If auto-approved:**
418
+
419
+ ```
420
+ Phase [X] marked complete.
421
+
422
+ 🎉 Milestone [version] is 100% complete - all phases finished!
423
+
424
+ ⚡ Auto-continuing: Complete milestone and archive
425
+ ```
426
+
427
+ Exit skill and invoke SlashCommand("/gsd:complete-milestone [version]")
428
+
429
+ **If prompting:**
430
+
431
+ ```
432
+ Phase [X] marked complete.
433
+
434
+ 🎉 Milestone [version] is 100% complete - all phases finished!
435
+
436
+ What would you like to do?
437
+ 1. Complete milestone and archive (/gsd:complete-milestone [version])
438
+ 2. Review accomplishments
439
+ 3. Take a break (done for now)
440
+ ```
441
+
442
+ </step>
443
+
444
+ </process>
445
+
446
+ <implicit_tracking>
447
+ Progress tracking is IMPLICIT:
448
+
449
+ - "Plan phase 2" → Phase 1 must be done (or ask)
450
+ - "Plan phase 3" → Phases 1-2 must be done (or ask)
451
+ - Transition workflow makes it explicit in ROADMAP.md
452
+
453
+ No separate "update progress" step. Forward motion IS progress.
454
+ </implicit_tracking>
455
+
456
+ <partial_completion>
457
+ If user wants to move on but phase isn't fully complete:
458
+
459
+ ```
460
+ Phase [X] has incomplete plans:
461
+ - {phase}-02-PLAN.md (not executed)
462
+ - {phase}-03-PLAN.md (not executed)
463
+
464
+ Options:
465
+ 1. Mark complete anyway (plans weren't needed)
466
+ 2. Defer work to later phase
467
+ 3. Stay and finish current phase
468
+ ```
469
+
470
+ Respect user judgment - they know if work matters.
471
+
472
+ **If marking complete with incomplete plans:**
473
+
474
+ - Update ROADMAP: "2/3 plans complete" (not "3/3")
475
+ - Note in transition message which plans were skipped
476
+ </partial_completion>
477
+
478
+ <success_criteria>
479
+ Transition is complete when:
480
+
481
+ - [ ] Current phase plan summaries verified (all exist or user chose to skip)
482
+ - [ ] Any stale handoffs deleted
483
+ - [ ] ROADMAP.md updated with completion status and plan count
484
+ - [ ] STATE.md updated (position, blockers, alignment, session)
485
+ - [ ] Brief alignment check performed
486
+ - [ ] Progress table updated
487
+ - [ ] User knows next steps
488
+ </success_criteria>
package/package.json ADDED
@@ -0,0 +1,30 @@
1
+ {
2
+ "name": "get-shit-done-cc",
3
+ "version": "1.0.0",
4
+ "description": "A meta-prompting, context engineering and spec-driven development system for Claude Code by TÂCHES.",
5
+ "bin": {
6
+ "get-shit-done": "./bin/install.js"
7
+ },
8
+ "files": [
9
+ "bin",
10
+ "commands",
11
+ "get-shit-done"
12
+ ],
13
+ "keywords": [
14
+ "claude",
15
+ "claude-code",
16
+ "ai",
17
+ "meta-prompting",
18
+ "context-engineering",
19
+ "spec-driven-development"
20
+ ],
21
+ "author": "TÂCHES",
22
+ "license": "MIT",
23
+ "repository": {
24
+ "type": "git",
25
+ "url": "git+https://github.com/glittercowboy/get-shit-done.git"
26
+ },
27
+ "engines": {
28
+ "node": ">=16.7.0"
29
+ }
30
+ }