Start a Clanker turn (non-blocking)
clanker_dispatch_startSpawn a Clanker coding agent with a prompt and backend lane, returning an ID for progress polling. Setup errors are caught immediately; runtime errors surface during polling.
Instructions
Spawn/handshake a Clanker and start a prompt turn, returning {id} immediately. Poll progress with clanker_wait(id). Setup errors (unknown backend, worktree creation) fail here; runtime errors surface via clanker_wait.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cwd | No | Absolute working directory (default: server base repo) | |
| lane | Yes | Backend Clanker to drive: codex | opencode | grok | |
| model | No | Model override, e.g. 'zhipuai-coding-plan/glm-5.2' (opencode) — warned & echoed if the Clanker can't honor it | |
| effort | No | Reasoning effort override (codex/grok only) | |
| prompt | Yes | The task/prompt to send to the Clanker | |
| worktree | No | Branch name; server creates a git worktree cut from origin/main and runs there | |
| read_only | No | If true, the Clanker is gated read-only (default false) |