create_task
Create a new task with title, description, status, priority, dates, assignees, tags, and task relationships like subtasks, blockers, and related tasks.
Instructions
Create a new task with title, description, status, priority, size, dates, dartboard, assignees, tags, and task relationships (subtasks, blockers, related tasks)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Task title (max 500 chars) | |
| description | No | Task description (markdown supported) | |
| dartboard | Yes | Dartboard dart_id (use get_config to find) | |
| status | No | Status name or dart_id | |
| priority | No | Priority 1-5 (1=lowest, 5=highest) | |
| size | No | Size estimate 1-5 | |
| assignees | No | Array of assignee dart_ids | |
| tags | No | Array of tag dart_ids | |
| due_at | No | Due date (ISO8601) | |
| start_at | No | Start date (ISO8601) | |
| parent_task | No | Parent task dart_id for subtasks | |
| subtask_ids | No | IDs of tasks that are subtasks (children) of this task. Each ID must be a valid dart_id format. | |
| blocker_ids | No | IDs of tasks that block this task from being started or completed. Each ID must be a valid dart_id format. | |
| blocking_ids | No | IDs of tasks that this task is blocking. Each ID must be a valid dart_id format. | |
| duplicate_ids | No | IDs of tasks that are duplicates of this task. Each ID must be a valid dart_id format. | |
| related_ids | No | IDs of tasks that are related to this task (loosely connected). Each ID must be a valid dart_id format. | |
| comment | No | Optional comment to add after creating the task (non-blocking) |