generate-tasks
Create implementation plans and task breakdowns from feature requests by analyzing codebases. Generates structured documentation with requirements, numbered tasks, dependencies, and testing guidance for systematic development workflows.
Instructions
Generate tasks.md (implementation plan & task breakdown) from your request and codebase. Writes .spec/specs/tasks.md
with overview, numbered requirements using EARS, implementable tasks (T-1…), dependencies/phases, and testing guidance. Use for “task breakdown”, “create tasks.md”, “implementation plan”, or “roadmap”.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_path | No | Path to the project directory (defaults to current directory) | |
user_request | Yes | Feature request or requirement to plan for |
Input Schema (JSON Schema)
{
"properties": {
"project_path": {
"description": "Path to the project directory (defaults to current directory)",
"type": "string"
},
"user_request": {
"description": "Feature request or requirement to plan for",
"type": "string"
}
},
"required": [
"user_request"
],
"type": "object"
}