Software Planning Tool

add_todo

Add a new todo item to the current plan

Input Schema

NameRequiredDescriptionDefault
codeExampleNoOptional code example
complexityYesComplexity score (0-10)
descriptionYesDetailed description of the todo item
titleYesTitle of the todo item

Input Schema (JSON Schema)

{ "properties": { "codeExample": { "description": "Optional code example", "type": "string" }, "complexity": { "description": "Complexity score (0-10)", "maximum": 10, "minimum": 0, "type": "number" }, "description": { "description": "Detailed description of the todo item", "type": "string" }, "title": { "description": "Title of the todo item", "type": "string" } }, "required": [ "title", "description", "complexity" ], "type": "object" }