Analytics¶
Sprint velocity, burndown, and predictability metrics.
Velocity¶
View story points completed per sprint:
Options:
| Flag | Description |
|---|---|
--board | Board ID (required) |
--sprints | Number of sprints to analyze (default: 5) |
--field | Story points field name (auto-detected) |
--format | Output format: table, json, chart |
Output:
SPRINT COMMITTED COMPLETED DELTA
Sprint 10 21 18 -3
Sprint 11 20 20 0
Sprint 12 22 24 +2
Sprint 13 20 19 -1
Sprint 14 21 21 0
Average velocity: 20.4 points/sprint
Commitment accuracy: 91%
Story Points Detection¶
atlcli automatically detects your story points field by searching for fields named:
- Story Points
- Story point estimate
- Estimation
Override with --field:
Burndown¶
Sprint burndown chart data:
Options:
| Flag | Description |
|---|---|
--sprint | Sprint ID (required) |
--ideal | Include ideal burndown line |
--format | Output format: table, json, chart |
Output:
DATE REMAINING IDEAL
2025-01-06 42 42
2025-01-07 38 36
2025-01-08 35 30
2025-01-09 28 24
2025-01-10 20 18
2025-01-13 12 12
2025-01-14 5 6
Chart Output¶
Outputs ASCII chart:
Points
42 |*
36 | \ *
30 | \ *
24 | \ *
18 | \ *
12 | \ *
6 | \ *
0 +--+--+--+--+--+--+--+--
M T W T F M T W
* Actual \ Ideal
Predictability¶
Team predictability metrics:
Options:
| 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 sprints
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¶
Comprehensive sprint analysis:
Options:
| Flag | Description |
|---|---|
--sprint | Sprint ID (required) |
--format | Output format: table, json, markdown |
Output:
Sprint 14 Report
================
Duration: Jan 6 - Jan 17, 2025 (10 days)
Status: Active
SUMMARY
-------
Total Issues: 24
Completed: 18 (75%)
In Progress: 4 (17%)
Not Started: 2 (8%)
STORY POINTS
------------
Committed: 21
Completed: 16
Remaining: 5
SCOPE CHANGES
-------------
Added: 3 issues
Removed: 1 issue
TOP CONTRIBUTORS
----------------
Alice: 8 issues completed
Bob: 6 issues completed
Carol: 4 issues completed
Markdown Export¶
JSON Output¶
All analytics commands support --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¶
- 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