create task
create_taskCreates a new task in the task repository, letting developers capture requirements, user stories, or subtasks with state, timestamps, and parent-task links for project tracking.
Instructions
Create a new task in the task repo system.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| task | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Name of the task | |
| uuid | Yes | Unique identifier for the task | |
| state | Yes | Current state of the task (e.g., 'in_progress', 'completed') | |
| created_at | Yes | Timestamp when the task was created | |
| started_at | No | Timestamp when the task was started | |
| parent_task | No | UUID of the parent task if this is a subtask |