From jira-tools
This skill MUST be used when the user asks to "get sprint info", "show sprint details", "what's in the sprint", "sprint status", "current sprint", "active sprint details", "list sprint issues", "sprint progress", or needs information about a specific sprint. Use this for sprint-level details - use backlog-summary for bulk issue listing across sprints.
npx claudepluginhub ericfisherdev/claude-plugins --plugin jira-toolsThis skill uses the workspace's default tool permissions.
View detailed sprint information including issues, progress, and dates.
Verifies tests pass on completed feature branch, presents options to merge locally, create GitHub PR, keep as-is or discard; executes choice and cleans up worktree.
Guides root cause investigation for bugs, test failures, unexpected behavior, performance issues, and build failures before proposing fixes.
Writes implementation plans from specs for multi-step tasks, mapping files and breaking into TDD bite-sized steps before coding.
View detailed sprint information including issues, progress, and dates.
Use the Python script at scripts/sprint_info.py:
# Get active sprint info for project
python scripts/sprint_info.py PROJ
# Get specific sprint by ID
python scripts/sprint_info.py PROJ --sprint-id 123
# List all sprints for project
python scripts/sprint_info.py PROJ --list-sprints
# Get sprint with issue details
python scripts/sprint_info.py PROJ --include-issues
| Option | Description |
|---|---|
--sprint-id ID | Get specific sprint (default: active sprint) |
--list-sprints | List all sprints for project |
--include-issues | Include issue list in output |
--state STATE | Filter sprints: active, closed, future |
--format FORMAT | Output: compact (default), text, json |
SPRINT|Sprint 23|active|2024-01-15|2024-01-29
PROGRESS|12/20 done|60%|8 story points remaining
SPRINT|Sprint 23|active|2024-01-15|2024-01-29
PROGRESS|12/20 done|60%|8 story points remaining
ISSUES:
PROJ-101|Done|Implement login
PROJ-102|In Progress|Fix validation bug
PROJ-103|To Do|Add dark mode
| State | Description |
|---|---|
active | Currently running sprint |
future | Planned/upcoming sprint |
closed | Completed sprint |
Requires three environment variables:
JIRA_BASE_URL - e.g., https://yoursite.atlassian.netJIRA_EMAIL - Your Jira account emailJIRA_API_TOKEN - API token from Atlassian account settingsThis skill uses the shared Jira cache (~/.jira-tools-cache.json) for:
Sprint info is cached for 4 hours. Use --refresh to force update.
For complete options, see references/options-reference.md.