Create Kanban task link
hermes_kanban_link_createCreate a Kanban dependency link by defining a parent task and a child task, setting the parent-child relationship for task tracking on a specified board.
Instructions
Typed POST /api/plugins/kanban/links wrapper that adds a dependency (parent_id -> child_id), using JSON body for the relationship and optional board query param, writing redacted receipts.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| board | No | Board slug for the link lookup. Defaults to the configured default board. | |
| child_id | Yes | Child task id such as t_xxxxxxxx. | |
| parent_id | Yes | Parent task id such as t_xxxxxxxx. |
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 |