- AgentHub: 13 files updated with non-engineering examples (content drafts, research, strategy) — engineering stays primary, cross-domain secondary - AgentHub: 7 slash commands, 5 Python scripts, 3 references, 1 agent, dry_run.py validation (57 checks) - Marketplace: agenthub entry added with cross-domain keywords, engineering POWERFUL updated (25→30), product (12→13), counts synced across all configs - SEO: generate-docs.py now produces keyword-rich <title> tags and meta descriptions using SKILL.md frontmatter — "Claude Code Skills" in site_name propagates to all 276 HTML pages - SEO: per-domain title suffixes (Agent Skill for Codex & OpenClaw, etc.), slug-as-title cleanup, domain label stripping from titles - Broken links: 141→0 warnings — new rewrite_skill_internal_links() converts references/, scripts/, assets/ links to GitHub source URLs; skills/index.md phantom slugs fixed (6 marketing, 7 RA/QM) - Counts synced: 204 skills, 266 tools, 382 refs, 16 agents, 17 commands, 21 plugins — consistent across CLAUDE.md, README.md, docs/index.md, marketplace.json, getting-started.md, mkdocs.yml - Platform sync: Codex 163 skills, Gemini 246 items, OpenClaw compatible Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
50 lines
1.7 KiB
Markdown
50 lines
1.7 KiB
Markdown
---
|
|
title: "/project-health — Slash Command for AI Coding Agents"
|
|
description: "Portfolio health dashboard and risk matrix analysis. Usage: /project-health <dashboard|risk> [options]. Slash command for Claude Code, Codex CLI, Gemini CLI."
|
|
---
|
|
|
|
# /project-health
|
|
|
|
<div class="page-meta" markdown>
|
|
<span class="meta-badge">:material-console: Slash Command</span>
|
|
<span class="meta-badge">:material-github: <a href="https://github.com/alirezarezvani/claude-skills/tree/main/commands/project-health.md">Source</a></span>
|
|
</div>
|
|
|
|
|
|
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`
|