Auto-continue the orchestrator when it stops with incomplete todos. Opt-in only — nothing resumes automatically unless you enable it.
| Tool / Command | Description |
|---|---|
auto_continue |
Toggle auto-continuation. Call with { enabled: true } to activate, { enabled: false } to disable |
/auto-continue |
Slash command shortcut. Accepts on, off, or toggles with no argument |
All of these must pass before continuation happens:
Configure it in ~/.config/opencode/oh-my-opencode-slim.json or ~/.config/opencode/oh-my-opencode-slim.jsonc:
{
"todoContinuation": {
"maxContinuations": 5, // Max consecutive auto-continuations (1–50)
"cooldownMs": 3000, // Delay before each continuation (0–30000)
"autoEnable": false, // Auto-enable when session has enough todos
"autoEnableThreshold": 4 // Number of todos to trigger auto-enable
}
}
See Configuration for the full option reference.