Command
/sprint-health
Sprint health scoring and velocity analysis for agile teams. Usage: /sprint-health <analyze|velocity> [options]
One command from claude-skills.
shell
$ npx -y skills add alirezarezvani/claude-skills --agent claude-codeShips with claude-skills. Installing the plugin gets this command.
How it fires
How this command gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/sprint-health
Context preview
What this command does when you run it.
Sprint health scoring and velocity analysis for agile teams. Usage: /sprint-health <analyze|velocity> [options]
Stats
Stars23,060
Forks3,139
LanguagePython
LicenseMIT
Ships with claude-skills
Command definition
sprint-health.md
--- name: sprint-health description: "Sprint health scoring and velocity analysis for agile teams. Usage: /sprint-health <analyze|velocity> [options]" argument-hint: "<analyze|velocity> [options]" --- # /sprint-health 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 ```json { "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
