gsd-opencode 1.4.15 → 1.5.2
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/bin/install.js +1 -1
- package/command/gsd/add-phase.md +14 -12
- package/command/gsd/add-todo.md +8 -6
- package/command/gsd/check-todos.md +12 -10
- package/command/gsd/complete-milestone.md +8 -8
- package/command/gsd/consider-issues.md +5 -5
- package/command/gsd/create-roadmap.md +7 -7
- package/command/gsd/debug.md +4 -4
- package/command/gsd/discuss-milestone.md +4 -4
- package/command/gsd/discuss-phase.md +2 -2
- package/command/gsd/execute-phase.md +4 -4
- package/command/gsd/execute-plan.md +3 -3
- package/command/gsd/help.md +76 -76
- package/command/gsd/insert-phase.md +10 -10
- package/command/gsd/list-phase-assumptions.md +2 -2
- package/command/gsd/map-codebase.md +5 -5
- package/command/gsd/new-milestone.md +3 -3
- package/command/gsd/new-project.md +7 -7
- package/command/gsd/pause-work.md +3 -3
- package/command/gsd/plan-fix.md +6 -6
- package/command/gsd/plan-phase.md +5 -5
- package/command/gsd/progress.md +29 -29
- package/command/gsd/remove-phase.md +9 -7
- package/command/gsd/research-phase.md +2 -2
- package/command/gsd/resume-work.md +1 -1
- package/command/gsd/status.md +7 -7
- package/command/gsd/verify-work.md +3 -3
- package/get-shit-done/references/checkpoints.md +22 -22
- package/get-shit-done/references/continuation-format.md +28 -28
- package/get-shit-done/references/git-integration.md +4 -4
- package/get-shit-done/references/plan-format.md +25 -25
- package/get-shit-done/references/principles.md +14 -14
- package/get-shit-done/references/questioning.md +2 -2
- package/get-shit-done/references/research-pitfalls.md +2 -2
- package/get-shit-done/references/scope-estimation.md +3 -3
- package/get-shit-done/templates/DEBUG.md +7 -7
- package/get-shit-done/templates/agent-history.md +1 -1
- package/get-shit-done/templates/checkpoint-return.md +2 -2
- 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/context.md +4 -4
- package/get-shit-done/templates/continue-here.md +1 -1
- package/get-shit-done/templates/discovery.md +2 -2
- package/get-shit-done/templates/milestone-context.md +9 -9
- package/get-shit-done/templates/phase-prompt.md +4 -4
- package/get-shit-done/templates/project.md +2 -2
- package/get-shit-done/templates/research.md +2 -2
- package/get-shit-done/templates/state.md +3 -3
- package/get-shit-done/templates/uat-issues.md +7 -7
- package/get-shit-done/workflows/_archive/execute-phase.md +14 -14
- package/get-shit-done/workflows/complete-milestone.md +3 -3
- package/get-shit-done/workflows/create-milestone.md +9 -9
- package/get-shit-done/workflows/create-roadmap.md +6 -6
- package/get-shit-done/workflows/debug.md +4 -4
- package/get-shit-done/workflows/discovery-phase.md +4 -4
- package/get-shit-done/workflows/discuss-milestone.md +8 -8
- package/get-shit-done/workflows/discuss-phase.md +5 -5
- package/get-shit-done/workflows/execute-phase.md +5 -5
- package/get-shit-done/workflows/execute-plan.md +19 -19
- package/get-shit-done/workflows/list-phase-assumptions.md +11 -11
- package/get-shit-done/workflows/map-codebase.md +4 -4
- package/get-shit-done/workflows/plan-phase.md +13 -13
- package/get-shit-done/workflows/research-phase.md +13 -13
- package/get-shit-done/workflows/resume-project.md +14 -14
- package/get-shit-done/workflows/transition.md +8 -8
- package/get-shit-done/workflows/verify-work.md +4 -4
- package/package.json +1 -1
|
@@ -15,7 +15,7 @@ Each agent has fresh context and focuses on specific aspects. Output is concise
|
|
|
15
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
|
|
|
17
17
|
**Always include file paths:**
|
|
18
|
-
Documents are reference material for
|
|
18
|
+
Documents are reference material for OpenCode when planning/executing. Vague descriptions like "UserService handles users" are not actionable. Always include actual file paths formatted with backticks: `src/services/user.ts`. This allows OpenCode to navigate directly to relevant code without re-searching. Do NOT include line numbers (they go stale), just file paths.
|
|
19
19
|
</philosophy>
|
|
20
20
|
|
|
21
21
|
<process>
|
|
@@ -403,14 +403,14 @@ Created .planning/codebase/:
|
|
|
403
403
|
|
|
404
404
|
**Initialize project** — use codebase context for planning
|
|
405
405
|
|
|
406
|
-
`/gsd
|
|
406
|
+
`/gsd-new-project`
|
|
407
407
|
|
|
408
|
-
*`/
|
|
408
|
+
*`/new` first → fresh context window*
|
|
409
409
|
|
|
410
410
|
---
|
|
411
411
|
|
|
412
412
|
**Also available:**
|
|
413
|
-
- Re-run mapping: `/gsd
|
|
413
|
+
- Re-run mapping: `/gsd-map-codebase`
|
|
414
414
|
- Review specific file: `cat .planning/codebase/STACK.md`
|
|
415
415
|
- Edit any document before proceeding
|
|
416
416
|
|
|
@@ -32,7 +32,7 @@ Decimal phases enable urgent work insertion without renumbering:
|
|
|
32
32
|
<purpose>
|
|
33
33
|
Create executable phase prompts (PLAN.md files) optimized for parallel execution.
|
|
34
34
|
|
|
35
|
-
PLAN.md IS the prompt that
|
|
35
|
+
PLAN.md IS the prompt that OpenCode executes. Plans are grouped into execution waves based on dependencies - independent plans run in parallel, dependent plans wait for predecessors.
|
|
36
36
|
</purpose>
|
|
37
37
|
|
|
38
38
|
<planning_principles>
|
|
@@ -136,7 +136,7 @@ Read any existing PLAN.md or DISCOVERY.md in the phase directory.
|
|
|
136
136
|
|
|
137
137
|
If roadmap flagged `Research: Likely`, Level 0 (skip) is not available.
|
|
138
138
|
|
|
139
|
-
For niche domains (3D, games, audio, shaders, ML), suggest `/gsd
|
|
139
|
+
For niche domains (3D, games, audio, shaders, ML), suggest `/gsd-research-phase` before plan-phase.
|
|
140
140
|
</step>
|
|
141
141
|
|
|
142
142
|
<step name="read_project_history">
|
|
@@ -217,19 +217,19 @@ Understand:
|
|
|
217
217
|
- Phase goal (from roadmap)
|
|
218
218
|
- What exists already (scan codebase if mid-project)
|
|
219
219
|
- Dependencies met (previous phases complete?)
|
|
220
|
-
- Any {phase}-RESEARCH.md (from /gsd
|
|
220
|
+
- Any {phase}-RESEARCH.md (from /gsd-research-phase)
|
|
221
221
|
- Any DISCOVERY.md (from mandatory discovery)
|
|
222
|
-
- Any {phase}-CONTEXT.md (from /gsd
|
|
222
|
+
- Any {phase}-CONTEXT.md (from /gsd-discuss-phase)
|
|
223
223
|
|
|
224
224
|
```bash
|
|
225
225
|
# If mid-project, understand current state
|
|
226
226
|
ls -la src/ 2>/dev/null
|
|
227
227
|
cat package.json 2>/dev/null | head -20
|
|
228
228
|
|
|
229
|
-
# Check for ecosystem research (from /gsd
|
|
229
|
+
# Check for ecosystem research (from /gsd-research-phase)
|
|
230
230
|
cat .planning/phases/XX-name/${PHASE}-RESEARCH.md 2>/dev/null
|
|
231
231
|
|
|
232
|
-
# Check for phase context (from /gsd
|
|
232
|
+
# Check for phase context (from /gsd-discuss-phase)
|
|
233
233
|
cat .planning/phases/XX-name/${PHASE}-CONTEXT.md 2>/dev/null
|
|
234
234
|
```
|
|
235
235
|
|
|
@@ -237,7 +237,7 @@ cat .planning/phases/XX-name/${PHASE}-CONTEXT.md 2>/dev/null
|
|
|
237
237
|
|
|
238
238
|
**If CONTEXT.md exists:** Honor vision, prioritize essential, respect boundaries, incorporate specifics.
|
|
239
239
|
|
|
240
|
-
**If neither exist:** Suggest /gsd
|
|
240
|
+
**If neither exist:** Suggest /gsd-research-phase for niche domains, /gsd-discuss-phase for simpler domains, or proceed with roadmap only.
|
|
241
241
|
</step>
|
|
242
242
|
|
|
243
243
|
<step name="break_into_tasks">
|
|
@@ -560,7 +560,7 @@ domain: [optional]
|
|
|
560
560
|
---
|
|
561
561
|
```
|
|
562
562
|
|
|
563
|
-
**Wave is pre-computed:** Wave numbers are assigned during planning (see `assign_waves` step). `/gsd
|
|
563
|
+
**Wave is pre-computed:** Wave numbers are assigned during planning (see `assign_waves` step). `/gsd-execute-phase` reads `wave` directly from frontmatter and groups plans by wave number. No runtime dependency analysis needed.
|
|
564
564
|
|
|
565
565
|
**Context section - parallel-aware:**
|
|
566
566
|
|
|
@@ -638,20 +638,20 @@ Wave 2: {plan-03}
|
|
|
638
638
|
[If 1 plan created:]
|
|
639
639
|
**{phase}-01: [Plan Name]** - [objective summary]
|
|
640
640
|
|
|
641
|
-
`/gsd
|
|
641
|
+
`/gsd-execute-plan .planning/phases/XX-name/{phase}-01-PLAN.md`
|
|
642
642
|
|
|
643
643
|
[If 2+ plans created:]
|
|
644
644
|
**Phase {X}: [Phase Name]** - {N} plans in {M} waves
|
|
645
645
|
|
|
646
|
-
`/gsd
|
|
646
|
+
`/gsd-execute-phase {X}`
|
|
647
647
|
|
|
648
|
-
*`/
|
|
648
|
+
*`/new` first - fresh context window*
|
|
649
649
|
|
|
650
650
|
---
|
|
651
651
|
|
|
652
652
|
**Also available:**
|
|
653
653
|
- Review/adjust plans before executing
|
|
654
|
-
[If 2+ plans: - `/gsd
|
|
654
|
+
[If 2+ plans: - `/gsd-execute-plan {phase}-01-PLAN.md` - run plans one at a time]
|
|
655
655
|
[If 2+ plans: - View all plans: `ls .planning/phases/XX-name/*-PLAN.md`]
|
|
656
656
|
|
|
657
657
|
---
|
|
@@ -679,7 +679,7 @@ If you can't specify Files + Action + Verify + Done, the task is too vague.
|
|
|
679
679
|
- No acceptance criteria committees
|
|
680
680
|
- No sub-sub-sub tasks
|
|
681
681
|
- **No reflexive sequential chaining** (Plan 02 depends on 01 "just because")
|
|
682
|
-
Tasks are instructions for
|
|
682
|
+
Tasks are instructions for OpenCode, not Jira tickets.
|
|
683
683
|
</anti_patterns>
|
|
684
684
|
|
|
685
685
|
<success_criteria>
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
<purpose>
|
|
2
2
|
Comprehensive research on HOW to implement a phase before planning.
|
|
3
3
|
|
|
4
|
-
Triggered by /gsd
|
|
4
|
+
Triggered by /gsd-research-phase command when the domain is niche, complex, or OpenCode's training is likely stale.
|
|
5
5
|
|
|
6
6
|
Produces RESEARCH.md with ecosystem knowledge that informs quality planning - not just "which library" but "how do experts build this."
|
|
7
7
|
</purpose>
|
|
8
8
|
|
|
9
9
|
<when_to_use>
|
|
10
|
-
**This workflow is for domains where
|
|
10
|
+
**This workflow is for domains where OpenCode fails without research:**
|
|
11
11
|
- 3D graphics (Three.js, Babylon.js, procedural generation, level design)
|
|
12
12
|
- Game development (physics engines, collision, AI, ECS patterns)
|
|
13
13
|
- Audio/music (Web Audio, DSP, synthesis, MIDI)
|
|
14
14
|
- Shaders (GLSL, Metal, ISF, compute shaders)
|
|
15
15
|
- ML/AI integration (model serving, inference, vector DBs)
|
|
16
16
|
- Real-time systems (WebSockets, WebRTC, CRDT sync)
|
|
17
|
-
- Specialized frameworks with active ecosystems
|
|
17
|
+
- Specialized frameworks with active ecosystems OpenCode may not know
|
|
18
18
|
|
|
19
19
|
**Skip this for commodity domains:**
|
|
20
20
|
- Standard auth (JWT, OAuth)
|
|
@@ -32,7 +32,7 @@ For niche domains, the question isn't library selection - it's:
|
|
|
32
32
|
- What's the established architecture pattern?
|
|
33
33
|
- What libraries form the standard stack?
|
|
34
34
|
- What problems do people commonly hit?
|
|
35
|
-
- What's SOTA vs what
|
|
35
|
+
- What's SOTA vs what OpenCode thinks is SOTA?
|
|
36
36
|
- What should NOT be hand-rolled?
|
|
37
37
|
</key_insight>
|
|
38
38
|
|
|
@@ -53,7 +53,7 @@ fi
|
|
|
53
53
|
```
|
|
54
54
|
Error: Phase ${PHASE} not found in roadmap.
|
|
55
55
|
|
|
56
|
-
Use /gsd
|
|
56
|
+
Use /gsd-progress to see available phases.
|
|
57
57
|
```
|
|
58
58
|
Exit workflow.
|
|
59
59
|
|
|
@@ -103,7 +103,7 @@ Load available context to inform research direction:
|
|
|
103
103
|
cat .planning/PROJECT.md 2>/dev/null | head -50
|
|
104
104
|
```
|
|
105
105
|
|
|
106
|
-
**2. Phase context (if exists from /gsd
|
|
106
|
+
**2. Phase context (if exists from /gsd-discuss-phase):**
|
|
107
107
|
```bash
|
|
108
108
|
cat .planning/phases/${PHASE}-*/${PHASE}-CONTEXT.md 2>/dev/null
|
|
109
109
|
```
|
|
@@ -145,7 +145,7 @@ Categories to consider:
|
|
|
145
145
|
|
|
146
146
|
**1. Core Technology:**
|
|
147
147
|
- What's the primary technology/framework?
|
|
148
|
-
- What version is current? (
|
|
148
|
+
- What version is current? (OpenCode's training may be stale)
|
|
149
149
|
- What's the standard setup/toolchain?
|
|
150
150
|
|
|
151
151
|
**2. Ecosystem/Stack:**
|
|
@@ -193,7 +193,7 @@ Execute research systematically for each domain identified.
|
|
|
193
193
|
|
|
194
194
|
**CRITICAL: Source hierarchy - Context7 BEFORE WebSearch**
|
|
195
195
|
|
|
196
|
-
|
|
196
|
+
OpenCode's training data is 6-18 months stale. Treat pre-existing knowledge as hypothesis, not fact.
|
|
197
197
|
|
|
198
198
|
<research_protocol>
|
|
199
199
|
|
|
@@ -247,7 +247,7 @@ Execute research queries and document findings as you go:
|
|
|
247
247
|
|
|
248
248
|
**Core Technology Findings:**
|
|
249
249
|
- Current version: [from Context7]
|
|
250
|
-
- Key changes since [
|
|
250
|
+
- Key changes since [OpenCode's training]: [from docs/WebSearch]
|
|
251
251
|
- Setup approach: [verified pattern]
|
|
252
252
|
|
|
253
253
|
**Ecosystem Stack:**
|
|
@@ -292,7 +292,7 @@ Before creating RESEARCH.md, run through research-pitfalls.md checklist:
|
|
|
292
292
|
- [ ] "What might I have missed?" review completed
|
|
293
293
|
|
|
294
294
|
**Additional checks for ecosystem research:**
|
|
295
|
-
- [ ] Checked for libraries
|
|
295
|
+
- [ ] Checked for libraries OpenCode might not know about
|
|
296
296
|
- [ ] Verified version numbers are current
|
|
297
297
|
- [ ] Confirmed patterns still recommended (not deprecated)
|
|
298
298
|
- [ ] Looked for "don't do this" warnings in docs
|
|
@@ -371,7 +371,7 @@ Created: .planning/phases/${PHASE}-${SLUG}/${PHASE}-RESEARCH.md
|
|
|
371
371
|
**Confidence:** [HIGH/MEDIUM/LOW] - [brief reason]
|
|
372
372
|
|
|
373
373
|
What's next?
|
|
374
|
-
1. Plan this phase (/gsd
|
|
374
|
+
1. Plan this phase (/gsd-plan-phase ${PHASE}) - RESEARCH.md will be loaded automatically
|
|
375
375
|
2. Dig deeper - Research specific areas more thoroughly
|
|
376
376
|
3. Review full RESEARCH.md
|
|
377
377
|
4. Done for now
|
|
@@ -418,7 +418,7 @@ Confirm: "Committed: docs(${PHASE}): complete phase research"
|
|
|
418
418
|
</success_criteria>
|
|
419
419
|
|
|
420
420
|
<integration_with_planning>
|
|
421
|
-
When /gsd
|
|
421
|
+
When /gsd-plan-phase runs after research:
|
|
422
422
|
|
|
423
423
|
1. plan-phase detects RESEARCH.md exists in phase directory
|
|
424
424
|
2. RESEARCH.md loaded as @context reference
|
|
@@ -428,7 +428,7 @@ When /gsd:plan-phase runs after research:
|
|
|
428
428
|
6. "Architecture patterns" inform task structure
|
|
429
429
|
7. "Code examples" can be referenced in task actions
|
|
430
430
|
|
|
431
|
-
This produces higher quality plans because
|
|
431
|
+
This produces higher quality plans because OpenCode knows:
|
|
432
432
|
- What tools experts use
|
|
433
433
|
- What patterns to follow
|
|
434
434
|
- What mistakes to avoid
|
|
@@ -26,7 +26,7 @@ ls .planning/PROJECT.md 2>/dev/null && echo "Project file exists"
|
|
|
26
26
|
|
|
27
27
|
**If STATE.md exists:** Proceed to load_state
|
|
28
28
|
**If only ROADMAP.md/PROJECT.md exist:** Offer to reconstruct STATE.md
|
|
29
|
-
**If .planning/ doesn't exist:** This is a new project - route to /gsd
|
|
29
|
+
**If .planning/ doesn't exist:** This is a new project - route to /gsd-new-project
|
|
30
30
|
</step>
|
|
31
31
|
|
|
32
32
|
<step name="load_state">
|
|
@@ -121,7 +121,7 @@ Present complete project status to user:
|
|
|
121
121
|
Task: [task description from agent-history.json]
|
|
122
122
|
Interrupted: [timestamp]
|
|
123
123
|
|
|
124
|
-
Resume with: /gsd
|
|
124
|
+
Resume with: /gsd-resume-task
|
|
125
125
|
|
|
126
126
|
[If deferred issues exist:]
|
|
127
127
|
📋 [N] deferred issues awaiting attention
|
|
@@ -141,7 +141,7 @@ Present complete project status to user:
|
|
|
141
141
|
Based on project state, determine the most logical next action:
|
|
142
142
|
|
|
143
143
|
**If interrupted agent exists:**
|
|
144
|
-
→ Primary: Resume interrupted agent (/gsd
|
|
144
|
+
→ Primary: Resume interrupted agent (/gsd-resume-task)
|
|
145
145
|
→ Option: Start fresh (abandon agent work)
|
|
146
146
|
|
|
147
147
|
**If .continue-here file exists:**
|
|
@@ -178,15 +178,15 @@ Present contextual options based on project state:
|
|
|
178
178
|
What would you like to do?
|
|
179
179
|
|
|
180
180
|
[Primary action based on state - e.g.:]
|
|
181
|
-
1. Resume interrupted agent (/gsd
|
|
181
|
+
1. Resume interrupted agent (/gsd-resume-task) [if interrupted agent found]
|
|
182
182
|
OR
|
|
183
|
-
1. Resume from checkpoint (/gsd
|
|
183
|
+
1. Resume from checkpoint (/gsd-execute-plan .planning/phases/XX-name/.continue-here-02-01.md)
|
|
184
184
|
OR
|
|
185
|
-
1. Execute next plan (/gsd
|
|
185
|
+
1. Execute next plan (/gsd-execute-plan .planning/phases/XX-name/02-02-PLAN.md)
|
|
186
186
|
OR
|
|
187
|
-
1. Discuss Phase 3 context (/gsd
|
|
187
|
+
1. Discuss Phase 3 context (/gsd-discuss-phase 3) [if CONTEXT.md missing]
|
|
188
188
|
OR
|
|
189
|
-
1. Plan Phase 3 (/gsd
|
|
189
|
+
1. Plan Phase 3 (/gsd-plan-phase 3) [if CONTEXT.md exists or discuss option declined]
|
|
190
190
|
|
|
191
191
|
[Secondary options:]
|
|
192
192
|
2. Review current phase status
|
|
@@ -217,9 +217,9 @@ Based on user selection, route to appropriate workflow:
|
|
|
217
217
|
|
|
218
218
|
**{phase}-{plan}: [Plan Name]** — [objective from PLAN.md]
|
|
219
219
|
|
|
220
|
-
`/gsd
|
|
220
|
+
`/gsd-execute-plan [path]`
|
|
221
221
|
|
|
222
|
-
*`/
|
|
222
|
+
*`/new` first → fresh context window*
|
|
223
223
|
|
|
224
224
|
---
|
|
225
225
|
```
|
|
@@ -231,15 +231,15 @@ Based on user selection, route to appropriate workflow:
|
|
|
231
231
|
|
|
232
232
|
**Phase [N]: [Name]** — [Goal from ROADMAP.md]
|
|
233
233
|
|
|
234
|
-
`/gsd
|
|
234
|
+
`/gsd-plan-phase [phase-number]`
|
|
235
235
|
|
|
236
|
-
*`/
|
|
236
|
+
*`/new` first → fresh context window*
|
|
237
237
|
|
|
238
238
|
---
|
|
239
239
|
|
|
240
240
|
**Also available:**
|
|
241
|
-
- `/gsd
|
|
242
|
-
- `/gsd
|
|
241
|
+
- `/gsd-discuss-phase [N]` — gather context first
|
|
242
|
+
- `/gsd-research-phase [N]` — investigate unknowns
|
|
243
243
|
|
|
244
244
|
---
|
|
245
245
|
```
|
|
@@ -449,7 +449,7 @@ Next: Phase [X+1] — [Name]
|
|
|
449
449
|
⚡ Auto-continuing: Plan Phase [X+1] in detail
|
|
450
450
|
```
|
|
451
451
|
|
|
452
|
-
Exit skill and invoke [removed - use /command syntax]("/gsd
|
|
452
|
+
Exit skill and invoke [removed - use /command syntax]("/gsd-plan-phase [X+1]")
|
|
453
453
|
|
|
454
454
|
</if>
|
|
455
455
|
|
|
@@ -464,15 +464,15 @@ Exit skill and invoke [removed - use /command syntax]("/gsd:plan-phase [X+1]")
|
|
|
464
464
|
|
|
465
465
|
**Phase [X+1]: [Name]** — [Goal from ROADMAP.md]
|
|
466
466
|
|
|
467
|
-
`/gsd
|
|
467
|
+
`/gsd-plan-phase [X+1]`
|
|
468
468
|
|
|
469
|
-
*`/
|
|
469
|
+
*`/new` first → fresh context window*
|
|
470
470
|
|
|
471
471
|
---
|
|
472
472
|
|
|
473
473
|
**Also available:**
|
|
474
|
-
- `/gsd
|
|
475
|
-
- `/gsd
|
|
474
|
+
- `/gsd-discuss-phase [X+1]` — gather context first
|
|
475
|
+
- `/gsd-research-phase [X+1]` — investigate unknowns
|
|
476
476
|
- Review roadmap
|
|
477
477
|
|
|
478
478
|
---
|
|
@@ -494,7 +494,7 @@ Phase {X} marked complete.
|
|
|
494
494
|
⚡ Auto-continuing: Complete milestone and archive
|
|
495
495
|
```
|
|
496
496
|
|
|
497
|
-
Exit skill and invoke [removed - use /command syntax]("/gsd
|
|
497
|
+
Exit skill and invoke [removed - use /command syntax]("/gsd-complete-milestone {version}")
|
|
498
498
|
|
|
499
499
|
</if>
|
|
500
500
|
|
|
@@ -511,9 +511,9 @@ Exit skill and invoke [removed - use /command syntax]("/gsd:complete-milestone {
|
|
|
511
511
|
|
|
512
512
|
**Complete Milestone {version}** — archive and prepare for next
|
|
513
513
|
|
|
514
|
-
`/gsd
|
|
514
|
+
`/gsd-complete-milestone {version}`
|
|
515
515
|
|
|
516
|
-
*`/
|
|
516
|
+
*`/new` first → fresh context window*
|
|
517
517
|
|
|
518
518
|
---
|
|
519
519
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<purpose>
|
|
2
2
|
Guide manual user acceptance testing of recently built features. Extract deliverables from SUMMARY.md, generate test checklist, guide user through each test, log issues to phase-scoped file.
|
|
3
3
|
|
|
4
|
-
The USER performs all testing —
|
|
4
|
+
The USER performs all testing — OpenCode generates the checklist, guides the process, and captures issues.
|
|
5
5
|
</purpose>
|
|
6
6
|
|
|
7
7
|
<process>
|
|
@@ -137,7 +137,7 @@ If any issues found:
|
|
|
137
137
|
**Actual:** [What actually happened]
|
|
138
138
|
```
|
|
139
139
|
|
|
140
|
-
**Note:** Issues go to phase-scoped file, NOT global `.planning/ISSUES.md`. This keeps UAT findings tied to the specific work being tested and enables `/gsd
|
|
140
|
+
**Note:** Issues go to phase-scoped file, NOT global `.planning/ISSUES.md`. This keeps UAT findings tied to the specific work being tested and enables `/gsd-plan-fix` to address them.
|
|
141
141
|
</step>
|
|
142
142
|
|
|
143
143
|
<step name="summarize">
|
|
@@ -165,7 +165,7 @@ If any issues found:
|
|
|
165
165
|
## Next Steps
|
|
166
166
|
[Based on verdict:]
|
|
167
167
|
- If clean: Suggest proceeding to next phase
|
|
168
|
-
- If issues: Suggest /gsd
|
|
168
|
+
- If issues: Suggest /gsd-plan-fix to address
|
|
169
169
|
```
|
|
170
170
|
</step>
|
|
171
171
|
|
|
@@ -183,7 +183,7 @@ If all passed:
|
|
|
183
183
|
- "Done" — Finish testing session
|
|
184
184
|
|
|
185
185
|
If issues found:
|
|
186
|
-
- "Plan fixes" — Create plan to address issues (/gsd
|
|
186
|
+
- "Plan fixes" — Create plan to address issues (/gsd-plan-fix)
|
|
187
187
|
- "Log and continue" — Issues logged, proceed anyway
|
|
188
188
|
- "Review issues" — Look at logged issues in detail
|
|
189
189
|
- "Done" — Finish testing session
|