hivemind_tasks
hivemind_tasks
View derived tasks from the event log. Tasks are computed from task.created, task.completed, task.failed, and task.blocked events.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| status | string | No | Filter by status: "active", "completed", "failed", "blocked" |
| channel | string | No | Filter by channel |
| since | string | No | ISO 8601 datetime lower bound |
| limit | number | No | Max results (default 20) |
Example
hivemind_tasks(status: "active")
Returns all currently active tasks — tasks that have a task.created event but no corresponding task.completed or task.failed event.
Example with Filters
hivemind_tasks(status: "completed", channel: "backend", limit: 10)