task-checker
Verify task acceptance criteria by checking completion checkboxes with quoted evidence. Returns a PASS/FAIL decision rule for task validation in development workflows.
Instructions
Prompt-only verification: instructs the agent to verify acceptance criteria checkboxes for a task with quoted evidence. Returns a PASS/FAIL decision rule to apply.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_path | No | Path to project (defaults to current directory) | |
task_id | Yes | Task ID to check (e.g., T-1, T-2) |
Input Schema (JSON Schema)
{
"properties": {
"project_path": {
"description": "Path to project (defaults to current directory)",
"type": "string"
},
"task_id": {
"description": "Task ID to check (e.g., T-1, T-2)",
"type": "string"
}
},
"required": [
"task_id"
],
"type": "object"
}