Agent skill
sprint
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.
Install this agent skill to your Project
npx add-skill https://github.com/rlcurrall/aide/tree/main/skills/sprint
SKILL.md
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
# Get active sprint for a board
aide jira sprint 123
# Get future sprints
aide jira sprint 123 --state future
# Get closed sprints
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-boardto search issues in the sprint - Use ticket skill to view details on specific issues
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
release
Create a new software release by bumping version numbers, committing changes, creating git tags, and pushing to remote. Use when creating a release, bumping versions, or publishing a new version.
ticket-attach
Manage Jira ticket attachments. Use when the user wants to list, upload, download, or delete attachments on a ticket.
pr-comments
Load PR comments and feedback for code review. Use when the user wants to see reviewer feedback, check for unresolved comments, understand what changes are requested, or review discussion on a PR.
pr-list
List pull requests from the repository. Use when the user wants to see open PRs, find PRs to review, check their own PRs, or browse PR history.
ticket-update
Update fields on an existing Jira ticket. Use when the user wants to modify a ticket's summary, description, assignee, priority, labels, or custom fields.
pr-create
Create a new pull request. Use when the user wants to open a PR, submit code for review, create a draft PR, or push changes for merge.
Didn't find tool you were looking for?