Create Kanban task
hermes_kanban_task_createCreate a Kanban task with title, body, assignee, priority, parents, triage status, and workspace options. Supports idempotent duplicate handling and redacted receipts for safe task creation.
Instructions
Typed POST /api/plugins/kanban/tasks wrapper that creates a Kanban task with title, body, assignee, priority, parents, triage flag, idempotency key, and workspace options, writing redacted receipts.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | Optional task body markdown. | |
| board | No | Board slug for the task lookup. Defaults to the configured default board. | |
| title | Yes | Task title. | |
| skills | No | Skill names to load into the dispatched worker. | |
| tenant | No | Optional tenant namespace. | |
| triage | No | Create the task in triage status instead of todo. | |
| parents | No | Parent task ids (e.g., t_xxxxxxxx). | |
| assignee | No | Profile name to assign the task to. | |
| priority | No | Task priority; higher is more urgent. | |
| workspace_kind | No | Workspace flavor for the task. | scratch |
| workspace_path | No | Absolute path for dir or worktree workspace kinds. | |
| idempotency_key | No | Caller-provided idempotency key; duplicate requests return the existing task. | |
| max_runtime_seconds | No | Maximum runtime for one worker attempt, in seconds. |
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 |