run_task
Offload repo coding tasks to a local LLM, running in background and asking questions when needed.
Instructions
Run a coding task using a local LLM (default: qwen3-coder:30b). If background=true, immediately returns {status:'running', task_id} and runs in the background. Check completion with check_task(task_id). Return values: {status:"running", task_id} — running in background (when background=true). {status:"waiting", task_id, question, options} — HermitAgent is asking a question. Reply with reply_task(task_id, message). {status:"done", result} — task completed.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cwd | Yes | ||
| task | Yes | ||
| model | No | ||
| max_turns | No | ||
| background | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |