complete_task
Mark a specific task as completed using its unique identifier to track progress and maintain an organized task list.
Instructions
Mark a task as completed
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| taskId | Yes | Task ID (use first 8 characters) |
Input Schema (JSON Schema)
{
"properties": {
"taskId": {
"description": "Task ID (use first 8 characters)",
"minLength": 8,
"type": "string"
}
},
"required": [
"taskId"
],
"type": "object"
}