- Extended generate-docs.py to auto-generate agent and command documentation pages - Added extract_subtitle() for meaningful command descriptions in index - Added Agents nav section (14 entries) and Commands nav section (12 entries) to mkdocs.yml - Updated docs/index.md: 170 skills, 237 tools, 14 agents, 12 commands, Gemini CLI - Updated docs/getting-started.md: Gemini CLI tab, 237 tools, fixed brand_voice path, new FAQs - Regenerated all 203 docs pages (177 skills + 14 agents + 12 commands) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
51 lines
1.4 KiB
Markdown
51 lines
1.4 KiB
Markdown
---
|
|
title: "/sprint-health"
|
|
description: "/sprint-health — Claude Code slash command."
|
|
---
|
|
|
|
# /sprint-health
|
|
|
|
**Type:** Slash Command | **Source:** [`commands/sprint-health.md`](https://github.com/alirezarezvani/claude-skills/tree/main/commands/sprint-health.md)
|
|
|
|
---
|
|
|
|
|
|
# /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
|
|
- `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`
|