verify_task
Validate task completion by checking if all requirements and technical standards are fully met, using a unique task ID to ensure accuracy and completeness.
Instructions
Comprehensively verify task completion, ensuring all requirements and technical standards are met without missing details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
taskId | Yes | Unique identifier of the task to verify, must be an existing valid task ID in the system |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"taskId": {
"description": "Unique identifier of the task to verify, must be an existing valid task ID in the system",
"format": "uuid",
"type": "string"
}
},
"required": [
"taskId"
],
"type": "object"
}