Skill: mark-todo-complete
- •Purpose: To change the completion status of an existing todo task.
- •Description: This skill toggles the
completedstatus of a task identified by itstask_id. - •Parameters:
- •
task_id(integer, required): The unique identifier of the task to mark. - •
completed(boolean, required):trueto mark as complete,falseto mark as incomplete.
- •
- •Returns: A dictionary containing the
id,title, and newcompletedstatus of the task. - •Usage (Conceptual):
code
skill: "mark-todo-complete" { task_id: 2, completed: true }