create_task
Create a new task with a title and payload, and optionally set its priority, state, assigned agent, workflow, or parent task for organized tracking.
Instructions
Create a new task in the task tracking system
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| state | No | Task state (queued, in_progress, done, failed, blocked) | |
| title | Yes | Task title | |
| agent_id | No | ID of agent assigned to task (optional) | |
| priority | No | Task priority (default: 100, lower = higher priority) | |
| description | No | Task description (optional) | |
| workflow_id | No | ID of workflow this task belongs to (optional) | |
| payload_json | Yes | Task payload as JSON string | |
| parent_task_id | No | ID of parent task for subtasks (optional) |