update_todo_status
Modify the completion status of a specific todo item using its ID in the Software Planning Tool, enabling accurate progress tracking and task management during software development planning.
Instructions
Update the completion status of a todo item
Input Schema
Name | Required | Description | Default |
---|---|---|---|
isComplete | Yes | New completion status | |
todoId | Yes | ID of the todo item |
Input Schema (JSON Schema)
{
"properties": {
"isComplete": {
"description": "New completion status",
"type": "boolean"
},
"todoId": {
"description": "ID of the todo item",
"type": "string"
}
},
"required": [
"todoId",
"isComplete"
],
"type": "object"
}