Plannotator 0.19.1 changes the default OpenCode workflow.
Before 0.19.1, OpenCode behavior was effectively broad automatic access: primary agents could see submit_plan, and users could run into cases where build or another non-planning agent reached for it.
Starting in 0.19.1, the default becomes plan-agent.
What changes on upgrade
If you already use @plannotator/opencode and upgrade to 0.19.1 without adding any new config:
submit_planstays available to OpenCode’s planning agent, defaultplan- any agents you list in
planningAgentsare added alongsideplan buildand other non-planning primary agents stop seeing or callingsubmit_planby default- the broad reminder that nudged non-plan primary agents toward
submit_plangoes away /plannotator-last,/plannotator-annotate,/plannotator-review, and/plannotator-archivestill work
This is the new omitted-config default:
{
"$schema": "https://opencode.ai/config.json",
"plugin": [
["@plannotator/opencode@latest", {
"workflow": "plan-agent",
"planningAgents": ["plan"]
}]
]
}
Why the default changed
OpenCode feedback was consistent on two points:
- users still want Plannotator integrated with OpenCode plan mode
- users do not want
submit_planexposed broadly enough thatbuildor other implementation agents eagerly call it
plan-agent is the compromise default:
- it keeps OpenCode plan-mode integration through the built-in
planagent - it narrows
submit_planaccess toplanplus any extra planning agents you configure - it avoids forcing everyone all the way into commands-only mode
If you want the old behavior
If you want the pre-0.19.1 broad behavior back, opt into all-agents:
{
"$schema": "https://opencode.ai/config.json",
"plugin": [
["@plannotator/opencode@latest", {
"workflow": "all-agents"
}]
]
}
Use this if you intentionally want primary agents other than plan to see and call submit_plan.
If you want commands only
If you do not want automatic plan review at all, switch to manual:
{
"$schema": "https://opencode.ai/config.json",
"plugin": [
["@plannotator/opencode@latest", {
"workflow": "manual"
}]
]
}
In manual mode:
submit_planis not registered- OpenCode planning stays native
- you use Plannotator explicitly through:
/plannotator-last/plannotator-annotate/plannotator-review/plannotator-archive
Recommended upgrade path
Choose one of these:
Keep the new default
Do nothing if you want:
- Plannotator in OpenCode plan mode
- no broad
buildaccess tosubmit_plan
Restore the legacy model
Set workflow to all-agents if your team already depends on broad primary-agent access.
Move to manual review
Set workflow to manual if you prefer OpenCode’s native planning flow and only want Plannotator when you invoke it yourself.
Common questions
Does this remove OpenCode plan integration?
No. The default still keeps Plannotator integrated with OpenCode planning through the planning agent.
Does this break /plannotator-last or /plannotator-annotate?
No. Manual commands continue to work across all workflow modes.
What if my planning agent is not named plan?
Add it explicitly. OpenCode’s built-in plan agent stays enabled in plan-agent mode:
{
"$schema": "https://opencode.ai/config.json",
"plugin": [
["@plannotator/opencode@latest", {
"workflow": "plan-agent",
"planningAgents": ["planner"]
}]
]
}
I upgraded but OpenCode still looks stale
Restart OpenCode after upgrading. If a cached plugin version is still being used, rerun the install script or clear the OpenCode cache and restart.
See also: