You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -46,6 +46,7 @@ All notable changes to this project are documented in this file.
46
46
- Added `instructions/plan_artifact_contract.md` defining `/start-work` plan metadata/checklist format, validation rules, step transitions, and deviation capture requirements.
47
47
- Added `scripts/start_work_command.py` with `/start-work <plan>` execution, persisted checkpoint status, and deviation reporting (`status`, `deviations`).
48
48
- Added `/start-work`, `/start-work-status`, and `/start-work-deviations` aliases in `opencode.json`.
49
+
- Added `/start-work-bg` and `/start-work-doctor-json` aliases for background-safe queueing and execution health diagnostics.
49
50
50
51
### Changes
51
52
- Documented extension evaluation outcomes and when each tool is the better fit.
@@ -88,6 +89,7 @@ All notable changes to this project are documented in this file.
88
89
- Expanded README wizard/browser guidance with provider trade-offs, stable-first defaults, and `/browser` usage examples.
89
90
- Expanded browser verification coverage to assert provider reset readiness and added install smoke checks that run browser status/doctor after switching across providers.
90
91
- Expanded install/selftest coverage for `/start-work` plan validation, execution state persistence, and deviation diagnostics.
92
+
- Expanded `/start-work` integrations with background queue handoff, digest recap payloads, and unified `/doctor` visibility.
Copy file name to clipboardExpand all lines: opencode.json
+8Lines changed: 8 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -282,6 +282,14 @@
282
282
"description": "Show captured plan execution deviations",
283
283
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/start_work_command.py\" deviations --json`\nShow only the command output."
284
284
},
285
+
"start-work-bg": {
286
+
"description": "Queue plan execution through background task manager",
287
+
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/start_work_command.py\" $ARGUMENTS --background --json`\nShow only the command output."
288
+
},
289
+
"start-work-doctor-json": {
290
+
"description": "Run plan execution health diagnostics in JSON",
291
+
"template": "!`python3 \"$HOME/.config/opencode/my_opencode/scripts/start_work_command.py\" doctor --json`\nShow only the command output."
0 commit comments