update_checklist_item
Modify a task in the checklist by updating its details, description, context, or completion status. Supports structured task management for AI agents.
Instructions
Updates an existing checklist item.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context_and_plan | No | Related information, files the agent should read, and more details from other tasks, as well as a detailed plan for this task | |
detailed_description | No | A longer description about what we want to achieve with this task | |
done | No | Whether the task is completed | |
index | Yes | The index of the checklist item to update (0-based) | |
task | No | A short yet comprehensive name for the task |
Input Schema (JSON Schema)
{
"properties": {
"context_and_plan": {
"description": "Related information, files the agent should read, and more details from other tasks, as well as a detailed plan for this task",
"type": "string"
},
"detailed_description": {
"description": "A longer description about what we want to achieve with this task",
"type": "string"
},
"done": {
"description": "Whether the task is completed",
"type": "boolean"
},
"index": {
"description": "The index of the checklist item to update (0-based)",
"type": "number"
},
"task": {
"description": "A short yet comprehensive name for the task",
"type": "string"
}
},
"required": [
"index"
],
"type": "object"
}