expand_task
Break down complex tasks into smaller, actionable subtasks with AI analysis, dependency detection, and implementation recommendations for efficient project management.
Instructions
Break down a complex task into smaller, manageable subtasks with AI-powered analysis, dependency detection, and implementation recommendations
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| currentComplexity | Yes | ||
| includeAcceptanceCriteria | Yes | ||
| includeDependencies | Yes | ||
| includeEstimates | Yes | ||
| maxDepth | Yes | ||
| maxSubtasks | Yes | ||
| projectType | No | ||
| targetComplexity | Yes | ||
| taskDescription | Yes | ||
| taskTitle | Yes | ||
| teamSkills | No |
Input Schema (JSON Schema)
{
"properties": {
"currentComplexity": {
"type": "number"
},
"includeAcceptanceCriteria": {
"type": "string"
},
"includeDependencies": {
"type": "string"
},
"includeEstimates": {
"type": "string"
},
"maxDepth": {
"type": "string"
},
"maxSubtasks": {
"type": "string"
},
"projectType": {
"type": "string"
},
"targetComplexity": {
"type": "string"
},
"taskDescription": {
"type": "string"
},
"taskTitle": {
"type": "string"
},
"teamSkills": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"taskTitle",
"taskDescription",
"currentComplexity",
"maxSubtasks",
"maxDepth",
"targetComplexity",
"includeEstimates",
"includeDependencies",
"includeAcceptanceCriteria"
],
"type": "object"
}