Files
claude-skills-reference/docs/commands/sprint-health.md
Reza Rezvani 670930c69d feat(docs): implement unified design system across all generated pages
- Add CSS components: .page-meta badges, .domain-header, .install-banner
- Fix invisible tab navigation (explicit color for light/dark modes)
- Rewrite generate-docs.py with design system templates
- Domain indexes: centered headers with icons, install banners, grid cards
- Skill pages: pill badges (domain, skill ID, source), install commands
- Agent/command pages: type badges with domain icons
- Regenerate all 210 pages (180 skills + 15 agents + 15 commands)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-11 12:32:49 +01:00

1.4 KiB

title, description
title description
/sprint-health /sprint-health — Claude Code slash command.

/sprint-health

:material-console: Slash Command :material-github: Source

Score sprint health across delivery, quality, and team metrics with velocity trend analysis.

Usage

/sprint-health analyze <sprint_data.json>                    Full sprint health score
/sprint-health velocity <sprint_data.json>                   Velocity trend analysis

Input Format

{
  "sprint_name": "Sprint 24",
  "committed_points": 34,
  "completed_points": 29,
  "stories": {"total": 12, "completed": 10, "carried_over": 2},
  "blockers": [{"description": "API dependency", "days_blocked": 3}],
  "ceremonies": {"planning": true, "daily": true, "review": true, "retro": true}
}

Examples

/sprint-health analyze sprint-24.json
/sprint-health velocity last-6-sprints.json
/sprint-health analyze sprint-24.json --format json

Scripts

  • project-management/scrum-master/scripts/sprint_health_scorer.py — Sprint health scorer (<data_file> [--format text|json])
  • project-management/scrum-master/scripts/velocity_analyzer.py — Velocity analyzer (<data_file> [--format text|json])

Skill Reference

project-management/scrum-master/SKILL.md