add_checklist_item
Add a new task to a checklist with details like task name, description, context, and position. Enables AI agents to manage and track progress on complex tasks efficiently.
Instructions
Adds a new item to the checklist.
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 | Yes | A longer description about what we want to achieve with this task | |
done | No | Whether the task is already completed | |
position | No | Optional position to insert the task (0-based index). If not provided, the task will be added at the end. | |
task | Yes | 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": {
"default": false,
"description": "Whether the task is already completed",
"type": "boolean"
},
"position": {
"description": "Optional position to insert the task (0-based index). If not provided, the task will be added at the end.",
"type": "number"
},
"task": {
"description": "A short yet comprehensive name for the task",
"type": "string"
}
},
"required": [
"task",
"detailed_description"
],
"type": "object"
}