plan_sprint
Organize and schedule sprints by selecting GitHub issues, defining goals, and setting start and end dates for efficient project management.
Instructions
Plan a new sprint with selected issues
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issueIds | Yes | ||
sprint | Yes |
Input Schema (JSON Schema)
{
"properties": {
"issueIds": {
"items": {
"type": "string"
},
"type": "array"
},
"sprint": {
"properties": {
"endDate": {
"type": "string"
},
"goals": {
"items": {
"type": "string"
},
"type": "array"
},
"startDate": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"title",
"startDate",
"endDate",
"goals"
],
"type": "object"
}
},
"required": [
"sprint",
"issueIds"
],
"type": "object"
}