From jira-tools
This skill MUST be used when the user asks for "sprint report", "sprint summary", "sprint burndown", "sprint velocity", "sprint metrics", "how is the sprint going", "sprint health", "sprint completion", or needs a detailed analysis of sprint progress and performance.
npx claudepluginhub ericfisherdev/claude-plugins --plugin jira-toolsThis skill uses the workspace's default tool permissions.
Generate detailed sprint reports with progress metrics, issue breakdown, and velocity data.
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.
Generate detailed sprint reports with progress metrics, issue breakdown, and velocity data.
Use the Python script at scripts/sprint_report.py:
# Report for active sprint
python scripts/sprint_report.py PROJ
# Report for specific sprint
python scripts/sprint_report.py PROJ --sprint-id 123
# Include detailed issue breakdown
python scripts/sprint_report.py PROJ --detailed
# Compare with previous sprints (velocity)
python scripts/sprint_report.py PROJ --velocity
| Option | Description |
|---|---|
PROJECT | Project key (required) |
--sprint-id ID | Report for specific sprint (default: active) |
--detailed | Include issue-by-issue breakdown |
--velocity | Include velocity comparison with past sprints |
--format FORMAT | Output: compact (default), text, json |
SPRINT|Sprint 23|active|2024-01-15|2024-01-29|60%
ISSUES|12/20 done|5 in-progress|3 todo
POINTS|21/34|13 remaining
SPRINT|Sprint 23|active|2024-01-15|2024-01-29|60%
ISSUES|12/20 done|5 in-progress|3 todo
POINTS|21/34|13 remaining
VELOCITY|34|avg:32|trend:up
Sprint Report: Sprint 23
========================
Status: active
Period: 2024-01-15 to 2024-01-29
Progress
--------
Issues: 12/20 done (60%)
- In Progress: 5
- To Do: 3
Story Points: 21/34 completed
- Remaining: 13 points
Velocity
--------
Current Sprint: 34 points planned
Average (3 sprints): 32 points
Trend: Improving
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 settingsFor complete options and metrics explanation, see references/options-reference.md.