task-executor
Execute specific development tasks by providing detailed implementation guidance, requirements, acceptance criteria, and code patterns for systematic project completion.
Instructions
Executes a specific task from tasks.md by providing detailed implementation guidance, requirements, acceptance criteria, and code patterns. This tool focuses on implementing one task thoroughly.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_path | No | Path to the project directory (defaults to current directory) | |
task_id | Yes | Task ID to execute (e.g., T-1, T-2) | |
update_status | No | Whether to include instructions for updating task status (default: true) |
Input Schema (JSON Schema)
{
"properties": {
"project_path": {
"description": "Path to the project directory (defaults to current directory)",
"type": "string"
},
"task_id": {
"description": "Task ID to execute (e.g., T-1, T-2)",
"type": "string"
},
"update_status": {
"description": "Whether to include instructions for updating task status (default: true)",
"type": "boolean"
}
},
"required": [
"task_id"
],
"type": "object"
}