一键导入
health
Display project health dashboard with up to 8 dimensions (mode-dependent: 8 Full / 3 Lightweight / disabled Micro). Triggered by /gse:health.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Display project health dashboard with up to 8 dimensions (mode-dependent: 8 Full / 3 Lightweight / disabled Micro). Triggered by /gse:health.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Deploy the current project to a Hetzner server via Coolify. Adapts to the user's situation: from zero infrastructure (solo) to a pre-configured shared server (training). Triggered by /gse:deploy.
Reload checkpoint, verify worktrees, brief user. Triggered by /gse:resume.
Deploy the current project to a Hetzner server via Coolify. Adapts to the user's situation: from zero infrastructure (solo) to a pre-configured shared server (training). Triggered by /gse:deploy.
Reload checkpoint, verify worktrees, brief user. Triggered by /gse:resume.
Route capitalized solutions to their targets. Triggered by /gse:integrate after compound.
Full GSE-One orchestrator methodology — load when you need the complete invariant text, failure modes, and edge cases beyond the condensed AGENTS.md summary.
| name | health |
| description | Display project health dashboard with up to 8 dimensions (mode-dependent: 8 Full / 3 Lightweight / disabled Micro). Triggered by /gse:health. |
Arguments: $ARGUMENTS
| Flag / Sub-command | Description |
|---|---|
| (no args) | Show full health dashboard |
--dimension DIM | Show detail for a specific dimension |
--trend | Show health score trend across sprints |
--alerts-only | Show only dimensions with risk alerts |
--help | Show this command's usage summary |
Before executing, read:
.gse/status.yaml — current health scores, sprint state, and engagement counters (consecutive_acceptances — the ai_integrity input).gse/config.yaml — health.disabled_dimensions (if any).gse/backlog.yaml — task statuses for computation.gse/profile.yaml — apply P9 Adaptive Communication to all outputdocs/sprints/sprint-{NN}/review.md — review findings (if exists)Read .gse/config.yaml → lifecycle.mode:
/gse:go to upgrade to Lightweight or Full if you want quality telemetry." Exit the activity.test_pass_rate, review_findings, git_hygiene. The other 5 (requirements_coverage, design_debt, complexity_budget, traceability, ai_integrity) are marked "not computed in Lightweight mode" in the detail view and excluded from the overall score denominator.If config.yaml specifies health.disabled_dimensions, also exclude those from the set active for the current mode, and adjust the overall score denominator accordingly.
Calculate each active health dimension on a 0-10 scale (spec §7.1).
Computed from 6 sub-metrics (each on 0-10, then weighted):
| Sub-metric | Weight | Score 10 | Score 0 |
|---|---|---|---|
| Active branches | 20% | ≤3 | >10 |
| Stale branches | 20% | 0 | >3 |
| Uncommitted changes | 20% | 0 across all worktrees | >5 files |
| Merge conflicts | 20% | 0 | >0 |
| Main clean | 10% | Clean + tagged | Dirty |
| Unreviewed branches | 10% | 0 | >2 |
git_hygiene = sum(sub_metric * weight)
Computed from 3 factors (each on 0-10, then weighted):
| Factor | Weight | Computation |
|---|---|---|
| Unverified assertions | 40% | Count of [AI-INTEGRITY] findings from devil's advocate |
| Hallucination findings | 30% | Libraries or APIs flagged as non-existent |
| User engagement | 30% | Based on consecutive_acceptances — high count indicates complaisance risk |
Engagement scoring:
overall = sum(enabled_dimensions) / count(enabled_dimensions)
Dimensions listed in health.disabled_dimensions are excluded from both numerator and denominator.
Generate actionable warnings for concerning dimensions:
RISK ALERTS
[!] test_pass_rate: 4.5/10 — 3 failing tests in TASK-005
Action: run /gse:fix --task TASK-005
[!] git_hygiene: 5.5/10 — 2 stale branches, 1 worktree with uncommitted changes
Action: review stale branches, commit or stash uncommitted work
[!] ai_integrity: 6.0/10 — 8 consecutive user acceptances without modification
Action: review recent outputs critically, consider challenging assumptions
Threshold for alert: dimension score below 7.
If --trend is specified, show health evolution across sprints:
HEALTH TREND
Sprint | Overall | Req | Test | Debt | Review | Budget | Trace | Git | AI
S01 | 7.2 | 8.0 | 6.5 | 7.0 | 7.5 | 9.0 | 6.0 | 7.0 | 6.5
S02 | 7.8 | 8.5 | 7.0 | 7.5 | 8.0 | 8.5 | 7.0 | 7.5 | 8.0
S03 | 6.8 | 8.5 | 4.5 | 7.0 | 6.0 | 4.0 | 7.5 | 7.0 | 6.0
^^ ^^
declining declining
Mark dimensions with declining trend (2+ consecutive drops).
If --dimension DIM is specified, show detailed breakdown:
DIMENSION: git_hygiene (7.5/10)
Sub-metrics:
Active branches: 10/10 (weight 20%) — 3 active (≤ 3 → full score)
Stale branches: 6/10 (weight 20%) — 2 stale: gse/sprint-01/feat/old, gse/sprint-01/doc/readme
Uncommitted changes: 4/10 (weight 20%) — .worktrees/sprint-02-feat-api has 5 uncommitted files
Merge conflicts: 10/10 (weight 20%) — no conflicts detected
Main clean: 10/10 (weight 10%) — main matches last delivery
Unreviewed branches: 5/10 (weight 10%) — 1 unreviewed: gse/sprint-02/feat/api
Recommendations:
1. Commit or stash changes in sprint-02-feat-api worktree
2. Review or delete stale branches from sprint-01
3. Run /gse:review for unreviewed feature branches
status.yaml with computed health scoresdocs/health-history.yaml with current sprint scores