gsd-opencode 1.22.1 → 1.30.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.
- package/agents/gsd-advisor-researcher.md +112 -0
- package/agents/gsd-assumptions-analyzer.md +110 -0
- package/agents/gsd-codebase-mapper.md +0 -2
- package/agents/gsd-debugger.md +118 -2
- package/agents/gsd-executor.md +24 -4
- package/agents/gsd-integration-checker.md +0 -2
- package/agents/gsd-nyquist-auditor.md +0 -2
- package/agents/gsd-phase-researcher.md +150 -5
- package/agents/gsd-plan-checker.md +70 -5
- package/agents/gsd-planner.md +49 -4
- package/agents/gsd-project-researcher.md +28 -3
- package/agents/gsd-research-synthesizer.md +0 -2
- package/agents/gsd-roadmapper.md +29 -2
- package/agents/gsd-ui-auditor.md +445 -0
- package/agents/gsd-ui-checker.md +305 -0
- package/agents/gsd-ui-researcher.md +368 -0
- package/agents/gsd-user-profiler.md +173 -0
- package/agents/gsd-verifier.md +123 -4
- package/commands/gsd/gsd-add-backlog.md +76 -0
- package/commands/gsd/gsd-audit-uat.md +24 -0
- package/commands/gsd/gsd-autonomous.md +41 -0
- package/commands/gsd/gsd-debug.md +5 -0
- package/commands/gsd/gsd-discuss-phase.md +10 -36
- package/commands/gsd/gsd-do.md +30 -0
- package/commands/gsd/gsd-execute-phase.md +20 -2
- package/commands/gsd/gsd-fast.md +30 -0
- package/commands/gsd/gsd-forensics.md +56 -0
- package/commands/gsd/gsd-list-workspaces.md +19 -0
- package/commands/gsd/gsd-manager.md +39 -0
- package/commands/gsd/gsd-milestone-summary.md +51 -0
- package/commands/gsd/gsd-new-workspace.md +44 -0
- package/commands/gsd/gsd-next.md +24 -0
- package/commands/gsd/gsd-note.md +34 -0
- package/commands/gsd/gsd-plan-phase.md +3 -1
- package/commands/gsd/gsd-plant-seed.md +28 -0
- package/commands/gsd/gsd-pr-branch.md +25 -0
- package/commands/gsd/gsd-profile-user.md +46 -0
- package/commands/gsd/gsd-quick.md +4 -2
- package/commands/gsd/gsd-reapply-patches.md +9 -8
- package/commands/gsd/gsd-remove-workspace.md +26 -0
- package/commands/gsd/gsd-research-phase.md +5 -0
- package/commands/gsd/gsd-review-backlog.md +61 -0
- package/commands/gsd/gsd-review.md +37 -0
- package/commands/gsd/gsd-session-report.md +19 -0
- package/commands/gsd/gsd-set-profile.md +24 -23
- package/commands/gsd/gsd-ship.md +23 -0
- package/commands/gsd/gsd-stats.md +18 -0
- package/commands/gsd/gsd-thread.md +127 -0
- package/commands/gsd/gsd-ui-phase.md +34 -0
- package/commands/gsd/gsd-ui-review.md +32 -0
- package/commands/gsd/gsd-workstreams.md +66 -0
- package/get-shit-done/bin/gsd-tools.cjs +410 -84
- package/get-shit-done/bin/lib/commands.cjs +429 -18
- package/get-shit-done/bin/lib/config.cjs +318 -45
- package/get-shit-done/bin/lib/core.cjs +822 -84
- package/get-shit-done/bin/lib/frontmatter.cjs +78 -41
- package/get-shit-done/bin/lib/init.cjs +836 -104
- package/get-shit-done/bin/lib/milestone.cjs +44 -33
- package/get-shit-done/bin/lib/model-profiles.cjs +68 -0
- package/get-shit-done/bin/lib/phase.cjs +293 -306
- package/get-shit-done/bin/lib/profile-output.cjs +952 -0
- package/get-shit-done/bin/lib/profile-pipeline.cjs +539 -0
- package/get-shit-done/bin/lib/roadmap.cjs +55 -24
- package/get-shit-done/bin/lib/security.cjs +382 -0
- package/get-shit-done/bin/lib/state.cjs +363 -53
- package/get-shit-done/bin/lib/template.cjs +2 -2
- package/get-shit-done/bin/lib/uat.cjs +282 -0
- package/get-shit-done/bin/lib/verify.cjs +104 -36
- package/get-shit-done/bin/lib/workstream.cjs +491 -0
- package/get-shit-done/references/checkpoints.md +12 -10
- package/get-shit-done/references/decimal-phase-calculation.md +2 -3
- package/get-shit-done/references/git-integration.md +47 -0
- package/get-shit-done/references/model-profile-resolution.md +2 -0
- package/get-shit-done/references/model-profiles.md +62 -16
- package/get-shit-done/references/phase-argument-parsing.md +2 -2
- package/get-shit-done/references/planning-config.md +3 -1
- package/get-shit-done/references/user-profiling.md +681 -0
- package/get-shit-done/references/workstream-flag.md +58 -0
- package/get-shit-done/templates/UAT.md +21 -3
- package/get-shit-done/templates/UI-SPEC.md +100 -0
- package/get-shit-done/templates/claude-md.md +122 -0
- package/get-shit-done/templates/config.json +10 -3
- package/get-shit-done/templates/context.md +61 -6
- package/get-shit-done/templates/dev-preferences.md +21 -0
- package/get-shit-done/templates/discussion-log.md +63 -0
- package/get-shit-done/templates/phase-prompt.md +46 -5
- package/get-shit-done/templates/project.md +2 -0
- package/get-shit-done/templates/state.md +2 -2
- package/get-shit-done/templates/user-profile.md +146 -0
- package/get-shit-done/workflows/add-phase.md +2 -2
- package/get-shit-done/workflows/add-tests.md +4 -4
- package/get-shit-done/workflows/add-todo.md +3 -3
- package/get-shit-done/workflows/audit-milestone.md +13 -5
- package/get-shit-done/workflows/audit-uat.md +109 -0
- package/get-shit-done/workflows/autonomous.md +891 -0
- package/get-shit-done/workflows/check-todos.md +2 -2
- package/get-shit-done/workflows/cleanup.md +4 -4
- package/get-shit-done/workflows/complete-milestone.md +9 -6
- package/get-shit-done/workflows/diagnose-issues.md +15 -3
- package/get-shit-done/workflows/discovery-phase.md +3 -3
- package/get-shit-done/workflows/discuss-phase-assumptions.md +653 -0
- package/get-shit-done/workflows/discuss-phase.md +411 -38
- package/get-shit-done/workflows/do.md +104 -0
- package/get-shit-done/workflows/execute-phase.md +405 -18
- package/get-shit-done/workflows/execute-plan.md +77 -12
- package/get-shit-done/workflows/fast.md +105 -0
- package/get-shit-done/workflows/forensics.md +265 -0
- package/get-shit-done/workflows/health.md +28 -6
- package/get-shit-done/workflows/help.md +124 -7
- package/get-shit-done/workflows/insert-phase.md +2 -2
- package/get-shit-done/workflows/list-phase-assumptions.md +2 -2
- package/get-shit-done/workflows/list-workspaces.md +56 -0
- package/get-shit-done/workflows/manager.md +362 -0
- package/get-shit-done/workflows/map-codebase.md +74 -13
- package/get-shit-done/workflows/milestone-summary.md +223 -0
- package/get-shit-done/workflows/new-milestone.md +120 -18
- package/get-shit-done/workflows/new-project.md +178 -39
- package/get-shit-done/workflows/new-workspace.md +237 -0
- package/get-shit-done/workflows/next.md +97 -0
- package/get-shit-done/workflows/node-repair.md +92 -0
- package/get-shit-done/workflows/note.md +156 -0
- package/get-shit-done/workflows/pause-work.md +62 -8
- package/get-shit-done/workflows/plan-milestone-gaps.md +4 -5
- package/get-shit-done/workflows/plan-phase.md +332 -33
- package/get-shit-done/workflows/plant-seed.md +169 -0
- package/get-shit-done/workflows/pr-branch.md +129 -0
- package/get-shit-done/workflows/profile-user.md +450 -0
- package/get-shit-done/workflows/progress.md +145 -20
- package/get-shit-done/workflows/quick.md +205 -49
- package/get-shit-done/workflows/remove-phase.md +2 -2
- package/get-shit-done/workflows/remove-workspace.md +90 -0
- package/get-shit-done/workflows/research-phase.md +11 -3
- package/get-shit-done/workflows/resume-project.md +35 -16
- package/get-shit-done/workflows/review.md +228 -0
- package/get-shit-done/workflows/session-report.md +146 -0
- package/get-shit-done/workflows/set-profile.md +2 -2
- package/get-shit-done/workflows/settings.md +79 -10
- package/get-shit-done/workflows/ship.md +228 -0
- package/get-shit-done/workflows/stats.md +60 -0
- package/get-shit-done/workflows/transition.md +147 -20
- package/get-shit-done/workflows/ui-phase.md +302 -0
- package/get-shit-done/workflows/ui-review.md +165 -0
- package/get-shit-done/workflows/update.md +108 -25
- package/get-shit-done/workflows/validate-phase.md +15 -8
- package/get-shit-done/workflows/verify-phase.md +16 -5
- package/get-shit-done/workflows/verify-work.md +72 -18
- package/package.json +1 -1
- package/skills/gsd-audit-milestone/SKILL.md +29 -0
- package/skills/gsd-cleanup/SKILL.md +19 -0
- package/skills/gsd-complete-milestone/SKILL.md +131 -0
- package/skills/gsd-discuss-phase/SKILL.md +54 -0
- package/skills/gsd-execute-phase/SKILL.md +49 -0
- package/skills/gsd-plan-phase/SKILL.md +37 -0
- package/skills/gsd-ui-phase/SKILL.md +24 -0
- package/skills/gsd-ui-review/SKILL.md +24 -0
- package/skills/gsd-verify-work/SKILL.md +30 -0
|
@@ -1,23 +1,69 @@
|
|
|
1
|
-
<
|
|
1
|
+
<objective>
|
|
2
2
|
Execute all plans in a phase using wave-based parallel execution. Orchestrator stays lean — delegates plan execution to subagents.
|
|
3
|
-
</
|
|
3
|
+
</objective>
|
|
4
4
|
|
|
5
5
|
<core_principle>
|
|
6
6
|
Orchestrator coordinates, not executes. Each subagent loads the full execute-plan context. Orchestrator: discover plans → analyze deps → group waves → spawn agents → handle checkpoints → collect results.
|
|
7
7
|
</core_principle>
|
|
8
8
|
|
|
9
|
+
<runtime_compatibility>
|
|
10
|
+
**Subagent spawning is runtime-specific:**
|
|
11
|
+
- **OpenCode:** Uses `task(subagent_type="gsd-executor", ...)` — blocks until complete, returns result
|
|
12
|
+
- **Copilot:** Subagent spawning does not reliably return completion signals. **Default to
|
|
13
|
+
sequential inline execution**: read and follow execute-plan.md directly for each plan
|
|
14
|
+
instead of spawning parallel agents. Only attempt parallel spawning if the user
|
|
15
|
+
explicitly requests it — and in that case, rely on the spot-check fallback in step 3
|
|
16
|
+
to detect completion.
|
|
17
|
+
- **Other runtimes:** If `task`/`task` tool is unavailable, use sequential inline execution as the
|
|
18
|
+
fallback. Check for tool availability at runtime rather than assuming based on runtime name.
|
|
19
|
+
|
|
20
|
+
**Fallback rule:** If a spawned agent completes its work (commits visible, SUMMARY.md exists) but
|
|
21
|
+
the orchestrator never receives the completion signal, treat it as successful based on spot-checks
|
|
22
|
+
and continue to the next wave/plan. Never block indefinitely waiting for a signal — always verify
|
|
23
|
+
via filesystem and git state.
|
|
24
|
+
</runtime_compatibility>
|
|
25
|
+
|
|
9
26
|
<required_reading>
|
|
10
27
|
read STATE.md before any operation to load project context.
|
|
11
28
|
</required_reading>
|
|
12
29
|
|
|
30
|
+
<available_agent_types>
|
|
31
|
+
These are the valid GSD subagent types registered in .OpenCode/agents/ (or equivalent for your runtime).
|
|
32
|
+
Always use the exact name from this list — do not fall back to 'general' or other built-in types:
|
|
33
|
+
|
|
34
|
+
- gsd-executor — Executes plan tasks, commits, creates SUMMARY.md
|
|
35
|
+
- gsd-verifier — Verifies phase completion, checks quality gates
|
|
36
|
+
- gsd-planner — Creates detailed plans from phase scope
|
|
37
|
+
- gsd-phase-researcher — Researches technical approaches for a phase
|
|
38
|
+
- gsd-plan-checker — Reviews plan quality before execution
|
|
39
|
+
- gsd-debugger — Diagnoses and fixes issues
|
|
40
|
+
- gsd-codebase-mapper — Maps project structure and dependencies
|
|
41
|
+
- gsd-integration-checker — Checks cross-phase integration
|
|
42
|
+
- gsd-nyquist-auditor — Validates verification coverage
|
|
43
|
+
- gsd-ui-researcher — Researches UI/UX approaches
|
|
44
|
+
- gsd-ui-checker — Reviews UI implementation quality
|
|
45
|
+
- gsd-ui-auditor — Audits UI against design requirements
|
|
46
|
+
</available_agent_types>
|
|
47
|
+
|
|
13
48
|
<process>
|
|
14
49
|
|
|
50
|
+
<step name="parse_args" priority="first">
|
|
51
|
+
Parse `$ARGUMENTS` before loading any context:
|
|
52
|
+
|
|
53
|
+
- First positional token → `PHASE_ARG`
|
|
54
|
+
- Optional `--wave N` → `WAVE_FILTER`
|
|
55
|
+
- Optional `--gaps-only` keeps its current meaning
|
|
56
|
+
|
|
57
|
+
If `--wave` is absent, preserve the current behavior of executing all incomplete waves in the phase.
|
|
58
|
+
</step>
|
|
59
|
+
|
|
15
60
|
<step name="initialize" priority="first">
|
|
16
61
|
Load all context in one call:
|
|
17
62
|
|
|
18
63
|
```bash
|
|
19
64
|
INIT=$(node "$HOME/.config/opencode/get-shit-done/bin/gsd-tools.cjs" init execute-phase "${PHASE_ARG}")
|
|
20
65
|
if [[ "$INIT" == @file:* ]]; then INIT=$(cat "${INIT#@file:}"); fi
|
|
66
|
+
AGENT_SKILLS=$(node "$HOME/.config/opencode/get-shit-done/bin/gsd-tools.cjs" agent-skills gsd-executor 2>/dev/null)
|
|
21
67
|
```
|
|
22
68
|
|
|
23
69
|
Parse JSON for: `executor_model`, `verifier_model`, `commit_docs`, `parallelization`, `branching_strategy`, `branch_name`, `phase_found`, `phase_dir`, `phase_number`, `phase_name`, `phase_slug`, `plans`, `incomplete_plans`, `plan_count`, `incomplete_count`, `state_exists`, `roadmap_exists`, `phase_req_ids`.
|
|
@@ -28,14 +74,71 @@ Parse JSON for: `executor_model`, `verifier_model`, `commit_docs`, `parallelizat
|
|
|
28
74
|
|
|
29
75
|
When `parallelization` is false, plans within a wave execute sequentially.
|
|
30
76
|
|
|
31
|
-
**
|
|
77
|
+
**Runtime detection for Copilot:**
|
|
78
|
+
Check if the current runtime is Copilot by testing for the `@gsd-executor` agent pattern
|
|
79
|
+
or absence of the `task()` subagent API. If running under Copilot, force sequential inline
|
|
80
|
+
execution regardless of the `parallelization` setting — Copilot's subagent completion
|
|
81
|
+
signals are unreliable (see `<runtime_compatibility>`). Set `COPILOT_SEQUENTIAL=true`
|
|
82
|
+
internally and skip the `execute_waves` step in favor of `check_interactive_mode`'s
|
|
83
|
+
inline path for each plan.
|
|
84
|
+
|
|
85
|
+
**REQUIRED — Sync chain flag with intent.** If user invoked manually (no `--auto`), clear the ephemeral chain flag from any previous interrupted `--auto` chain. This prevents stale `_auto_chain_active: true` from causing unwanted auto-advance. This does NOT touch `workflow.auto_advance` (the user's persistent settings preference). You MUST execute this bash block before any config reads:
|
|
32
86
|
```bash
|
|
87
|
+
# REQUIRED: prevents stale auto-chain from previous --auto runs
|
|
33
88
|
if [[ ! "$ARGUMENTS" =~ --auto ]]; then
|
|
34
89
|
node "$HOME/.config/opencode/get-shit-done/bin/gsd-tools.cjs" config-set workflow._auto_chain_active false 2>/dev/null
|
|
35
90
|
fi
|
|
36
91
|
```
|
|
37
92
|
</step>
|
|
38
93
|
|
|
94
|
+
<step name="check_interactive_mode">
|
|
95
|
+
**Parse `--interactive` flag from $ARGUMENTS.**
|
|
96
|
+
|
|
97
|
+
**If `--interactive` flag present:** Switch to interactive execution mode.
|
|
98
|
+
|
|
99
|
+
Interactive mode executes plans sequentially **inline** (no subagent spawning) with user
|
|
100
|
+
checkpoints between tasks. The user can review, modify, or redirect work at any point.
|
|
101
|
+
|
|
102
|
+
**Interactive execution flow:**
|
|
103
|
+
|
|
104
|
+
1. Load plan inventory as normal (discover_and_group_plans)
|
|
105
|
+
2. For each plan (sequentially, ignoring wave grouping):
|
|
106
|
+
|
|
107
|
+
a. **Present the plan to the user:**
|
|
108
|
+
```
|
|
109
|
+
## Plan {plan_id}: {plan_name}
|
|
110
|
+
|
|
111
|
+
Objective: {from plan file}
|
|
112
|
+
Tasks: {task_count}
|
|
113
|
+
|
|
114
|
+
Options:
|
|
115
|
+
- Execute (proceed with all tasks)
|
|
116
|
+
- Review first (show task breakdown before starting)
|
|
117
|
+
- Skip (move to next plan)
|
|
118
|
+
- Stop (end execution, save progress)
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
b. **If "Review first":** read and display the full plan file. Ask again: Execute, Modify, Skip.
|
|
122
|
+
|
|
123
|
+
c. **If "Execute":** read and follow `$HOME/.config/opencode/get-shit-done/workflows/execute-plan.md` **inline**
|
|
124
|
+
(do NOT spawn a subagent). Execute tasks one at a time.
|
|
125
|
+
|
|
126
|
+
d. **After each task:** Pause briefly. If the user intervenes (types anything), stop and address
|
|
127
|
+
their feedback before continuing. Otherwise proceed to next task.
|
|
128
|
+
|
|
129
|
+
e. **After plan complete:** Show results, commit, create SUMMARY.md, then present next plan.
|
|
130
|
+
|
|
131
|
+
3. After all plans: proceed to verification (same as normal mode).
|
|
132
|
+
|
|
133
|
+
**Benefits of interactive mode:**
|
|
134
|
+
- No subagent overhead — dramatically lower token usage
|
|
135
|
+
- User catches mistakes early — saves costly verification cycles
|
|
136
|
+
- Maintains GSD's planning/tracking structure
|
|
137
|
+
- Best for: small phases, bug fixes, verification gaps, learning GSD
|
|
138
|
+
|
|
139
|
+
**Skip to handle_branching step** (interactive plans execute inline after grouping).
|
|
140
|
+
</step>
|
|
141
|
+
|
|
39
142
|
<step name="handle_branching">
|
|
40
143
|
Check `branching_strategy` from init:
|
|
41
144
|
|
|
@@ -53,6 +156,12 @@ All subsequent commits go to this branch. User handles merging.
|
|
|
53
156
|
From init JSON: `phase_dir`, `plan_count`, `incomplete_count`.
|
|
54
157
|
|
|
55
158
|
Report: "Found {plan_count} plans in {phase_dir} ({incomplete_count} incomplete)"
|
|
159
|
+
|
|
160
|
+
**Update STATE.md for phase start:**
|
|
161
|
+
```bash
|
|
162
|
+
node "$HOME/.config/opencode/get-shit-done/bin/gsd-tools.cjs" state begin-phase --phase "${PHASE_NUMBER}" --name "${PHASE_NAME}" --plans "${PLAN_COUNT}"
|
|
163
|
+
```
|
|
164
|
+
This updates Status, Last Activity, Current focus, Current Position, and plan counts in STATE.md so frontmatter and body text reflect the active phase immediately.
|
|
56
165
|
</step>
|
|
57
166
|
|
|
58
167
|
<step name="discover_and_group_plans">
|
|
@@ -64,13 +173,19 @@ PLAN_INDEX=$(node "$HOME/.config/opencode/get-shit-done/bin/gsd-tools.cjs" phase
|
|
|
64
173
|
|
|
65
174
|
Parse JSON for: `phase`, `plans[]` (each with `id`, `wave`, `autonomous`, `objective`, `files_modified`, `task_count`, `has_summary`), `waves` (map of wave number → plan IDs), `incomplete`, `has_checkpoints`.
|
|
66
175
|
|
|
67
|
-
**Filtering:** Skip plans where `has_summary: true`. If `--gaps-only`: also skip non-gap_closure plans. If
|
|
176
|
+
**Filtering:** Skip plans where `has_summary: true`. If `--gaps-only`: also skip non-gap_closure plans. If `WAVE_FILTER` is set: also skip plans whose `wave` does not equal `WAVE_FILTER`.
|
|
177
|
+
|
|
178
|
+
**Wave safety check:** If `WAVE_FILTER` is set and there are still incomplete plans in any lower wave that match the current execution mode, STOP and tell the user to finish earlier waves first. Do not let Wave 2+ execute while prerequisite earlier-wave plans remain incomplete.
|
|
179
|
+
|
|
180
|
+
If all filtered: "No matching incomplete plans" → exit.
|
|
68
181
|
|
|
69
182
|
Report:
|
|
70
183
|
```
|
|
71
184
|
## Execution Plan
|
|
72
185
|
|
|
73
|
-
**Phase {X}: {Name}** — {total_plans} plans across {wave_count}
|
|
186
|
+
**Phase {X}: {Name}** — {total_plans} matching plans across {wave_count} wave(s)
|
|
187
|
+
|
|
188
|
+
{If WAVE_FILTER is set: `Wave filter active: executing only Wave {WAVE_FILTER}`.}
|
|
74
189
|
|
|
75
190
|
| Wave | Plans | What it builds |
|
|
76
191
|
|------|-------|----------------|
|
|
@@ -80,7 +195,7 @@ Report:
|
|
|
80
195
|
</step>
|
|
81
196
|
|
|
82
197
|
<step name="execute_waves">
|
|
83
|
-
Execute each wave in sequence. Within a wave: parallel if `PARALLELIZATION=true`, sequential if `false`.
|
|
198
|
+
Execute each selected wave in sequence. Within a wave: parallel if `PARALLELIZATION=true`, sequential if `false`.
|
|
84
199
|
|
|
85
200
|
**For each wave:**
|
|
86
201
|
|
|
@@ -104,19 +219,29 @@ Execute each wave in sequence. Within a wave: parallel if `PARALLELIZATION=true`
|
|
|
104
219
|
|
|
105
220
|
2. **Spawn executor agents:**
|
|
106
221
|
|
|
107
|
-
Pass paths only — executors read files themselves with their fresh
|
|
108
|
-
|
|
222
|
+
Pass paths only — executors read files themselves with their fresh context window.
|
|
223
|
+
For 200k models, this keeps orchestrator context lean (~10-15%).
|
|
224
|
+
For 1M+ models (Opus 4.6, Sonnet 4.6), richer context can be passed directly.
|
|
109
225
|
|
|
110
226
|
```
|
|
111
227
|
task(
|
|
112
228
|
subagent_type="gsd-executor",
|
|
113
229
|
model="{executor_model}",
|
|
230
|
+
isolation="worktree",
|
|
114
231
|
prompt="
|
|
115
232
|
<objective>
|
|
116
233
|
Execute plan {plan_number} of phase {phase_number}-{phase_name}.
|
|
117
234
|
Commit each task atomically. Create SUMMARY.md. Update STATE.md and ROADMAP.md.
|
|
118
235
|
</objective>
|
|
119
236
|
|
|
237
|
+
<parallel_execution>
|
|
238
|
+
You are running as a PARALLEL executor agent. Use --no-verify on all git
|
|
239
|
+
commits to avoid pre-commit hook contention with other agents. The
|
|
240
|
+
orchestrator validates hooks once after all agents complete.
|
|
241
|
+
For gsd-tools commits: add --no-verify flag.
|
|
242
|
+
For direct git commits: use git commit --no-verify -m "..."
|
|
243
|
+
</parallel_execution>
|
|
244
|
+
|
|
120
245
|
<execution_context>
|
|
121
246
|
@$HOME/.config/opencode/get-shit-done/workflows/execute-plan.md
|
|
122
247
|
@$HOME/.config/opencode/get-shit-done/templates/summary.md
|
|
@@ -127,12 +252,22 @@ Execute each wave in sequence. Within a wave: parallel if `PARALLELIZATION=true`
|
|
|
127
252
|
<files_to_read>
|
|
128
253
|
read these files at execution start using the read tool:
|
|
129
254
|
- {phase_dir}/{plan_file} (Plan)
|
|
255
|
+
- .planning/PROJECT.md (Project context — core value, requirements, evolution rules)
|
|
130
256
|
- .planning/STATE.md (State)
|
|
131
257
|
- .planning/config.json (Config, if exists)
|
|
132
258
|
- ./AGENTS.md (Project instructions, if exists — follow project-specific guidelines and coding conventions)
|
|
133
259
|
- .OpenCode/skills/ or .agents/skills/ (Project skills, if either exists — list skills, read SKILL.md for each, follow relevant rules during implementation)
|
|
134
260
|
</files_to_read>
|
|
135
261
|
|
|
262
|
+
${AGENT_SKILLS}
|
|
263
|
+
|
|
264
|
+
<mcp_tools>
|
|
265
|
+
If AGENTS.md or project instructions reference MCP tools (e.g. jCodeMunch, context7,
|
|
266
|
+
or other MCP servers), prefer those tools over grep/glob for code navigation when available.
|
|
267
|
+
MCP tools often save significant tokens by providing structured code indexes.
|
|
268
|
+
Check tool availability first — if MCP tools are not accessible, fall back to grep/glob.
|
|
269
|
+
</mcp_tools>
|
|
270
|
+
|
|
136
271
|
<success_criteria>
|
|
137
272
|
- [ ] All tasks executed
|
|
138
273
|
- [ ] Each task committed individually
|
|
@@ -146,7 +281,39 @@ Execute each wave in sequence. Within a wave: parallel if `PARALLELIZATION=true`
|
|
|
146
281
|
|
|
147
282
|
3. **Wait for all agents in wave to complete.**
|
|
148
283
|
|
|
149
|
-
|
|
284
|
+
**Completion signal fallback (Copilot and runtimes where task() may not return):**
|
|
285
|
+
|
|
286
|
+
If a spawned agent does not return a completion signal but appears to have finished
|
|
287
|
+
its work, do NOT block indefinitely. Instead, verify completion via spot-checks:
|
|
288
|
+
|
|
289
|
+
```bash
|
|
290
|
+
# For each plan in this wave, check if the executor finished:
|
|
291
|
+
SUMMARY_EXISTS=$(test -f "{phase_dir}/{plan_number}-{plan_padded}-SUMMARY.md" && echo "true" || echo "false")
|
|
292
|
+
COMMITS_FOUND=$(git log --oneline --all --grep="{phase_number}-{plan_padded}" --since="1 hour ago" | head -1)
|
|
293
|
+
```
|
|
294
|
+
|
|
295
|
+
**If SUMMARY.md exists AND commits are found:** The agent completed successfully —
|
|
296
|
+
treat as done and proceed to step 4. Log: `"✓ {Plan ID} completed (verified via spot-check — completion signal not received)"`
|
|
297
|
+
|
|
298
|
+
**If SUMMARY.md does NOT exist after a reasonable wait:** The agent may still be
|
|
299
|
+
running or may have failed silently. Check `git log --oneline -5` for recent
|
|
300
|
+
activity. If commits are still appearing, wait longer. If no activity, report
|
|
301
|
+
the plan as failed and route to the failure handler in step 5.
|
|
302
|
+
|
|
303
|
+
**This fallback applies automatically to all runtimes.** OpenCode's task() normally
|
|
304
|
+
returns synchronously, but the fallback ensures resilience if it doesn't.
|
|
305
|
+
|
|
306
|
+
4. **Post-wave hook validation (parallel mode only):**
|
|
307
|
+
|
|
308
|
+
When agents committed with `--no-verify`, run pre-commit hooks once after the wave:
|
|
309
|
+
```bash
|
|
310
|
+
# Run project's pre-commit hooks on the current state
|
|
311
|
+
git diff --cached --quiet || git stash # stash any unstaged changes
|
|
312
|
+
git hook run pre-commit 2>&1 || echo "⚠ Pre-commit hooks failed — review before continuing"
|
|
313
|
+
```
|
|
314
|
+
If hooks fail: report the failure and ask "Fix hook issues now?" or "Continue to next wave?"
|
|
315
|
+
|
|
316
|
+
5. **Report completion — spot-check claims first:**
|
|
150
317
|
|
|
151
318
|
For each SUMMARY.md:
|
|
152
319
|
- Verify first 2 files from `key-files.created` exist on disk
|
|
@@ -177,6 +344,27 @@ Execute each wave in sequence. Within a wave: parallel if `PARALLELIZATION=true`
|
|
|
177
344
|
|
|
178
345
|
For real failures: report which plan failed → ask "Continue?" or "Stop?" → if continue, dependent plans may also fail. If stop, partial completion report.
|
|
179
346
|
|
|
347
|
+
5b. **Pre-wave dependency check (waves 2+ only):**
|
|
348
|
+
|
|
349
|
+
Before spawning wave N+1, for each plan in the upcoming wave:
|
|
350
|
+
```bash
|
|
351
|
+
node "$HOME/.config/opencode/get-shit-done/bin/gsd-tools.cjs" verify key-links {phase_dir}/{plan}-PLAN.md
|
|
352
|
+
```
|
|
353
|
+
|
|
354
|
+
If any key-link from a PRIOR wave's artifact fails verification:
|
|
355
|
+
|
|
356
|
+
## Cross-Plan Wiring Gap
|
|
357
|
+
|
|
358
|
+
| Plan | Link | From | Expected Pattern | Status |
|
|
359
|
+
|------|------|------|-----------------|--------|
|
|
360
|
+
| {plan} | {via} | {from} | {pattern} | NOT FOUND |
|
|
361
|
+
|
|
362
|
+
Wave {N} artifacts may not be properly wired. Options:
|
|
363
|
+
1. Investigate and fix before continuing
|
|
364
|
+
2. Continue (may cause cascading failures in wave {N+1})
|
|
365
|
+
|
|
366
|
+
Key-links referencing files in the CURRENT (upcoming) wave are skipped.
|
|
367
|
+
|
|
180
368
|
6. **Execute checkpoint plans between waves** — see `<checkpoint_handling>`.
|
|
181
369
|
|
|
182
370
|
7. **Proceed to next wave.**
|
|
@@ -250,6 +438,37 @@ After all waves:
|
|
|
250
438
|
```
|
|
251
439
|
</step>
|
|
252
440
|
|
|
441
|
+
<step name="handle_partial_wave_execution">
|
|
442
|
+
If `WAVE_FILTER` was used, re-run plan discovery after execution:
|
|
443
|
+
|
|
444
|
+
```bash
|
|
445
|
+
POST_PLAN_INDEX=$(node "$HOME/.config/opencode/get-shit-done/bin/gsd-tools.cjs" phase-plan-index "${PHASE_NUMBER}")
|
|
446
|
+
```
|
|
447
|
+
|
|
448
|
+
Apply the same "incomplete" filtering rules as earlier:
|
|
449
|
+
- ignore plans with `has_summary: true`
|
|
450
|
+
- if `--gaps-only`, only consider `gap_closure: true` plans
|
|
451
|
+
|
|
452
|
+
**If incomplete plans still remain anywhere in the phase:**
|
|
453
|
+
- STOP here
|
|
454
|
+
- Do NOT run phase verification
|
|
455
|
+
- Do NOT mark the phase complete in ROADMAP/STATE
|
|
456
|
+
- Present:
|
|
457
|
+
|
|
458
|
+
```markdown
|
|
459
|
+
## Wave {WAVE_FILTER} Complete
|
|
460
|
+
|
|
461
|
+
Selected wave finished successfully. This phase still has incomplete plans, so phase-level verification and completion were intentionally skipped.
|
|
462
|
+
|
|
463
|
+
/gsd-execute-phase {phase} ${GSD_WS} # Continue remaining waves
|
|
464
|
+
/gsd-execute-phase {phase} --wave {next} ${GSD_WS} # Run the next wave explicitly
|
|
465
|
+
```
|
|
466
|
+
|
|
467
|
+
**If no incomplete plans remain after the selected wave finishes:**
|
|
468
|
+
- continue with the normal phase-level verification and completion flow below
|
|
469
|
+
- this means the selected wave happened to be the last remaining work in the phase
|
|
470
|
+
</step>
|
|
471
|
+
|
|
253
472
|
<step name="close_parent_artifacts">
|
|
254
473
|
**For decimal/polish phases only (X.Y pattern):** Close the feedback loop by resolving parent UAT and debug artifacts.
|
|
255
474
|
|
|
@@ -300,9 +519,74 @@ node "$HOME/.config/opencode/get-shit-done/bin/gsd-tools.cjs" commit "docs(phase
|
|
|
300
519
|
```
|
|
301
520
|
</step>
|
|
302
521
|
|
|
522
|
+
<step name="regression_gate">
|
|
523
|
+
Run prior phases' test suites to catch cross-phase regressions BEFORE verification.
|
|
524
|
+
|
|
525
|
+
**Skip if:** This is the first phase (no prior phases), or no prior VERIFICATION.md files exist.
|
|
526
|
+
|
|
527
|
+
**Step 1: Discover prior phases' test files**
|
|
528
|
+
```bash
|
|
529
|
+
# Find all VERIFICATION.md files from prior phases in current milestone
|
|
530
|
+
PRIOR_VERIFICATIONS=$(find .planning/phases/ -name "*-VERIFICATION.md" ! -path "*${PHASE_NUMBER}*" 2>/dev/null)
|
|
531
|
+
```
|
|
532
|
+
|
|
533
|
+
**Step 2: Extract test file lists from prior verifications**
|
|
534
|
+
|
|
535
|
+
For each VERIFICATION.md found, look for test file references:
|
|
536
|
+
- Lines containing `test`, `spec`, or `__tests__` paths
|
|
537
|
+
- The "Test Suite" or "Automated Checks" section
|
|
538
|
+
- File patterns from `key-files.created` in corresponding SUMMARY.md files that match `*.test.*` or `*.spec.*`
|
|
539
|
+
|
|
540
|
+
Collect all unique test file paths into `REGRESSION_FILES`.
|
|
541
|
+
|
|
542
|
+
**Step 3: Run regression tests (if any found)**
|
|
543
|
+
|
|
544
|
+
```bash
|
|
545
|
+
# Detect test runner and run prior phase tests
|
|
546
|
+
if [ -f "package.json" ]; then
|
|
547
|
+
# Node.js — use project's test runner
|
|
548
|
+
npx jest ${REGRESSION_FILES} --passWithNoTests --no-coverage -q 2>&1 || npx vitest run ${REGRESSION_FILES} 2>&1
|
|
549
|
+
elif [ -f "Cargo.toml" ]; then
|
|
550
|
+
cargo test 2>&1
|
|
551
|
+
elif [ -f "requirements.txt" ] || [ -f "pyproject.toml" ]; then
|
|
552
|
+
python -m pytest ${REGRESSION_FILES} -q --tb=short 2>&1
|
|
553
|
+
fi
|
|
554
|
+
```
|
|
555
|
+
|
|
556
|
+
**Step 4: Report results**
|
|
557
|
+
|
|
558
|
+
If all tests pass:
|
|
559
|
+
```
|
|
560
|
+
✓ Regression gate: {N} prior-phase test files passed — no regressions detected
|
|
561
|
+
```
|
|
562
|
+
→ Proceed to verify_phase_goal
|
|
563
|
+
|
|
564
|
+
If any tests fail:
|
|
565
|
+
```
|
|
566
|
+
## ⚠ Cross-Phase Regression Detected
|
|
567
|
+
|
|
568
|
+
Phase {X} execution may have broken functionality from prior phases.
|
|
569
|
+
|
|
570
|
+
| Test File | Phase | Status | Detail |
|
|
571
|
+
|-----------|-------|--------|--------|
|
|
572
|
+
| {file} | {origin_phase} | FAILED | {first_failure_line} |
|
|
573
|
+
|
|
574
|
+
Options:
|
|
575
|
+
1. Fix regressions before verification (recommended)
|
|
576
|
+
2. Continue to verification anyway (regressions will compound)
|
|
577
|
+
3. Abort phase — roll back and re-plan
|
|
578
|
+
```
|
|
579
|
+
|
|
580
|
+
Use question to present the options.
|
|
581
|
+
</step>
|
|
582
|
+
|
|
303
583
|
<step name="verify_phase_goal">
|
|
304
584
|
Verify phase achieved its GOAL, not just completed tasks.
|
|
305
585
|
|
|
586
|
+
```bash
|
|
587
|
+
VERIFIER_SKILLS=$(node "$HOME/.config/opencode/get-shit-done/bin/gsd-tools.cjs" agent-skills gsd-verifier 2>/dev/null)
|
|
588
|
+
```
|
|
589
|
+
|
|
306
590
|
```
|
|
307
591
|
task(
|
|
308
592
|
prompt="Verify phase {phase_number} goal achievement.
|
|
@@ -311,7 +595,8 @@ Phase goal: {goal from ROADMAP.md}
|
|
|
311
595
|
Phase requirement IDs: {phase_req_ids}
|
|
312
596
|
Check must_haves against actual codebase.
|
|
313
597
|
Cross-reference requirement IDs from PLAN frontmatter against REQUIREMENTS.md — every ID MUST be accounted for.
|
|
314
|
-
Create VERIFICATION.md.
|
|
598
|
+
Create VERIFICATION.md.
|
|
599
|
+
${VERIFIER_SKILLS}",
|
|
315
600
|
subagent_type="gsd-verifier",
|
|
316
601
|
model="{verifier_model}"
|
|
317
602
|
)
|
|
@@ -326,9 +611,54 @@ grep "^status:" "$PHASE_DIR"/*-VERIFICATION.md | cut -d: -f2 | tr -d ' '
|
|
|
326
611
|
|--------|--------|
|
|
327
612
|
| `passed` | → update_roadmap |
|
|
328
613
|
| `human_needed` | Present items for human testing, get approval or feedback |
|
|
329
|
-
| `gaps_found` | Present gap summary, offer `/gsd-plan-phase {phase} --gaps` |
|
|
614
|
+
| `gaps_found` | Present gap summary, offer `/gsd-plan-phase {phase} --gaps ${GSD_WS}` |
|
|
330
615
|
|
|
331
616
|
**If human_needed:**
|
|
617
|
+
|
|
618
|
+
**Step A: Persist human verification items as UAT file.**
|
|
619
|
+
|
|
620
|
+
Create `{phase_dir}/{phase_num}-HUMAN-UAT.md` using UAT template format:
|
|
621
|
+
|
|
622
|
+
```markdown
|
|
623
|
+
---
|
|
624
|
+
status: partial
|
|
625
|
+
phase: {phase_num}-{phase_name}
|
|
626
|
+
source: [{phase_num}-VERIFICATION.md]
|
|
627
|
+
started: [now ISO]
|
|
628
|
+
updated: [now ISO]
|
|
629
|
+
---
|
|
630
|
+
|
|
631
|
+
## Current Test
|
|
632
|
+
|
|
633
|
+
[awaiting human testing]
|
|
634
|
+
|
|
635
|
+
## Tests
|
|
636
|
+
|
|
637
|
+
{For each human_verification item from VERIFICATION.md:}
|
|
638
|
+
|
|
639
|
+
### {N}. {item description}
|
|
640
|
+
expected: {expected behavior from VERIFICATION.md}
|
|
641
|
+
result: [pending]
|
|
642
|
+
|
|
643
|
+
## Summary
|
|
644
|
+
|
|
645
|
+
total: {count}
|
|
646
|
+
passed: 0
|
|
647
|
+
issues: 0
|
|
648
|
+
pending: {count}
|
|
649
|
+
skipped: 0
|
|
650
|
+
blocked: 0
|
|
651
|
+
|
|
652
|
+
## Gaps
|
|
653
|
+
```
|
|
654
|
+
|
|
655
|
+
Commit the file:
|
|
656
|
+
```bash
|
|
657
|
+
node "$HOME/.config/opencode/get-shit-done/bin/gsd-tools.cjs" commit "test({phase_num}): persist human verification items as UAT" --files "{phase_dir}/{phase_num}-HUMAN-UAT.md"
|
|
658
|
+
```
|
|
659
|
+
|
|
660
|
+
**Step B: Present to user:**
|
|
661
|
+
|
|
332
662
|
```
|
|
333
663
|
## ✓ Phase {X}: {Name} — Human Verification Required
|
|
334
664
|
|
|
@@ -336,9 +666,15 @@ All automated checks passed. {N} items need human testing:
|
|
|
336
666
|
|
|
337
667
|
{From VERIFICATION.md human_verification section}
|
|
338
668
|
|
|
669
|
+
Items saved to `{phase_num}-HUMAN-UAT.md` — they will appear in `/gsd-progress` and `/gsd-audit-uat`.
|
|
670
|
+
|
|
339
671
|
"approved" → continue | Report issues → gap closure
|
|
340
672
|
```
|
|
341
673
|
|
|
674
|
+
**If user says "approved":** Proceed to `update_roadmap`. The HUMAN-UAT.md file persists with `status: partial` and will surface in future progress checks until the user runs `/gsd-verify-work` on it.
|
|
675
|
+
|
|
676
|
+
**If user reports issues:** Proceed to gap closure as currently implemented.
|
|
677
|
+
|
|
342
678
|
**If gaps_found:**
|
|
343
679
|
```
|
|
344
680
|
## ⚠ Phase {X}: {Name} — Gaps Found
|
|
@@ -352,15 +688,15 @@ All automated checks passed. {N} items need human testing:
|
|
|
352
688
|
---
|
|
353
689
|
## ▶ Next Up
|
|
354
690
|
|
|
355
|
-
`/gsd-plan-phase {X} --gaps`
|
|
691
|
+
`/gsd-plan-phase {X} --gaps ${GSD_WS}`
|
|
356
692
|
|
|
357
693
|
*`/new` first → fresh context window*
|
|
358
694
|
|
|
359
695
|
Also: `cat {phase_dir}/{phase_num}-VERIFICATION.md` — full report
|
|
360
|
-
Also: `/gsd-verify-work {X}` — manual testing first
|
|
696
|
+
Also: `/gsd-verify-work {X} ${GSD_WS}` — manual testing first
|
|
361
697
|
```
|
|
362
698
|
|
|
363
|
-
Gap closure cycle: `/gsd-plan-phase {X} --gaps` reads VERIFICATION.md → creates gap plans with `gap_closure: true` → user runs `/gsd-execute-phase {X} --gaps-only` → verifier re-runs.
|
|
699
|
+
Gap closure cycle: `/gsd-plan-phase {X} --gaps ${GSD_WS}` reads VERIFICATION.md → creates gap plans with `gap_closure: true` → user runs `/gsd-execute-phase {X} --gaps-only ${GSD_WS}` → verifier re-runs.
|
|
364
700
|
</step>
|
|
365
701
|
|
|
366
702
|
<step name="update_roadmap">
|
|
@@ -376,14 +712,46 @@ The CLI handles:
|
|
|
376
712
|
- Updating plan count to final
|
|
377
713
|
- Advancing STATE.md to next phase
|
|
378
714
|
- Updating REQUIREMENTS.md traceability
|
|
715
|
+
- Scanning for verification debt (returns `warnings` array)
|
|
379
716
|
|
|
380
|
-
Extract from result: `next_phase`, `next_phase_name`, `is_last_phase`.
|
|
717
|
+
Extract from result: `next_phase`, `next_phase_name`, `is_last_phase`, `warnings`, `has_warnings`.
|
|
718
|
+
|
|
719
|
+
**If has_warnings is true:**
|
|
720
|
+
```
|
|
721
|
+
## Phase {X} marked complete with {N} warnings:
|
|
722
|
+
|
|
723
|
+
{list each warning}
|
|
724
|
+
|
|
725
|
+
These items are tracked and will appear in `/gsd-progress` and `/gsd-audit-uat`.
|
|
726
|
+
```
|
|
381
727
|
|
|
382
728
|
```bash
|
|
383
729
|
node "$HOME/.config/opencode/get-shit-done/bin/gsd-tools.cjs" commit "docs(phase-{X}): complete phase execution" --files .planning/ROADMAP.md .planning/STATE.md .planning/REQUIREMENTS.md {phase_dir}/*-VERIFICATION.md
|
|
384
730
|
```
|
|
385
731
|
</step>
|
|
386
732
|
|
|
733
|
+
<step name="update_project_md">
|
|
734
|
+
**Evolve PROJECT.md to reflect phase completion (prevents planning document drift — #956):**
|
|
735
|
+
|
|
736
|
+
PROJECT.md tracks validated requirements, decisions, and current state. Without this step,
|
|
737
|
+
PROJECT.md falls behind silently over multiple phases.
|
|
738
|
+
|
|
739
|
+
1. read `.planning/PROJECT.md`
|
|
740
|
+
2. If the file exists and has a `## Validated Requirements` or `## Requirements` section:
|
|
741
|
+
- Move any requirements validated by this phase from Active → Validated
|
|
742
|
+
- Add a brief note: `Validated in Phase {X}: {Name}`
|
|
743
|
+
3. If the file has a `## Current State` or similar section:
|
|
744
|
+
- Update it to reflect this phase's completion (e.g., "Phase {X} complete — {one-liner}")
|
|
745
|
+
4. Update the `Last updated:` footer to today's date
|
|
746
|
+
5. Commit the change:
|
|
747
|
+
|
|
748
|
+
```bash
|
|
749
|
+
node "$HOME/.config/opencode/get-shit-done/bin/gsd-tools.cjs" commit "docs(phase-{X}): evolve PROJECT.md after phase completion" --files .planning/PROJECT.md
|
|
750
|
+
```
|
|
751
|
+
|
|
752
|
+
**Skip this step if** `.planning/PROJECT.md` does not exist.
|
|
753
|
+
</step>
|
|
754
|
+
|
|
387
755
|
<step name="offer_next">
|
|
388
756
|
|
|
389
757
|
**Exception:** If `gaps_found`, the `verify_phase_goal` step already presents the gap-closure path (`/gsd-plan-phase {X} --gaps`). No additional routing needed — skip auto-advance.
|
|
@@ -433,15 +801,34 @@ Execute the transition workflow inline (do NOT use task — orchestrator context
|
|
|
433
801
|
|
|
434
802
|
read and follow `$HOME/.config/opencode/get-shit-done/workflows/transition.md`, passing through the `--auto` flag so it propagates to the next phase invocation.
|
|
435
803
|
|
|
436
|
-
**If
|
|
804
|
+
**If none of `--auto`, `AUTO_CHAIN`, or `AUTO_CFG` is true:**
|
|
805
|
+
|
|
806
|
+
**STOP. Do not auto-advance. Do not execute transition. Do not plan next phase. Present options to the user and wait.**
|
|
807
|
+
|
|
808
|
+
**IMPORTANT: There is NO `/gsd-transition` command. Never suggest it. The transition workflow is internal only.**
|
|
809
|
+
|
|
810
|
+
```
|
|
811
|
+
## ✓ Phase {X}: {Name} Complete
|
|
812
|
+
|
|
813
|
+
/gsd-progress ${GSD_WS} — see updated roadmap
|
|
814
|
+
/gsd-discuss-phase {next} ${GSD_WS} — discuss next phase before planning
|
|
815
|
+
/gsd-plan-phase {next} ${GSD_WS} — plan next phase
|
|
816
|
+
/gsd-execute-phase {next} ${GSD_WS} — execute next phase
|
|
817
|
+
```
|
|
437
818
|
|
|
438
|
-
|
|
819
|
+
Only suggest the commands listed above. Do not invent or hallucinate command names.
|
|
439
820
|
</step>
|
|
440
821
|
|
|
441
822
|
</process>
|
|
442
823
|
|
|
443
824
|
<context_efficiency>
|
|
444
|
-
Orchestrator: ~10-15% context
|
|
825
|
+
Orchestrator: ~10-15% context for 200k windows, can use more for 1M+ windows.
|
|
826
|
+
Subagents: fresh context each (200k-1M depending on model). No polling (task blocks). No context bleed.
|
|
827
|
+
|
|
828
|
+
For 1M+ context models, consider:
|
|
829
|
+
- Passing richer context (code snippets, dependency outputs) directly to executors instead of just file paths
|
|
830
|
+
- Running small phases (≤3 plans, no dependencies) inline without subagent spawning overhead
|
|
831
|
+
- Relaxing /new recommendations — context rot onset is much further out with 5x window
|
|
445
832
|
</context_efficiency>
|
|
446
833
|
|
|
447
834
|
<failure_handling>
|