complete_task_status
Update task completion status in Task Orchestration by specifying task IDs and goal ID. Optionally complete child tasks recursively to ensure task dependencies are met.
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"]. |