get-shit-done-cc 1.3.12 → 1.3.13
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.
|
@@ -46,7 +46,13 @@ If STATE.md missing but .planning/ exists, offer to reconstruct or continue with
|
|
|
46
46
|
</step>
|
|
47
47
|
|
|
48
48
|
<step name="load_codebase_context">
|
|
49
|
-
Check for
|
|
49
|
+
Check for codebase map:
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
ls .planning/codebase/*.md 2>/dev/null
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
**If .planning/codebase/ exists:** Load relevant documents based on phase type:
|
|
50
56
|
|
|
51
57
|
| Phase Keywords | Load These |
|
|
52
58
|
|----------------|------------|
|
|
@@ -63,7 +69,14 @@ Track extracted constraints for PLAN.md context section.
|
|
|
63
69
|
</step>
|
|
64
70
|
|
|
65
71
|
<step name="identify_phase">
|
|
66
|
-
Check roadmap and existing phases
|
|
72
|
+
Check roadmap and existing phases:
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
cat .planning/ROADMAP.md
|
|
76
|
+
ls .planning/phases/
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
If multiple phases available, ask which one to plan. If obvious (first incomplete phase), proceed.
|
|
67
80
|
|
|
68
81
|
**Phase number parsing:** Regex `^(\d+)(?:\.(\d+))?$` - Group 1: integer, Group 2: decimal (optional)
|
|
69
82
|
|
|
@@ -112,9 +125,21 @@ For niche domains (3D, games, audio, shaders, ML), suggest `/gsd:research-phase`
|
|
|
112
125
|
<step name="read_project_history">
|
|
113
126
|
**From STATE.md:** Decisions → constrain approach. Deferred issues → candidates. Blockers → may need to address.
|
|
114
127
|
|
|
115
|
-
**From prior summaries:**
|
|
128
|
+
**From prior summaries:**
|
|
129
|
+
|
|
130
|
+
```bash
|
|
131
|
+
ls .planning/phases/*/*-SUMMARY.md 2>/dev/null | sort
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
Scan for decisions constraining this phase, issues flagged for "later", warnings in "Next Phase Readiness", patterns to maintain.
|
|
135
|
+
|
|
136
|
+
**From ISSUES.md:**
|
|
116
137
|
|
|
117
|
-
|
|
138
|
+
```bash
|
|
139
|
+
cat .planning/ISSUES.md 2>/dev/null
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
Assess each open issue - relevant to this phase? Waiting long enough? Natural to address now? Blocking something?
|
|
118
143
|
|
|
119
144
|
**Answer before proceeding:**
|
|
120
145
|
- Q1: What decisions from previous phases constrain this phase?
|
|
@@ -134,6 +159,18 @@ Understand:
|
|
|
134
159
|
- Any DISCOVERY.md (from mandatory discovery)
|
|
135
160
|
- Any {phase}-CONTEXT.md (from /gsd:discuss-phase)
|
|
136
161
|
|
|
162
|
+
```bash
|
|
163
|
+
# If mid-project, understand current state
|
|
164
|
+
ls -la src/ 2>/dev/null
|
|
165
|
+
cat package.json 2>/dev/null | head -20
|
|
166
|
+
|
|
167
|
+
# Check for ecosystem research (from /gsd:research-phase)
|
|
168
|
+
cat .planning/phases/XX-name/${PHASE}-RESEARCH.md 2>/dev/null
|
|
169
|
+
|
|
170
|
+
# Check for phase context (from /gsd:discuss-phase)
|
|
171
|
+
cat .planning/phases/XX-name/${PHASE}-CONTEXT.md 2>/dev/null
|
|
172
|
+
```
|
|
173
|
+
|
|
137
174
|
**If RESEARCH.md exists:** Use standard_stack (these libraries), architecture_patterns (follow in task structure), dont_hand_roll (NEVER custom solutions for listed problems), common_pitfalls (inform verification), code_examples (reference in actions).
|
|
138
175
|
|
|
139
176
|
**If CONTEXT.md exists:** Honor vision, prioritize essential, respect boundaries, incorporate specifics.
|
|
@@ -201,15 +238,6 @@ Wait for confirmation. If "adjust": revise. If "start over": return to gather_ph
|
|
|
201
238
|
</if>
|
|
202
239
|
</step>
|
|
203
240
|
|
|
204
|
-
<step name="decision_gate">
|
|
205
|
-
<if mode="yolo">Auto-approve and proceed.</if>
|
|
206
|
-
<if mode="interactive">
|
|
207
|
-
Ask: "Ready to create the phase prompt, or ask more questions?"
|
|
208
|
-
Options: Create phase prompt / Ask more questions / Let me add context
|
|
209
|
-
Loop until "Create phase prompt" selected.
|
|
210
|
-
</if>
|
|
211
|
-
</step>
|
|
212
|
-
|
|
213
241
|
<step name="write_phase_prompt">
|
|
214
242
|
Use template from `~/.claude/get-shit-done/templates/phase-prompt.md`.
|
|
215
243
|
|
package/package.json
CHANGED