- Fix 12 command files: correct CLI arg syntax, script paths, and usage docs - Fix 3 agents with broken script/reference paths (cs-content-creator, cs-demand-gen-specialist, cs-financial-analyst) - Add complete YAML frontmatter to 5 agents (cs-growth-strategist, cs-engineering-lead, cs-senior-engineer, cs-financial-analyst, cs-quality-regulatory) - Fix cs-ceo-advisor related agent path - Update marketplace.json metadata counts (224 tools, 341 refs, 14 agents, 12 commands) Verified: all 19 scripts pass --help, all 14 agent paths resolve, mkdocs builds clean. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
44 lines
1.2 KiB
Markdown
44 lines
1.2 KiB
Markdown
---
|
|
name: sprint-health
|
|
description: Sprint health scoring and velocity analysis for agile teams. Usage: /sprint-health <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
|
|
- `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`
|