@undeemed/get-shit-done-codex 1.6.12 → 1.20.3
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.
- package/README.md +40 -7
- package/agents/gsd-codebase-mapper.md +761 -0
- package/agents/gsd-debugger.md +1198 -0
- package/agents/gsd-executor.md +419 -0
- package/agents/gsd-integration-checker.md +423 -0
- package/agents/gsd-phase-researcher.md +469 -0
- package/agents/gsd-plan-checker.md +622 -0
- package/agents/gsd-planner.md +1159 -0
- package/agents/gsd-project-researcher.md +618 -0
- package/agents/gsd-research-synthesizer.md +236 -0
- package/agents/gsd-roadmapper.md +639 -0
- package/agents/gsd-verifier.md +541 -0
- package/bin/install.js +108 -102
- package/commands/gsd/add-phase.md +17 -185
- package/commands/gsd/add-todo.md +23 -163
- package/commands/gsd/audit-milestone.md +3 -219
- package/commands/gsd/check-todos.md +20 -196
- package/commands/gsd/cleanup.md +18 -0
- package/commands/gsd/complete-milestone.md +2 -2
- package/commands/gsd/debug.md +13 -0
- package/commands/gsd/discuss-phase.md +13 -6
- package/commands/gsd/execute-phase.md +4 -266
- package/commands/gsd/health.md +22 -0
- package/commands/gsd/help.md +8 -369
- package/commands/gsd/insert-phase.md +9 -203
- package/commands/gsd/join-discord.md +18 -0
- package/commands/gsd/list-phase-assumptions.md +4 -4
- package/commands/gsd/map-codebase.md +1 -1
- package/commands/gsd/new-milestone.md +16 -682
- package/commands/gsd/new-project.md +12 -866
- package/commands/gsd/new-project.md.bak +1041 -0
- package/commands/gsd/pause-work.md +17 -105
- package/commands/gsd/plan-milestone-gaps.md +3 -247
- package/commands/gsd/plan-phase.md +13 -444
- package/commands/gsd/progress.md +5 -337
- package/commands/gsd/quick.md +40 -0
- package/commands/gsd/reapply-patches.md +110 -0
- package/commands/gsd/remove-phase.md +9 -315
- package/commands/gsd/research-phase.md +27 -20
- package/commands/gsd/resume-work.md +2 -2
- package/commands/gsd/set-profile.md +34 -0
- package/commands/gsd/settings.md +36 -0
- package/commands/gsd/update.md +25 -160
- package/commands/gsd/verify-work.md +6 -186
- package/get-shit-done/bin/gsd-tools.cjs +5243 -0
- package/get-shit-done/bin/gsd-tools.test.cjs +2273 -0
- package/get-shit-done/references/checkpoints.md +270 -283
- package/get-shit-done/references/decimal-phase-calculation.md +65 -0
- package/get-shit-done/references/git-integration.md +7 -13
- package/get-shit-done/references/git-planning-commit.md +38 -0
- package/get-shit-done/references/model-profile-resolution.md +34 -0
- package/get-shit-done/references/model-profiles.md +92 -0
- package/get-shit-done/references/phase-argument-parsing.md +61 -0
- package/get-shit-done/references/planning-config.md +196 -0
- package/get-shit-done/references/questioning.md +5 -1
- package/get-shit-done/references/verification-patterns.md +17 -0
- package/get-shit-done/templates/DEBUG.md +4 -4
- package/get-shit-done/templates/UAT.md +1 -1
- package/get-shit-done/templates/codebase/architecture.md +1 -1
- package/get-shit-done/templates/codebase/concerns.md +1 -1
- package/get-shit-done/templates/codebase/conventions.md +1 -1
- package/get-shit-done/templates/codebase/structure.md +9 -9
- package/get-shit-done/templates/config.json +10 -0
- package/get-shit-done/templates/context.md +7 -15
- package/get-shit-done/templates/continue-here.md +1 -1
- package/get-shit-done/templates/phase-prompt.md +32 -41
- package/get-shit-done/templates/planner-subagent-prompt.md +4 -4
- package/get-shit-done/templates/project.md +1 -1
- package/get-shit-done/templates/research-project/ARCHITECTURE.md +1 -1
- package/get-shit-done/templates/research.md +27 -4
- package/get-shit-done/templates/state.md +1 -31
- package/get-shit-done/templates/summary-complex.md +59 -0
- package/get-shit-done/templates/summary-minimal.md +41 -0
- package/get-shit-done/templates/summary-standard.md +48 -0
- package/get-shit-done/templates/summary.md +5 -28
- package/get-shit-done/templates/user-setup.md +8 -20
- package/get-shit-done/templates/verification-report.md +3 -3
- package/get-shit-done/workflows/add-phase.md +111 -0
- package/get-shit-done/workflows/add-todo.md +157 -0
- package/get-shit-done/workflows/audit-milestone.md +242 -0
- package/get-shit-done/workflows/check-todos.md +176 -0
- package/get-shit-done/workflows/cleanup.md +152 -0
- package/get-shit-done/workflows/complete-milestone.md +225 -301
- package/get-shit-done/workflows/diagnose-issues.md +3 -17
- package/get-shit-done/workflows/discovery-phase.md +11 -15
- package/get-shit-done/workflows/discuss-phase.md +105 -42
- package/get-shit-done/workflows/execute-phase.md +205 -349
- package/get-shit-done/workflows/execute-plan.md +179 -1569
- package/get-shit-done/workflows/health.md +156 -0
- package/get-shit-done/workflows/help.md +486 -0
- package/get-shit-done/workflows/insert-phase.md +129 -0
- package/get-shit-done/workflows/list-phase-assumptions.md +9 -9
- package/get-shit-done/workflows/map-codebase.md +56 -18
- package/get-shit-done/workflows/new-milestone.md +373 -0
- package/get-shit-done/workflows/new-project.md +1113 -0
- package/get-shit-done/workflows/pause-work.md +122 -0
- package/get-shit-done/workflows/plan-milestone-gaps.md +256 -0
- package/get-shit-done/workflows/plan-phase.md +448 -0
- package/get-shit-done/workflows/progress.md +393 -0
- package/get-shit-done/workflows/quick.md +444 -0
- package/get-shit-done/workflows/remove-phase.md +154 -0
- package/get-shit-done/workflows/research-phase.md +74 -0
- package/get-shit-done/workflows/resume-project.md +18 -23
- package/get-shit-done/workflows/set-profile.md +80 -0
- package/get-shit-done/workflows/settings.md +200 -0
- package/get-shit-done/workflows/transition.md +78 -103
- package/get-shit-done/workflows/update.md +214 -0
- package/get-shit-done/workflows/verify-phase.md +109 -496
- package/get-shit-done/workflows/verify-work.md +22 -15
- package/hooks/dist/gsd-check-update.js +66 -0
- package/hooks/dist/gsd-statusline.js +91 -0
- package/package.json +19 -3
- package/scripts/build-hooks.js +42 -0
- package/commands/gsd/whats-new.md +0 -124
|
@@ -10,114 +10,26 @@ allowed-tools:
|
|
|
10
10
|
<objective>
|
|
11
11
|
Create `.continue-here.md` handoff file to preserve complete work state across sessions.
|
|
12
12
|
|
|
13
|
-
|
|
13
|
+
Routes to the pause-work workflow which handles:
|
|
14
|
+
- Current phase detection from recent files
|
|
15
|
+
- Complete state gathering (position, completed work, remaining work, decisions, blockers)
|
|
16
|
+
- Handoff file creation with all context sections
|
|
17
|
+
- Git commit as WIP
|
|
18
|
+
- Resume instructions
|
|
14
19
|
</objective>
|
|
15
20
|
|
|
16
|
-
<
|
|
21
|
+
<execution_context>
|
|
17
22
|
@.planning/STATE.md
|
|
18
|
-
|
|
23
|
+
@~/.codex/get-shit-done/workflows/pause-work.md
|
|
24
|
+
</execution_context>
|
|
19
25
|
|
|
20
26
|
<process>
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
1. **Current position**: Which phase, which plan, which task
|
|
30
|
-
2. **Work completed**: What got done this session
|
|
31
|
-
3. **Work remaining**: What's left in current plan/phase
|
|
32
|
-
4. **Decisions made**: Key decisions and rationale
|
|
33
|
-
5. **Blockers/issues**: Anything stuck
|
|
34
|
-
6. **Mental context**: The approach, next steps, "vibe"
|
|
35
|
-
7. **Files modified**: What's changed but not committed
|
|
36
|
-
|
|
37
|
-
Ask user for clarifications if needed.
|
|
38
|
-
</step>
|
|
39
|
-
|
|
40
|
-
<step name="write">
|
|
41
|
-
**Write handoff to `.planning/phases/XX-name/.continue-here.md`:**
|
|
42
|
-
|
|
43
|
-
```markdown
|
|
44
|
-
---
|
|
45
|
-
phase: XX-name
|
|
46
|
-
task: 3
|
|
47
|
-
total_tasks: 7
|
|
48
|
-
status: in_progress
|
|
49
|
-
last_updated: [timestamp]
|
|
50
|
-
---
|
|
51
|
-
|
|
52
|
-
<current_state>
|
|
53
|
-
[Where exactly are we? Immediate context]
|
|
54
|
-
</current_state>
|
|
55
|
-
|
|
56
|
-
<completed_work>
|
|
57
|
-
|
|
58
|
-
- Task 1: [name] - Done
|
|
59
|
-
- Task 2: [name] - Done
|
|
60
|
-
- Task 3: [name] - In progress, [what's done]
|
|
61
|
-
</completed_work>
|
|
62
|
-
|
|
63
|
-
<remaining_work>
|
|
64
|
-
|
|
65
|
-
- Task 3: [what's left]
|
|
66
|
-
- Task 4: Not started
|
|
67
|
-
- Task 5: Not started
|
|
68
|
-
</remaining_work>
|
|
69
|
-
|
|
70
|
-
<decisions_made>
|
|
71
|
-
|
|
72
|
-
- Decided to use [X] because [reason]
|
|
73
|
-
- Chose [approach] over [alternative] because [reason]
|
|
74
|
-
</decisions_made>
|
|
75
|
-
|
|
76
|
-
<blockers>
|
|
77
|
-
- [Blocker 1]: [status/workaround]
|
|
78
|
-
</blockers>
|
|
79
|
-
|
|
80
|
-
<context>
|
|
81
|
-
[Mental state, what were you thinking, the plan]
|
|
82
|
-
</context>
|
|
83
|
-
|
|
84
|
-
<next_action>
|
|
85
|
-
Start with: [specific first action when resuming]
|
|
86
|
-
</next_action>
|
|
87
|
-
```
|
|
88
|
-
|
|
89
|
-
Be specific enough for a fresh Claude to understand immediately.
|
|
90
|
-
</step>
|
|
91
|
-
|
|
92
|
-
<step name="commit">
|
|
93
|
-
```bash
|
|
94
|
-
git add .planning/phases/*/.continue-here.md
|
|
95
|
-
git commit -m "wip: [phase-name] paused at task [X]/[Y]"
|
|
96
|
-
```
|
|
97
|
-
</step>
|
|
98
|
-
|
|
99
|
-
<step name="confirm">
|
|
100
|
-
```
|
|
101
|
-
✓ Handoff created: .planning/phases/[XX-name]/.continue-here.md
|
|
102
|
-
|
|
103
|
-
Current state:
|
|
104
|
-
|
|
105
|
-
- Phase: [XX-name]
|
|
106
|
-
- Task: [X] of [Y]
|
|
107
|
-
- Status: [in_progress/blocked]
|
|
108
|
-
- Committed as WIP
|
|
109
|
-
|
|
110
|
-
To resume: /gsd:resume-work
|
|
111
|
-
|
|
112
|
-
```
|
|
113
|
-
</step>
|
|
114
|
-
|
|
27
|
+
**Follow the pause-work workflow** from `@~/.codex/get-shit-done/workflows/pause-work.md`.
|
|
28
|
+
|
|
29
|
+
The workflow handles all logic including:
|
|
30
|
+
1. Phase directory detection
|
|
31
|
+
2. State gathering with user clarifications
|
|
32
|
+
3. Handoff file writing with timestamp
|
|
33
|
+
4. Git commit
|
|
34
|
+
5. Confirmation with resume instructions
|
|
115
35
|
</process>
|
|
116
|
-
|
|
117
|
-
<success_criteria>
|
|
118
|
-
- [ ] .continue-here.md created in correct phase directory
|
|
119
|
-
- [ ] All sections filled with specific content
|
|
120
|
-
- [ ] Committed as WIP
|
|
121
|
-
- [ ] User knows location and how to resume
|
|
122
|
-
</success_criteria>
|
|
123
|
-
```
|
|
@@ -9,7 +9,6 @@ allowed-tools:
|
|
|
9
9
|
- Grep
|
|
10
10
|
- AskUserQuestion
|
|
11
11
|
---
|
|
12
|
-
|
|
13
12
|
<objective>
|
|
14
13
|
Create all phases necessary to close gaps identified by `/gsd:audit-milestone`.
|
|
15
14
|
|
|
@@ -19,7 +18,7 @@ One command creates all fix phases — no manual `/gsd:add-phase` per gap.
|
|
|
19
18
|
</objective>
|
|
20
19
|
|
|
21
20
|
<execution_context>
|
|
22
|
-
|
|
21
|
+
@~/.codex/get-shit-done/workflows/plan-milestone-gaps.md
|
|
23
22
|
</execution_context>
|
|
24
23
|
|
|
25
24
|
<context>
|
|
@@ -36,249 +35,6 @@ Glob: .planning/v*-MILESTONE-AUDIT.md (use most recent)
|
|
|
36
35
|
</context>
|
|
37
36
|
|
|
38
37
|
<process>
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
```bash
|
|
43
|
-
# Find the most recent audit file
|
|
44
|
-
ls -t .planning/v*-MILESTONE-AUDIT.md 2>/dev/null | head -1
|
|
45
|
-
```
|
|
46
|
-
|
|
47
|
-
Parse YAML frontmatter to extract structured gaps:
|
|
48
|
-
- `gaps.requirements` — unsatisfied requirements
|
|
49
|
-
- `gaps.integration` — missing cross-phase connections
|
|
50
|
-
- `gaps.flows` — broken E2E flows
|
|
51
|
-
|
|
52
|
-
If no audit file exists or has no gaps, error:
|
|
53
|
-
```
|
|
54
|
-
No audit gaps found. Run `/gsd:audit-milestone` first.
|
|
55
|
-
```
|
|
56
|
-
|
|
57
|
-
## 2. Prioritize Gaps
|
|
58
|
-
|
|
59
|
-
Group gaps by priority from REQUIREMENTS.md:
|
|
60
|
-
|
|
61
|
-
| Priority | Action |
|
|
62
|
-
|----------|--------|
|
|
63
|
-
| `must` | Create phase, blocks milestone |
|
|
64
|
-
| `should` | Create phase, recommended |
|
|
65
|
-
| `nice` | Ask user: include or defer? |
|
|
66
|
-
|
|
67
|
-
For integration/flow gaps, infer priority from affected requirements.
|
|
68
|
-
|
|
69
|
-
## 3. Group Gaps into Phases
|
|
70
|
-
|
|
71
|
-
Cluster related gaps into logical phases:
|
|
72
|
-
|
|
73
|
-
**Grouping rules:**
|
|
74
|
-
- Same affected phase → combine into one fix phase
|
|
75
|
-
- Same subsystem (auth, API, UI) → combine
|
|
76
|
-
- Dependency order (fix stubs before wiring)
|
|
77
|
-
- Keep phases focused: 2-4 tasks each
|
|
78
|
-
|
|
79
|
-
**Example grouping:**
|
|
80
|
-
```
|
|
81
|
-
Gap: DASH-01 unsatisfied (Dashboard doesn't fetch)
|
|
82
|
-
Gap: Integration Phase 1→3 (Auth not passed to API calls)
|
|
83
|
-
Gap: Flow "View dashboard" broken at data fetch
|
|
84
|
-
|
|
85
|
-
→ Phase 6: "Wire Dashboard to API"
|
|
86
|
-
- Add fetch to Dashboard.tsx
|
|
87
|
-
- Include auth header in fetch
|
|
88
|
-
- Handle response, update state
|
|
89
|
-
- Render user data
|
|
90
|
-
```
|
|
91
|
-
|
|
92
|
-
## 4. Determine Phase Numbers
|
|
93
|
-
|
|
94
|
-
Find highest existing phase:
|
|
95
|
-
```bash
|
|
96
|
-
ls -d .planning/phases/*/ | sort -V | tail -1
|
|
97
|
-
```
|
|
98
|
-
|
|
99
|
-
New phases continue from there:
|
|
100
|
-
- If Phase 5 is highest, gaps become Phase 6, 7, 8...
|
|
101
|
-
|
|
102
|
-
## 5. Present Gap Closure Plan
|
|
103
|
-
|
|
104
|
-
```markdown
|
|
105
|
-
## Gap Closure Plan
|
|
106
|
-
|
|
107
|
-
**Milestone:** {version}
|
|
108
|
-
**Gaps to close:** {N} requirements, {M} integration, {K} flows
|
|
109
|
-
|
|
110
|
-
### Proposed Phases
|
|
111
|
-
|
|
112
|
-
**Phase {N}: {Name}**
|
|
113
|
-
Closes:
|
|
114
|
-
- {REQ-ID}: {description}
|
|
115
|
-
- Integration: {from} → {to}
|
|
116
|
-
Tasks: {count}
|
|
117
|
-
|
|
118
|
-
**Phase {N+1}: {Name}**
|
|
119
|
-
Closes:
|
|
120
|
-
- {REQ-ID}: {description}
|
|
121
|
-
- Flow: {flow name}
|
|
122
|
-
Tasks: {count}
|
|
123
|
-
|
|
124
|
-
{If nice-to-have gaps exist:}
|
|
125
|
-
|
|
126
|
-
### Deferred (nice-to-have)
|
|
127
|
-
|
|
128
|
-
These gaps are optional. Include them?
|
|
129
|
-
- {gap description}
|
|
130
|
-
- {gap description}
|
|
131
|
-
|
|
132
|
-
---
|
|
133
|
-
|
|
134
|
-
Create these {X} phases? (yes / adjust / defer all optional)
|
|
135
|
-
```
|
|
136
|
-
|
|
137
|
-
Wait for user confirmation.
|
|
138
|
-
|
|
139
|
-
## 6. Update ROADMAP.md
|
|
140
|
-
|
|
141
|
-
Add new phases to current milestone:
|
|
142
|
-
|
|
143
|
-
```markdown
|
|
144
|
-
### Phase {N}: {Name}
|
|
145
|
-
**Goal:** {derived from gaps being closed}
|
|
146
|
-
**Requirements:** {REQ-IDs being satisfied}
|
|
147
|
-
**Gap Closure:** Closes gaps from audit
|
|
148
|
-
|
|
149
|
-
### Phase {N+1}: {Name}
|
|
150
|
-
...
|
|
151
|
-
```
|
|
152
|
-
|
|
153
|
-
## 7. Create Phase Directories
|
|
154
|
-
|
|
155
|
-
```bash
|
|
156
|
-
mkdir -p ".planning/phases/{NN}-{name}"
|
|
157
|
-
```
|
|
158
|
-
|
|
159
|
-
## 8. Commit Roadmap Update
|
|
160
|
-
|
|
161
|
-
```bash
|
|
162
|
-
git add .planning/ROADMAP.md
|
|
163
|
-
git commit -m "docs(roadmap): add gap closure phases {N}-{M}"
|
|
164
|
-
```
|
|
165
|
-
|
|
166
|
-
## 9. Offer Next Steps
|
|
167
|
-
|
|
168
|
-
```markdown
|
|
169
|
-
## ✓ Gap Closure Phases Created
|
|
170
|
-
|
|
171
|
-
**Phases added:** {N} - {M}
|
|
172
|
-
**Gaps addressed:** {count} requirements, {count} integration, {count} flows
|
|
173
|
-
|
|
174
|
-
---
|
|
175
|
-
|
|
176
|
-
## ▶ Next Up
|
|
177
|
-
|
|
178
|
-
**Plan first gap closure phase**
|
|
179
|
-
|
|
180
|
-
`/gsd:plan-phase {N}`
|
|
181
|
-
|
|
182
|
-
<sub>`/clear` first → fresh context window</sub>
|
|
183
|
-
|
|
184
|
-
---
|
|
185
|
-
|
|
186
|
-
**Also available:**
|
|
187
|
-
- `/gsd:execute-phase {N}` — if plans already exist
|
|
188
|
-
- `cat .planning/ROADMAP.md` — see updated roadmap
|
|
189
|
-
|
|
190
|
-
---
|
|
191
|
-
|
|
192
|
-
**After all gap phases complete:**
|
|
193
|
-
|
|
194
|
-
`/gsd:audit-milestone` — re-audit to verify gaps closed
|
|
195
|
-
`/gsd:complete-milestone {version}` — archive when audit passes
|
|
196
|
-
```
|
|
197
|
-
|
|
38
|
+
Execute the plan-milestone-gaps workflow from @~/.codex/get-shit-done/workflows/plan-milestone-gaps.md end-to-end.
|
|
39
|
+
Preserve all workflow gates (audit loading, prioritization, phase grouping, user confirmation, roadmap updates).
|
|
198
40
|
</process>
|
|
199
|
-
|
|
200
|
-
<gap_to_phase_mapping>
|
|
201
|
-
|
|
202
|
-
## How Gaps Become Tasks
|
|
203
|
-
|
|
204
|
-
**Requirement gap → Tasks:**
|
|
205
|
-
```yaml
|
|
206
|
-
gap:
|
|
207
|
-
id: DASH-01
|
|
208
|
-
description: "User sees their data"
|
|
209
|
-
reason: "Dashboard exists but doesn't fetch from API"
|
|
210
|
-
missing:
|
|
211
|
-
- "useEffect with fetch to /api/user/data"
|
|
212
|
-
- "State for user data"
|
|
213
|
-
- "Render user data in JSX"
|
|
214
|
-
|
|
215
|
-
becomes:
|
|
216
|
-
|
|
217
|
-
phase: "Wire Dashboard Data"
|
|
218
|
-
tasks:
|
|
219
|
-
- name: "Add data fetching"
|
|
220
|
-
files: [src/components/Dashboard.tsx]
|
|
221
|
-
action: "Add useEffect that fetches /api/user/data on mount"
|
|
222
|
-
|
|
223
|
-
- name: "Add state management"
|
|
224
|
-
files: [src/components/Dashboard.tsx]
|
|
225
|
-
action: "Add useState for userData, loading, error states"
|
|
226
|
-
|
|
227
|
-
- name: "Render user data"
|
|
228
|
-
files: [src/components/Dashboard.tsx]
|
|
229
|
-
action: "Replace placeholder with userData.map rendering"
|
|
230
|
-
```
|
|
231
|
-
|
|
232
|
-
**Integration gap → Tasks:**
|
|
233
|
-
```yaml
|
|
234
|
-
gap:
|
|
235
|
-
from_phase: 1
|
|
236
|
-
to_phase: 3
|
|
237
|
-
connection: "Auth token → API calls"
|
|
238
|
-
reason: "Dashboard API calls don't include auth header"
|
|
239
|
-
missing:
|
|
240
|
-
- "Auth header in fetch calls"
|
|
241
|
-
- "Token refresh on 401"
|
|
242
|
-
|
|
243
|
-
becomes:
|
|
244
|
-
|
|
245
|
-
phase: "Add Auth to Dashboard API Calls"
|
|
246
|
-
tasks:
|
|
247
|
-
- name: "Add auth header to fetches"
|
|
248
|
-
files: [src/components/Dashboard.tsx, src/lib/api.ts]
|
|
249
|
-
action: "Include Authorization header with token in all API calls"
|
|
250
|
-
|
|
251
|
-
- name: "Handle 401 responses"
|
|
252
|
-
files: [src/lib/api.ts]
|
|
253
|
-
action: "Add interceptor to refresh token or redirect to login on 401"
|
|
254
|
-
```
|
|
255
|
-
|
|
256
|
-
**Flow gap → Tasks:**
|
|
257
|
-
```yaml
|
|
258
|
-
gap:
|
|
259
|
-
name: "User views dashboard after login"
|
|
260
|
-
broken_at: "Dashboard data load"
|
|
261
|
-
reason: "No fetch call"
|
|
262
|
-
missing:
|
|
263
|
-
- "Fetch user data on mount"
|
|
264
|
-
- "Display loading state"
|
|
265
|
-
- "Render user data"
|
|
266
|
-
|
|
267
|
-
becomes:
|
|
268
|
-
|
|
269
|
-
# Usually same phase as requirement/integration gap
|
|
270
|
-
# Flow gaps often overlap with other gap types
|
|
271
|
-
```
|
|
272
|
-
|
|
273
|
-
</gap_to_phase_mapping>
|
|
274
|
-
|
|
275
|
-
<success_criteria>
|
|
276
|
-
- [ ] MILESTONE-AUDIT.md loaded and gaps parsed
|
|
277
|
-
- [ ] Gaps prioritized (must/should/nice)
|
|
278
|
-
- [ ] Gaps grouped into logical phases
|
|
279
|
-
- [ ] User confirmed phase plan
|
|
280
|
-
- [ ] ROADMAP.md updated with new phases
|
|
281
|
-
- [ ] Phase directories created
|
|
282
|
-
- [ ] Changes committed
|
|
283
|
-
- [ ] User knows to run `/gsd:plan-phase` next
|
|
284
|
-
</success_criteria>
|