create_subtask
Create a subtask linked to a parent task by setting the 'depends' field for automatic dependency tracking.
Instructions
Create a subtask with depends: linking to a parent task.
Args: parent_uuid: UUID of the parent task this subtask depends on. description: Task description (imperative, actionable). project: Project name in dot-notation (e.g. 'work.acme'). priority: H, M, or L. tags: List of tags (e.g. ["python", "docker"]). due: Due date (ISO format or Taskwarrior relative like 'eow'). extra_fields: Additional UDA fields. Example: {"scope": "personal", "phase": "impl"}
The subtask will have a 'depends' field set to the parent UUID. Call get_schema_info first to see required and available fields.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| parent_uuid | Yes | ||
| description | Yes | ||
| project | No | ||
| priority | No | ||
| tags | No | ||
| due | No | ||
| extra_fields | No | ||
| dry_run | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |