complete_task
Mark a task as completed, generate a detailed report, and update the dependency status of related tasks to ensure workflow continuity and accountability.
Instructions
Formally mark a task as completed, generate a detailed completion report, and update the dependency status of related tasks
Input Schema
Name | Required | Description | Default |
---|---|---|---|
summary | No | Task completion summary, concise description of implementation results and important decisions (optional, will be automatically generated if not provided) | |
taskId | Yes | Unique identifier of the task to mark as completed, must be a valid unfinished task ID in the status of "in progress" |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"summary": {
"description": "Task completion summary, concise description of implementation results and important decisions (optional, will be automatically generated if not provided)",
"minLength": 30,
"type": "string"
},
"taskId": {
"description": "Unique identifier of the task to mark as completed, must be a valid unfinished task ID in the status of \"in progress\"",
"format": "uuid",
"type": "string"
}
},
"required": [
"taskId"
],
"type": "object"
}