complete_task_status
Update task completion status within goals using dot-notation IDs, optionally completing child tasks recursively.
Instructions
Update the completion status of tasks. Task IDs use a dot-notation (e.g., "1", "1.1", "1.1.1"). Responses will return simplified task objects without createdAt, updatedAt, or parentId.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| goalId | Yes | ID of the goal containing the tasks (number) | |
| taskIds | Yes | IDs of the tasks to update (array of strings). Example: ["1.1", "1.2"]. | |
| completeChildren | No | Whether to complete all child tasks recursively (boolean). Defaults to false. If false, a task can only be completed if all its subtasks are already complete. |