remove_todo
Remove a specific todo item from your software development plan by providing its unique ID, ensuring your task list remains up-to-date and organized.
Instructions
Remove a todo item from the current plan
Input Schema
Name | Required | Description | Default |
---|---|---|---|
todoId | Yes | ID of the todo item to remove |
Input Schema (JSON Schema)
{
"properties": {
"todoId": {
"description": "ID of the todo item to remove",
"type": "string"
}
},
"required": [
"todoId"
],
"type": "object"
}