- 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.5 KiB
Markdown
51 lines
1.5 KiB
Markdown
---
|
|
title: "/project-health"
|
|
description: "/project-health — Claude Code slash command."
|
|
---
|
|
|
|
# /project-health
|
|
|
|
**Type:** Slash Command | **Source:** [`commands/project-health.md`](https://github.com/alirezarezvani/claude-skills/tree/main/commands/project-health.md)
|
|
|
|
---
|
|
|
|
|
|
# /project-health
|
|
|
|
Generate portfolio health dashboards and risk matrices for project oversight.
|
|
|
|
## Usage
|
|
|
|
```
|
|
/project-health dashboard <project_data.json> Portfolio health dashboard
|
|
/project-health risk <risk_data.json> Risk matrix analysis
|
|
```
|
|
|
|
## Input Format
|
|
|
|
```json
|
|
{
|
|
"project_name": "Platform Rewrite",
|
|
"schedule": {"planned_end": "2026-06-30", "projected_end": "2026-07-15", "milestones_hit": 4, "milestones_total": 6},
|
|
"budget": {"allocated": 500000, "spent": 320000, "forecast": 520000},
|
|
"scope": {"features_planned": 40, "features_delivered": 28, "change_requests": 3},
|
|
"quality": {"defect_rate": 0.05, "test_coverage": 0.82},
|
|
"risks": [{"description": "Key engineer leaving", "probability": 0.3, "impact": 0.8}]
|
|
}
|
|
```
|
|
|
|
## Examples
|
|
|
|
```
|
|
/project-health dashboard portfolio-q2.json
|
|
/project-health risk risk-register.json
|
|
/project-health dashboard portfolio-q2.json --format json
|
|
```
|
|
|
|
## Scripts
|
|
- `project-management/senior-pm/scripts/project_health_dashboard.py` — Health dashboard (`<data_file> [--format text|json]`)
|
|
- `project-management/senior-pm/scripts/risk_matrix_analyzer.py` — Risk matrix analyzer (`<data_file> [--format text|json]`)
|
|
|
|
## Skill Reference
|
|
> `project-management/senior-pm/SKILL.md`
|