parse_prd
Parse a Product Requirements Document (PRD) to generate actionable development tasks using AI-powered analysis. Automate task breakdown, prioritization, estimation, dependency detection, and lifecycle creation for efficient GitHub project management.
Instructions
Parse a Product Requirements Document (PRD) and generate a comprehensive list of actionable development tasks with AI-powered analysis, similar to claude-task-master functionality
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| autoDetectDependencies | Yes | ||
| autoEstimate | Yes | ||
| autoPrioritize | Yes | ||
| contextLevel | Yes | ||
| createLifecycle | Yes | ||
| createTraceabilityMatrix | Yes | ||
| enhancedGeneration | Yes | ||
| includeBusinessContext | Yes | ||
| includeImplementationGuidance | Yes | ||
| includeSubtasks | Yes | ||
| includeTechnicalContext | Yes | ||
| includeUseCases | Yes | ||
| maxTasks | Yes | ||
| prdContent | Yes | ||
| projectId | No | ||
| projectType | No | ||
| targetComplexity | No | ||
| teamSkills | No |
Input Schema (JSON Schema)
{
"properties": {
"autoDetectDependencies": {
"type": "string"
},
"autoEstimate": {
"type": "string"
},
"autoPrioritize": {
"type": "string"
},
"contextLevel": {
"type": "string"
},
"createLifecycle": {
"type": "string"
},
"createTraceabilityMatrix": {
"type": "string"
},
"enhancedGeneration": {
"type": "string"
},
"includeBusinessContext": {
"type": "string"
},
"includeImplementationGuidance": {
"type": "string"
},
"includeSubtasks": {
"type": "string"
},
"includeTechnicalContext": {
"type": "string"
},
"includeUseCases": {
"type": "string"
},
"maxTasks": {
"type": "string"
},
"prdContent": {
"type": "string"
},
"projectId": {
"type": "string"
},
"projectType": {
"type": "string"
},
"targetComplexity": {
"type": "number"
},
"teamSkills": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"prdContent",
"maxTasks",
"includeSubtasks",
"autoEstimate",
"autoPrioritize",
"autoDetectDependencies",
"createLifecycle",
"createTraceabilityMatrix",
"includeUseCases",
"enhancedGeneration",
"contextLevel",
"includeBusinessContext",
"includeTechnicalContext",
"includeImplementationGuidance"
],
"type": "object"
}