add_todo
Add a new task to your software development plan by specifying its title, description, complexity score, and optional code example for efficient project management.
Instructions
Add a new todo item to the current plan
Input Schema
Name | Required | Description | Default |
---|---|---|---|
codeExample | No | Optional code example | |
complexity | Yes | Complexity score (0-10) | |
description | Yes | Detailed description of the todo item | |
title | Yes | Title 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"
}