get_next_task
Receive AI-driven task recommendations for GitHub projects, considering priorities, dependencies, team skills, and sprint capacity to streamline workflow management.
Instructions
Get AI-powered recommendations for the next task to work on based on priorities, dependencies, team capacity, and current project state
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignee | No | ||
currentPhase | No | ||
excludeBlocked | Yes | ||
featureId | No | ||
includeAnalysis | Yes | ||
limit | Yes | ||
maxComplexity | No | ||
projectId | No | ||
sprintCapacity | No | ||
teamSkills | No |
Input Schema (JSON Schema)
{
"properties": {
"assignee": {
"type": "string"
},
"currentPhase": {
"enum": [
"planning",
"development",
"testing",
"review",
"deployment"
]
},
"excludeBlocked": {
"type": "string"
},
"featureId": {
"type": "string"
},
"includeAnalysis": {
"type": "string"
},
"limit": {
"type": "string"
},
"maxComplexity": {
"type": "number"
},
"projectId": {
"type": "string"
},
"sprintCapacity": {
"type": "number"
},
"teamSkills": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"excludeBlocked",
"includeAnalysis",
"limit"
],
"type": "object"
}