Manage Tasks
manage_tasksManage task priorities, blockers, and stale items to streamline development. Query next actionable tasks, complete them with artifacts, and automatically prune idle work.
Instructions
Task prioritization, workflow execution, blockers, and stale task management. Supported actions: next (query prioritized unblocked tasks), complete (mark done and optionally create artifact), find_blocked (find tasks blocked by a decision), find_stale (find idle/untouched tasks), find_blockers (find active blockers), find_similar_blockers (TF-IDF search for previously resolved blockers), auto_prune (cancel stale in-progress tasks).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | Node type filter for find_stale. | |
| limit | No | Maximum tasks to return (1-1000). | |
| query | No | Query text for find_similar_blockers. | |
| action | No | The task management action to execute. | |
| status | No | Status filter for find_stale. | |
| node_id | No | Optional node ID to check blockers for. | |
| project | No | Target project name or slug. | |
| task_id | No | Task node ID to complete. | |
| threshold | No | Similarity threshold for find_similar_blockers (0.0 - 1.0). | |
| git_branch | No | Git branch filter. | |
| older_than | No | Duration threshold for staleness (e.g. 7d, 24h, 30m). | |
| decision_id | No | Decision node ID for find_blocked. | |
| target_status | No | Target status to assign when auto-pruning (e.g. cancelled). | |
| artifact_title | No | Optional title of artifact produced on complete. | |
| include_context | No | Whether to include parent plan/milestone and blocker context on next. | |
| visual_state_id | No | Optional visual state ID to link on complete. | |
| artifact_metadata | No | Optional metadata for produced artifact. | |
| artifact_file_path | No | Optional file path for produced artifact. | |
| include_transitive | No | Whether to include transitive blockers. | |
| visual_relationship | No | Visual relationship for complete (default: renders_state). |