add_todo
Add a new task to your todo list by providing a title, enabling persistent task management through natural language commands.
Instructions
Add a todo item
Input Schema
Name | Required | Description | Default |
---|---|---|---|
title | Yes |
Input Schema (JSON Schema)
{
"properties": {
"title": {
"minLength": 1,
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
}