mark_task_done
Updates the status of a checklist item to completed by specifying its index, aiding in task tracking within structured JSON workflows.
Instructions
Marks a checklist item as done.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
index | Yes | The index of the checklist item to mark as done (0-based) |
Input Schema (JSON Schema)
{
"properties": {
"index": {
"description": "The index of the checklist item to mark as done (0-based)",
"type": "number"
}
},
"required": [
"index"
],
"type": "object"
}