complete_task_status
Update task completion status and manage subtasks efficiently using goal and task IDs. Supports recursive completion of child tasks for streamlined task orchestration.
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 |
---|---|---|---|
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. | |
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"]. |