subtask_create
Break a task into subtasks by passing an array of titles; each title becomes a new checklist item appended after existing subtasks.
Instructions
Create subtasks (checklist items) for a task. Pass titles as an array — one string per subtask — and each becomes its own record. New subtasks are appended after any that exist.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| titles | Yes | Subtask titles, one per array item — e.g. ["Write it", "Test it"]. Always an array, even for a single subtask. | |
| task_id | Yes | Parent task | |
| depends_on | No | Siblings each new subtask waits on |