| name | sprint |
| description | Get sprint information for a Jira board. Use when the user wants to find the current/active sprint, check sprint dates, or see sprint goals. |
| allowed-tools | Bash(aide:*) |
Get Sprint Information
Get sprint details for a Jira board, filtered by state.
When to Use
- User asks "what's the current sprint?" or "what sprint are we in?"
- User needs the active sprint ID to search for issues
- User wants to see sprint dates or goals
How to Execute
Run:
aide jira sprint <boardId> [--state active|future|closed] [--format text|json|markdown]
Arguments
| Argument | Description |
|---|
boardId | Board ID (from boards command) |
Flags
| Flag | Description |
|---|
--state | Sprint state filter (default: active) |
--format | Output format: text, json, markdown |
Examples
aide jira sprint 123
aide jira sprint 123 --state future
aide jira sprint 123 --state closed
Output Includes
- Sprint ID
- Sprint name
- State (future, active, closed)
- Start and end dates
- Sprint goal (if set)
Common Workflow
To find "what's on the board right now":
- Find the board:
aide jira boards PROJ
- Get the active sprint:
aide jira sprint <boardId>
- Search for issues in that sprint:
aide jira search "assignee = currentUser()" --sprint-board <boardId>
The --sprint-board flag on the search command combines steps 2 and 3 automatically.
Next Steps
After finding the active sprint:
- Use ticket-search skill with
--sprint-board to search issues in the sprint
- Use ticket skill to view details on specific issues