add-health-checklisted
Install: claude install-skill brabos-ai/code-addiction
# Health Check
<!-- uses:
- mention: add-security-audit
- skill: add-health-check/context-discovery.md
-->
Suite of skills for complete technical analysis of the project. Always consult `CLAUDE.md` for general project standards.
## When NOT to Use
- Single-file or single-function review (use code-review)
- Security-only audit (use add-security-audit)
- Code-review tasks on PRs or diffs
---
## Architecture
```
/tech-health-check
├── PHASE 1 - DISCOVERY (parallel)
│ ├── context-discovery → architecture, multi-tenancy, modules
│ ├── documentation-analyzer → CLAUDE.md, patterns
│ └── infrastructure-check → MCP, env vars, deps
│
├── PHASE 2 - ANALYSIS (parallel, depends on Phase 1)
│ ├── security-analyzer → RLS, secrets, boundaries
│ ├── architecture-analyzer → clean arch, imports, CQRS
│ └── data-analyzer → migrations, indexes, N+1
│
└── PHASE 3 - CONSOLIDATION
└── HEALTH-REPORT.md → scorecard + roadmap
```
---
## Criticality
| Pillar | Level | Reason |
|--------|-------|--------|
| Documentation | 🔴 Critical | impacts AI dev quality |
| Security | 🔴 Critical | data leaks, privacy |
| Architecture | 🟠 High | accumulating tech debt |
| Data | 🟡 Medium | performance, consistency |
| Infrastructure | 🔵 Info | prerequisite for analysis |
---
## Skills
Phase 1: `context-discovery` → context-discovery.md; `documentation-analyzer` → documentation-report.md; `infrastructure-check` → infrastructure-report.md.
Phase 2: `securit