Analytics
Analytics
Section titled “Analytics”Sprint velocity, burndown, and predictability metrics.
Prerequisites
Section titled “Prerequisites”- Authenticated profile (
atlcli auth login) - Jira permission: Browse Projects
- Board with sprint history for velocity/predictability metrics
Velocity
Section titled “Velocity”View story points completed per sprint:
atlcli jira analyze velocity --board 123Options:
| Flag | Description |
|---|---|
--board | Board ID (required) |
--sprints | Number of sprints to analyze (default: 5) |
--points-field | Story points field ID (auto-detected) |
--json | JSON output |
Output:
SPRINT COMMITTED COMPLETED DELTASprint 10 21 18 -3Sprint 11 20 20 0Sprint 12 22 24 +2Sprint 13 20 19 -1Sprint 14 21 21 0
Average velocity: 20.4 points/sprintCommitment accuracy: 91%Story Points Detection
Section titled “Story Points Detection”atlcli automatically detects your story points field by searching for fields named:
- Story Points
- Story point estimate
- Estimation
Override with --field:
atlcli jira analyze velocity --board 123 --field "customfield_10016"Burndown
Section titled “Burndown”Sprint burndown chart data:
atlcli jira analyze burndown --sprint 456Options:
| Flag | Description |
|---|---|
--sprint | Sprint ID (required) |
--points-field | Story points field ID (auto-detected) |
--json | JSON output |
Output:
DATE REMAINING IDEAL2025-01-06 42 422025-01-07 38 362025-01-08 35 302025-01-09 28 242025-01-10 20 182025-01-13 12 122025-01-14 5 6Predictability
Section titled “Predictability”Team predictability metrics:
atlcli jira analyze predictability --board 123Options:
| Flag | Description |
|---|---|
--board | Board ID (required) |
--sprints | Number of sprints to analyze (default: 10) |
Output:
Team Predictability Report (last 10 sprints)
Commitment Accuracy: 89% - Planned vs completed story points
Velocity Variance: 12% - Standard deviation across sprints
Completion Rate: 94% - Percentage of committed issues done
Scope Change: 8% - Issues added during sprintsScope Change Calculation
Section titled “Scope Change Calculation”Scope change is calculated by tracking:
addedDuringSprint: Issues added after sprint startremovedDuringSprint: Issues removed during sprintoriginalCommitment: Issues at sprint start
Sprint Report
Section titled “Sprint Report”Comprehensive sprint analysis:
atlcli jira sprint report 456Options:
| Flag | Description |
|---|---|
--points-field | Story points field ID (auto-detected) |
--json | JSON output |
Output:
Sprint 14 Report================Duration: Jan 6 - Jan 17, 2025 (10 days)Status: Active
SUMMARY-------Total Issues: 24Completed: 18 (75%)In Progress: 4 (17%)Not Started: 2 (8%)
STORY POINTS------------Committed: 21Completed: 16Remaining: 5
SCOPE CHANGES-------------Added: 3 issuesRemoved: 1 issue
TOP CONTRIBUTORS----------------Alice: 8 issues completedBob: 6 issues completedCarol: 4 issues completedJSON Export
Section titled “JSON Export”atlcli jira sprint report 456 --json > sprint-14-report.jsonJSON Output
Section titled “JSON Output”All analytics commands support --json:
atlcli jira analyze velocity --board 123 --json{ "schemaVersion": "1", "board": { "id": 123, "name": "Team Board" }, "sprints": [ { "id": 10, "name": "Sprint 10", "committed": 21, "completed": 18, "delta": -3 } ], "averageVelocity": 20.4, "commitmentAccuracy": 0.91}Best Practices
Section titled “Best Practices”- Consistent estimation - Use same story point scale across team
- Regular analysis - Review velocity trends weekly
- Scope discipline - Track scope changes to improve planning
- Historical data - Analyze at least 5 sprints for meaningful trends
Related Topics
Section titled “Related Topics”- Boards & Sprints - Sprint management
- Fields - Story points field configuration
- Time Tracking - Worklog reports
Jira and Confluence are trademarks of Atlassian Corporation Plc.
atlcli is not affiliated with, endorsed by, or sponsored by Atlassian.