项目健康度

project-health
分类数据
作者Alireza Rezvani
许可MIT
评分4.20/5
使用13.6K

/project-health

生成项目组合健康度仪表盘和风险矩阵,用于项目监管。

用法

code
/project-health dashboard <project_data.json>                项目组合健康度仪表盘
/project-health risk <risk_data.json>                        风险矩阵分析

输入格式

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}]
}

示例

code
/project-health dashboard portfolio-q2.json
/project-health risk risk-register.json
/project-health dashboard portfolio-q2.json --format json

脚本

  • project-management/skills/senior-pm/scripts/project_health_dashboard.py — 健康度仪表盘 (<data_file> [--format text|json])
  • project-management/skills/senior-pm/scripts/risk_matrix_analyzer.py — 风险矩阵分析器 (<data_file> [--format text|json])

技能参考

> project-management/skills/senior-pm/SKILL.md