Files
claude-skills-reference/docs/commands/project-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.6 KiB

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

/project-health

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

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

{
  "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