Update Kanban task
hermes_kanban_task_updateUpdate Kanban tasks by changing status, assignee, priority, title, body, result, or completion summary, ensuring your board reflects latest work.
Instructions
Typed PATCH /api/plugins/kanban/tasks/{id} wrapper that updates status, assignee, priority, title, body, result, or completion summary for one Kanban task, writing redacted receipts.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Kanban task id such as t_xxxxxxxx. | |
| body | No | New body markdown. | |
| board | No | Board slug for the task lookup. Defaults to the configured default board. | |
| title | No | New title. | |
| result | No | Result text when completing a task. | |
| status | No | Target status. 'running' is not allowed because status is set by the dispatcher/claim path. | |
| summary | No | Completion summary forwarded to complete_task. | |
| assignee | No | Profile name to assign to. Pass an empty string to unassign. | |
| metadata | No | Structured completion metadata. | |
| priority | No | Task priority. | |
| block_reason | No | Reason when blocking or scheduling a task. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ok | Yes | ||
| data | No | ||
| scope | No | ||
| run_id | No | ||
| status | Yes | ||
| message | No | ||
| verdict | No | unknown | |
| evidence | No | ||
| mutation | No | ||
| warnings | No | ||
| live_call | No | ||
| retryable | No | ||
| error_code | No | ||
| duration_ms | No | ||
| http_status | No | ||
| policy_tier | No | read_only | |
| artifact_dir | No | ||
| likely_cause | No | ||
| next_actions | No | ||
| safe_next_action | No | ||
| redactions_applied | No |