gsd-opencode 1.10.2 → 1.20.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 (164) hide show
  1. package/agents/gsd-codebase-mapper.md +29 -3
  2. package/agents/gsd-debugger.md +19 -21
  3. package/agents/gsd-executor.md +213 -528
  4. package/agents/gsd-integration-checker.md +20 -0
  5. package/agents/gsd-phase-researcher.md +189 -267
  6. package/agents/gsd-plan-checker.md +278 -279
  7. package/agents/gsd-planner.md +299 -490
  8. package/agents/gsd-project-researcher.md +103 -345
  9. package/agents/gsd-research-synthesizer.md +5 -22
  10. package/agents/gsd-roadmapper.md +43 -6
  11. package/agents/gsd-verifier.md +158 -377
  12. package/{lib → bin/dm/lib}/constants.js +10 -3
  13. package/{src → bin/dm/src}/commands/install.js +5 -4
  14. package/{src → bin/dm/src}/commands/uninstall.js +3 -1
  15. package/{src → bin/dm/src}/services/backup-manager.js +1 -1
  16. package/{src → bin/dm/src}/services/config.js +1 -1
  17. package/{src → bin/dm/src}/services/file-ops.js +20 -4
  18. package/{src → bin/dm/src}/services/health-checker.js +3 -1
  19. package/{src → bin/dm/src}/services/repair-service.js +3 -1
  20. package/{src → bin/dm/src}/services/settings.js +1 -1
  21. package/{src → bin/dm/src}/services/update-service.js +2 -2
  22. package/bin/gsd-install.js +0 -0
  23. package/bin/gsd.js +9 -9
  24. package/commands/gsd/gsd-add-phase.md +43 -0
  25. package/commands/gsd/gsd-add-todo.md +47 -0
  26. package/commands/gsd/gsd-audit-milestone.md +36 -0
  27. package/commands/gsd/gsd-check-todos.md +45 -0
  28. package/commands/gsd/gsd-cleanup.md +18 -0
  29. package/commands/gsd/{complete-milestone.md → gsd-complete-milestone.md} +1 -1
  30. package/commands/gsd/{debug.md → gsd-debug.md} +16 -21
  31. package/commands/gsd/{discuss-phase.md → gsd-discuss-phase.md} +6 -9
  32. package/commands/gsd/gsd-execute-phase.md +41 -0
  33. package/commands/gsd/gsd-health.md +22 -0
  34. package/commands/gsd/gsd-help.md +22 -0
  35. package/commands/gsd/gsd-insert-phase.md +32 -0
  36. package/commands/gsd/gsd-join-discord.md +18 -0
  37. package/commands/gsd/{list-phase-assumptions.md → gsd-list-phase-assumptions.md} +3 -7
  38. package/commands/gsd/{map-codebase.md → gsd-map-codebase.md} +3 -3
  39. package/commands/gsd/gsd-new-milestone.md +44 -0
  40. package/commands/gsd/gsd-new-project.md +42 -0
  41. package/commands/gsd/gsd-pause-work.md +38 -0
  42. package/commands/gsd/gsd-plan-milestone-gaps.md +34 -0
  43. package/commands/gsd/gsd-plan-phase.md +44 -0
  44. package/commands/gsd/gsd-progress.md +24 -0
  45. package/commands/gsd/gsd-quick.md +41 -0
  46. package/commands/gsd/gsd-reapply-patches.md +119 -0
  47. package/commands/gsd/gsd-remove-phase.md +31 -0
  48. package/commands/gsd/{research-phase.md → gsd-research-phase.md} +38 -49
  49. package/commands/gsd/{resume-work.md → gsd-resume-work.md} +2 -2
  50. package/commands/gsd/gsd-set-profile.md +34 -0
  51. package/commands/gsd/gsd-settings.md +36 -0
  52. package/commands/gsd/gsd-update.md +37 -0
  53. package/commands/gsd/gsd-verify-work.md +38 -0
  54. package/get-shit-done/bin/gsd-tools.cjs +553 -0
  55. package/get-shit-done/bin/gsd-tools.test.cjs +2346 -0
  56. package/get-shit-done/bin/lib/commands.cjs +556 -0
  57. package/get-shit-done/bin/lib/config.cjs +162 -0
  58. package/get-shit-done/bin/lib/core.cjs +377 -0
  59. package/get-shit-done/bin/lib/frontmatter.cjs +299 -0
  60. package/get-shit-done/bin/lib/init.cjs +694 -0
  61. package/get-shit-done/bin/lib/milestone.cjs +215 -0
  62. package/get-shit-done/bin/lib/phase.cjs +877 -0
  63. package/get-shit-done/bin/lib/roadmap.cjs +298 -0
  64. package/get-shit-done/bin/lib/state.cjs +490 -0
  65. package/get-shit-done/bin/lib/template.cjs +222 -0
  66. package/get-shit-done/bin/lib/verify.cjs +772 -0
  67. package/get-shit-done/references/checkpoints.md +62 -364
  68. package/get-shit-done/references/decimal-phase-calculation.md +65 -0
  69. package/get-shit-done/references/git-integration.md +10 -16
  70. package/get-shit-done/references/git-planning-commit.md +38 -0
  71. package/get-shit-done/references/model-profile-resolution.md +34 -0
  72. package/get-shit-done/references/model-profiles.md +54 -66
  73. package/get-shit-done/references/phase-argument-parsing.md +61 -0
  74. package/get-shit-done/references/planning-config.md +112 -10
  75. package/get-shit-done/references/questioning.md +4 -0
  76. package/get-shit-done/references/ui-brand.md +1 -1
  77. package/get-shit-done/templates/UAT.md +1 -1
  78. package/get-shit-done/templates/VALIDATION.md +104 -0
  79. package/get-shit-done/templates/codebase/structure.md +6 -6
  80. package/get-shit-done/templates/config.json +37 -0
  81. package/get-shit-done/templates/context.md +2 -10
  82. package/get-shit-done/templates/continue-here.md +6 -6
  83. package/get-shit-done/templates/debug-subagent-prompt.md +2 -2
  84. package/get-shit-done/templates/discovery.md +6 -6
  85. package/get-shit-done/templates/milestone-archive.md +3 -3
  86. package/get-shit-done/templates/phase-prompt.md +9 -7
  87. package/get-shit-done/templates/planner-subagent-prompt.md +6 -6
  88. package/get-shit-done/templates/research-project/ARCHITECTURE.md +1 -1
  89. package/get-shit-done/templates/research.md +29 -6
  90. package/get-shit-done/templates/roadmap.md +1 -1
  91. package/get-shit-done/templates/state.md +0 -30
  92. package/get-shit-done/templates/summary-complex.md +59 -0
  93. package/get-shit-done/templates/summary-minimal.md +41 -0
  94. package/get-shit-done/templates/summary-standard.md +48 -0
  95. package/get-shit-done/templates/summary.md +16 -37
  96. package/get-shit-done/templates/user-setup.md +1 -13
  97. package/get-shit-done/templates/verification-report.md +5 -5
  98. package/get-shit-done/workflows/add-phase.md +111 -0
  99. package/{commands/gsd → get-shit-done/workflows}/add-todo.md +24 -60
  100. package/{commands/gsd → get-shit-done/workflows}/audit-milestone.md +83 -63
  101. package/{commands/gsd → get-shit-done/workflows}/check-todos.md +21 -73
  102. package/get-shit-done/workflows/cleanup.md +152 -0
  103. package/get-shit-done/workflows/complete-milestone.md +251 -312
  104. package/get-shit-done/workflows/diagnose-issues.md +6 -31
  105. package/get-shit-done/workflows/discovery-phase.md +11 -11
  106. package/get-shit-done/workflows/discuss-phase.md +156 -49
  107. package/get-shit-done/workflows/execute-phase.md +238 -396
  108. package/get-shit-done/workflows/execute-plan.md +180 -1609
  109. package/get-shit-done/workflows/health.md +156 -0
  110. package/{commands/gsd → get-shit-done/workflows}/help.md +33 -35
  111. package/get-shit-done/workflows/insert-phase.md +129 -0
  112. package/get-shit-done/workflows/list-phase-assumptions.md +3 -3
  113. package/get-shit-done/workflows/map-codebase.md +73 -80
  114. package/get-shit-done/workflows/new-milestone.md +382 -0
  115. package/{commands/gsd → get-shit-done/workflows}/new-project.md +281 -234
  116. package/get-shit-done/workflows/oc-set-profile.md +320 -0
  117. package/{commands/gsd → get-shit-done/workflows}/pause-work.md +31 -43
  118. package/{commands/gsd → get-shit-done/workflows}/plan-milestone-gaps.md +29 -50
  119. package/get-shit-done/workflows/plan-phase.md +478 -0
  120. package/{commands/gsd → get-shit-done/workflows}/progress.md +64 -47
  121. package/get-shit-done/workflows/quick.md +453 -0
  122. package/get-shit-done/workflows/remove-phase.md +154 -0
  123. package/get-shit-done/workflows/research-phase.md +73 -0
  124. package/get-shit-done/workflows/resume-project.md +17 -26
  125. package/get-shit-done/workflows/set-profile.md +80 -0
  126. package/get-shit-done/workflows/settings.md +213 -0
  127. package/get-shit-done/workflows/transition.md +84 -104
  128. package/{commands/gsd → get-shit-done/workflows}/update.md +70 -28
  129. package/get-shit-done/workflows/verify-phase.md +106 -492
  130. package/get-shit-done/workflows/verify-work.md +26 -53
  131. package/package.json +7 -4
  132. package/rules/gsd-oc-work-hard.md +36 -0
  133. package/skills/gsd-oc-select-model/SKILL.md +348 -0
  134. package/skills/gsd-oc-select-model/scripts/select-models.cjs +268 -0
  135. package/agents/gsd-set-model.md +0 -287
  136. package/agents/gsd-set-profile.md +0 -239
  137. package/agents/gsd-settings.md +0 -749
  138. package/bin/install.js +0 -323
  139. package/commands/gsd/add-phase.md +0 -207
  140. package/commands/gsd/execute-phase.md +0 -339
  141. package/commands/gsd/insert-phase.md +0 -227
  142. package/commands/gsd/new-milestone.md +0 -721
  143. package/commands/gsd/plan-phase.md +0 -525
  144. package/commands/gsd/quick.md +0 -309
  145. package/commands/gsd/remove-phase.md +0 -349
  146. package/commands/gsd/set-model.md +0 -77
  147. package/commands/gsd/set-profile.md +0 -46
  148. package/commands/gsd/settings.md +0 -33
  149. package/commands/gsd/verify-work.md +0 -219
  150. package/commands/gsd/whats-new.md +0 -124
  151. /package/{src → bin/dm/src}/commands/check.js +0 -0
  152. /package/{src → bin/dm/src}/commands/config.js +0 -0
  153. /package/{src → bin/dm/src}/commands/list.js +0 -0
  154. /package/{src → bin/dm/src}/commands/repair.js +0 -0
  155. /package/{src → bin/dm/src}/commands/update.js +0 -0
  156. /package/{src → bin/dm/src}/services/manifest-manager.js +0 -0
  157. /package/{src → bin/dm/src}/services/migration-service.js +0 -0
  158. /package/{src → bin/dm/src}/services/scope-manager.js +0 -0
  159. /package/{src → bin/dm/src}/services/structure-detector.js +0 -0
  160. /package/{src → bin/dm/src}/utils/hash.js +0 -0
  161. /package/{src → bin/dm/src}/utils/interactive.js +0 -0
  162. /package/{src → bin/dm/src}/utils/logger.js +0 -0
  163. /package/{src → bin/dm/src}/utils/npm-registry.js +0 -0
  164. /package/{src → bin/dm/src}/utils/path-resolver.js +0 -0
@@ -2,10 +2,10 @@
2
2
  name: gsd-research-phase
3
3
  description: Research how to implement a phase (standalone - usually use /gsd-plan-phase instead)
4
4
  argument-hint: "[phase]"
5
- tools:
5
+ allowed-tools:
6
6
  - read
7
7
  - bash
8
-
8
+ - task
9
9
  ---
10
10
 
11
11
  <objective>
@@ -20,51 +20,37 @@ Research how to implement a phase. Spawns gsd-phase-researcher agent with phase
20
20
 
21
21
  **Orchestrator role:** Parse phase, validate against roadmap, check existing research, gather context, spawn researcher agent, present results.
22
22
 
23
- **Why subagent:** Research burns context fast (webfetch, Context7 queries, source verification). Fresh 200k context for investigation. Main context stays lean for user interaction.
23
+ **Why subagent:** Research burns context fast (websearch, Context7 queries, source verification). Fresh 200k context for investigation. Main context stays lean for user interaction.
24
24
  </objective>
25
25
 
26
26
  <context>
27
- Phase number: `$ARGUMENTS` (required)
27
+ Phase number: $ARGUMENTS (required)
28
28
 
29
29
  Normalize phase input in step 1 before any directory lookups.
30
30
  </context>
31
31
 
32
32
  <process>
33
33
 
34
- ## 0. Resolve Model Profile
35
-
36
- read model profile for agent spawning:
34
+ ## 0. Initialize Context
37
35
 
38
36
  ```bash
39
- MODEL_PROFILE=$(cat .planning/config.json 2>/dev/null | grep -o '"model_profile"[[:space:]]*:[[:space:]]*"[^"]*"' | grep -o '"[^"]*"$' | tr -d '"' || echo "balanced")
37
+ INIT=$(node ~/.config/opencode/get-shit-done/bin/gsd-tools.cjs init phase-op "$ARGUMENTS")
40
38
  ```
41
39
 
42
- Default to "balanced" if not set.
43
-
44
- **Model lookup table:**
40
+ Extract from init JSON: `phase_dir`, `phase_number`, `phase_name`, `phase_found`, `commit_docs`, `has_research`, `state_path`, `requirements_path`, `context_path`, `research_path`.
45
41
 
46
- | Agent | quality | balanced | budget |
47
- |-------|---------|----------|--------|
48
- | gsd-phase-researcher | opus | sonnet | haiku |
49
-
50
- Store resolved model for use in Task calls below.
42
+ Resolve researcher model:
43
+ ```bash
44
+ RESEARCHER_MODEL=$(node ~/.config/opencode/get-shit-done/bin/gsd-tools.cjs resolve-model gsd-phase-researcher --raw)
45
+ ```
51
46
 
52
- ## 1. Normalize and Validate Phase
47
+ ## 1. Validate Phase
53
48
 
54
49
  ```bash
55
- # Normalize phase number (8 08, but preserve decimals like 2.1 → 02.1)
56
- if [[ "$ARGUMENTS" =~ ^[0-9]+$ ]]; then
57
- PHASE=$(printf "%02d" "$ARGUMENTS")
58
- elif [[ "$ARGUMENTS" =~ ^([0-9]+)\.([0-9]+)$ ]]; then
59
- PHASE=$(printf "%02d.%s" "${BASH_REMATCH[1]}" "${BASH_REMATCH[2]}")
60
- else
61
- PHASE="$ARGUMENTS"
62
- fi
63
-
64
- grep -A5 "Phase ${PHASE}:" .planning/ROADMAP.md 2>/dev/null
50
+ PHASE_INFO=$(node ~/.config/opencode/get-shit-done/bin/gsd-tools.cjs roadmap get-phase "${phase_number}")
65
51
  ```
66
52
 
67
- **If not found:** Error and exit. **If found:** Extract phase number, name, description.
53
+ **If `found` is false:** Error and exit. **If `found` is true:** Extract `phase_number`, `phase_name`, `goal` from JSON.
68
54
 
69
55
  ## 2. Check Existing Research
70
56
 
@@ -78,14 +64,12 @@ ls .planning/phases/${PHASE}-*/RESEARCH.md 2>/dev/null
78
64
 
79
65
  ## 3. Gather Phase Context
80
66
 
81
- ```bash
82
- grep -A20 "Phase ${PHASE}:" .planning/ROADMAP.md
83
- cat .planning/REQUIREMENTS.md 2>/dev/null
84
- cat .planning/phases/${PHASE}-*/${PHASE}-CONTEXT.md 2>/dev/null
85
- grep -A30 "### Decisions Made" .planning/STATE.md 2>/dev/null
86
- ```
67
+ Use paths from INIT (do not inline file contents in orchestrator context):
68
+ - `requirements_path`
69
+ - `context_path`
70
+ - `state_path`
87
71
 
88
- Present summary with phase description, requirements, prior decisions.
72
+ Present summary with phase description and what files the researcher will load.
89
73
 
90
74
  ## 4. Spawn gsd-phase-researcher Agent
91
75
 
@@ -114,20 +98,23 @@ Research implementation approach for Phase {phase_number}: {phase_name}
114
98
  Mode: ecosystem
115
99
  </objective>
116
100
 
117
- <context>
101
+ <files_to_read>
102
+ - {requirements_path} (Requirements)
103
+ - {context_path} (Phase context from discuss-phase, if exists)
104
+ - {state_path} (Prior project decisions and blockers)
105
+ </files_to_read>
106
+
107
+ <additional_context>
118
108
  **Phase description:** {phase_description}
119
- **Requirements:** {requirements_list}
120
- **Prior decisions:** {decisions_if_any}
121
- **Phase context:** {context_md_content}
122
- </context>
109
+ </additional_context>
123
110
 
124
111
  <downstream_consumer>
125
112
  Your RESEARCH.md will be loaded by `/gsd-plan-phase` which uses specific sections:
126
113
  - `## Standard Stack` → Plans use these libraries
127
- - `## Architecture Patterns` → Task structure follows these
114
+ - `## Architecture Patterns` → task structure follows these
128
115
  - `## Don't Hand-Roll` → Tasks NEVER build custom solutions for listed problems
129
116
  - `## Common Pitfalls` → Verification steps check for these
130
- - `## Code Examples` → Task actions reference these patterns
117
+ - `## Code Examples` → task actions reference these patterns
131
118
 
132
119
  Be prescriptive, not exploratory. "Use X" not "Consider X or Y."
133
120
  </downstream_consumer>
@@ -147,9 +134,9 @@ write to: .planning/phases/${PHASE}-{slug}/${PHASE}-RESEARCH.md
147
134
  ```
148
135
 
149
136
  ```
150
- Task(
151
- prompt=filled_prompt,
152
- subagent_type="gsd-phase-researcher",
137
+ task(
138
+ prompt="First, read ~/.config/opencode/agents/gsd-phase-researcher.md for your role and instructions.\n\n" + filled_prompt,
139
+ subagent_type="task",
153
140
  model="{researcher_model}",
154
141
  description="Research Phase {phase}"
155
142
  )
@@ -171,7 +158,9 @@ Continue research for Phase {phase_number}: {phase_name}
171
158
  </objective>
172
159
 
173
160
  <prior_state>
174
- Research file: @.planning/phases/${PHASE}-{slug}/${PHASE}-RESEARCH.md
161
+ <files_to_read>
162
+ - .planning/phases/${PHASE}-{slug}/${PHASE}-RESEARCH.md (Existing research)
163
+ </files_to_read>
175
164
  </prior_state>
176
165
 
177
166
  <checkpoint_response>
@@ -181,9 +170,9 @@ Research file: @.planning/phases/${PHASE}-{slug}/${PHASE}-RESEARCH.md
181
170
  ```
182
171
 
183
172
  ```
184
- Task(
185
- prompt=continuation_prompt,
186
- subagent_type="gsd-phase-researcher",
173
+ task(
174
+ prompt="First, read ~/.config/opencode/agents/gsd-phase-researcher.md for your role and instructions.\n\n" + continuation_prompt,
175
+ subagent_type="task",
187
176
  model="{researcher_model}",
188
177
  description="Continue research Phase {phase}"
189
178
  )
@@ -1,12 +1,12 @@
1
1
  ---
2
2
  name: gsd-resume-work
3
3
  description: Resume work from previous session with full context restoration
4
- tools:
4
+ allowed-tools:
5
5
  - read
6
6
  - bash
7
7
  - write
8
8
  - question
9
- - Command
9
+ - command
10
10
  ---
11
11
 
12
12
  <objective>
@@ -0,0 +1,34 @@
1
+ ---
2
+ name: gsd-set-profile
3
+ description: Switch model profile for GSD agents (simple/smart/genius)
4
+ argument-hint: <profile>
5
+ allowed-tools:
6
+ - read
7
+ - write
8
+ - bash
9
+ ---
10
+
11
+ <objective>
12
+ Switch the model profile used by GSD agents. Controls which OpenCode model each agent uses, balancing quality vs token spend.
13
+
14
+ Routes to the set-profile workflow which handles:
15
+ - Argument validation (simple/smart/genius)
16
+ - Config file creation if missing
17
+ - Profile update in config.json
18
+ - Confirmation with model table display
19
+ </objective>
20
+
21
+ <execution_context>
22
+ @~/.config/opencode/get-shit-done/workflows/oc-set-profile.md
23
+ </execution_context>
24
+
25
+ <process>
26
+ **Follow the set-profile workflow** from `@~/.config/opencode/get-shit-done/workflows/oc-set-profile.md`.
27
+
28
+ The workflow handles all logic including:
29
+ 1. Profile argument validation
30
+ 2. Config file ensuring
31
+ 3. Config reading and updating
32
+ 4. Model table generation from MODEL_PROFILES
33
+ 5. Confirmation display
34
+ </process>
@@ -0,0 +1,36 @@
1
+ ---
2
+ name: gsd-settings
3
+ description: Configure GSD workflow toggles and model profile
4
+ allowed-tools:
5
+ - read
6
+ - write
7
+ - bash
8
+ - question
9
+ ---
10
+
11
+ <objective>
12
+ Interactive configuration of GSD workflow agents and model profile via multi-question prompt.
13
+
14
+ Routes to the settings workflow which handles:
15
+ - Config existence ensuring
16
+ - Current settings reading and parsing
17
+ - Interactive 5-question prompt (model, research, plan_check, verifier, branching)
18
+ - Config merging and writing
19
+ - Confirmation display with quick command references
20
+ </objective>
21
+
22
+ <execution_context>
23
+ @~/.config/opencode/get-shit-done/workflows/settings.md
24
+ </execution_context>
25
+
26
+ <process>
27
+ **Follow the settings workflow** from `@~/.config/opencode/get-shit-done/workflows/settings.md`.
28
+
29
+ The workflow handles all logic including:
30
+ 1. Config file creation with defaults if missing
31
+ 2. Current config reading
32
+ 3. Interactive settings presentation with pre-selection
33
+ 4. Answer parsing and config merging
34
+ 5. File writing
35
+ 6. Confirmation display
36
+ </process>
@@ -0,0 +1,37 @@
1
+ ---
2
+ name: gsd-update
3
+ description: Update GSD to latest version with changelog display
4
+ allowed-tools:
5
+ - bash
6
+ - question
7
+ ---
8
+
9
+ <objective>
10
+ Check for GSD updates, install if available, and display what changed.
11
+
12
+ Routes to the update workflow which handles:
13
+ - Version detection (local vs global installation)
14
+ - npm version checking
15
+ - Changelog fetching and display
16
+ - User confirmation with clean install warning
17
+ - Update execution and cache clearing
18
+ - Restart reminder
19
+ </objective>
20
+
21
+ <execution_context>
22
+ @~/.config/opencode/get-shit-done/workflows/update.md
23
+ </execution_context>
24
+
25
+ <process>
26
+ **Follow the update workflow** from `@~/.config/opencode/get-shit-done/workflows/update.md`.
27
+
28
+ The workflow handles all logic including:
29
+ 1. Installed version detection (local/global)
30
+ 2. Latest version checking via npm
31
+ 3. Version comparison
32
+ 4. Changelog fetching and extraction
33
+ 5. Clean install warning display
34
+ 6. User confirmation
35
+ 7. Update execution
36
+ 8. Cache clearing
37
+ </process>
@@ -0,0 +1,38 @@
1
+ ---
2
+ name: gsd-verify-work
3
+ description: Validate built features through conversational UAT
4
+ argument-hint: "[phase number, e.g., '4']"
5
+ allowed-tools:
6
+ - read
7
+ - bash
8
+ - glob
9
+ - grep
10
+ - edit
11
+ - write
12
+ - task
13
+ ---
14
+ <objective>
15
+ Validate built features through conversational testing with persistent state.
16
+
17
+ Purpose: Confirm what OpenCode built actually works from user's perspective. One test at a time, plain text responses, no interrogation. When issues are found, automatically diagnose, plan fixes, and prepare for execution.
18
+
19
+ Output: {phase_num}-UAT.md tracking all test results. If issues found: diagnosed gaps, verified fix plans ready for /gsd-execute-phase
20
+ </objective>
21
+
22
+ <execution_context>
23
+ @~/.config/opencode/get-shit-done/workflows/verify-work.md
24
+ @~/.config/opencode/get-shit-done/templates/UAT.md
25
+ </execution_context>
26
+
27
+ <context>
28
+ Phase: $ARGUMENTS (optional)
29
+ - If provided: Test specific phase (e.g., "4")
30
+ - If not provided: Check for active sessions or prompt for phase
31
+
32
+ Context files are resolved inside the workflow (`init verify-work`) and delegated via `<files_to_read>` blocks.
33
+ </context>
34
+
35
+ <process>
36
+ Execute the verify-work workflow from @~/.config/opencode/get-shit-done/workflows/verify-work.md end-to-end.
37
+ Preserve all workflow gates (session management, test presentation, diagnosis, fix planning, routing).
38
+ </process>