원클릭으로
health
Perform a structured codebase health assessment and append results to docs/health-log.md
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Perform a structured codebase health assessment and append results to docs/health-log.md
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | health |
| description | Perform a structured codebase health assessment and append results to docs/health-log.md |
| user-invocable | true |
Perform a structured assessment of the codebase and append results to docs/health-log.md.
This creates a longitudinal record of codebase quality over time.
User says any of:
/healthrun codebase health checkassess codebase healthNone required. All context is derived from the repository.
git rev-parse --short HEAD # Current commit SHA
git log -1 --format=%ci # Commit date
date +%Y-%m-%d # Assessment date
Record:
assessment_date: Today's dategit_sha: Current commit (short)git_date: Date of that commitInspect the following areas:
| Area | What to Check |
|---|---|
| Phase Status | Read implementation-plan.md, identify completed/in-progress phases |
| Source Code | Scan src/ for modules, patterns, code quality |
| Database | Check for migration count and recency |
| Documentation | Verify docs/ files exist and are current |
| Validation | Check scripts/ for validation coverage |
| Tests | Check tests/ for test coverage |
| ADRs | Count ADRs in docs/decisions/ |
| Open Issues | Note any obvious gaps, TODOs, or debt |
Rate each dimension:
| Dimension | Rating | Criteria |
|---|---|---|
| Architecture | Strong / Adequate / Weak | Boundaries enforced? Layers clean? |
| Code Quality | Strong / Adequate / Weak | Patterns consistent? Readable? |
| Documentation | Strong / Adequate / Weak | Current? Complete? Accurate? |
| Test Coverage | Strong / Adequate / Weak | Validation scripts? Unit tests? |
| Technical Debt | None / Low / Medium / High | Shortcuts? Hacks? TODOs? |
| Phase Progress | On Track / Behind / Blocked | Per implementation plan |
List:
Produce a single-paragraph executive summary answering:
Is this codebase healthy, and is it on track?
The assessment MUST be appended to docs/health-log.md in this format:
---
## YYYY-MM-DD | `<git-sha>`
**Phase Status:** Phase N complete, Phase M in progress
### Dimensions
| Dimension | Rating |
|-----------|--------|
| Architecture | ... |
| Code Quality | ... |
| Documentation | ... |
| Test Coverage | ... |
| Technical Debt | ... |
| Phase Progress | ... |
### Risks
- ...
### Recommended Actions
1. ...
### Summary
<Executive summary paragraph>
After appending to the log:
This skill is optional and user-invoked. It does not block any other operations.