Command
/project-health
Portfolio health dashboard and risk matrix analysis. Usage: /project-health <dashboard|risk> [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
/project-health
Context preview
What this command does when you run it.
Portfolio health dashboard and risk matrix analysis. Usage: /project-health <dashboard|risk> [options]
Stats
Stars23,058
Forks3,139
LanguagePython
LicenseMIT
Ships with claude-skills
Command definition
project-health.md
--- name: project-health description: "Portfolio health dashboard and risk matrix analysis. Usage: /project-health <dashboard|risk> [options]" argument-hint: "<dashboard|risk> [options]" --- # /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
