← ClaudeAtlas

claude-healthlisted

Claude Code config health check + plugin sync. Use when: auditing .claude/ structure, checking naming, verifying hook setup, detecting plugin version drift, syncing installed assets. Not for: skill quality (use skill-health-check), code review (use codex-code-review). Output: health report + fix recommendations.
hmj1026/dhpk · ★ 1 · AI & Automation · score 77
Install: claude install-skill hmj1026/dhpk
# Claude Health Check ## Trigger - Keywords: health check, .claude check, config audit, lint .claude, claude health, plugin sync, version drift, upgrade check, doctor ## When NOT to Use - Code review (use `/codex-review-fast`) - Doc review (use `/codex-review-doc`) - Security review (use `/codex-security`) ## Scope | Argument | Description | |----------|-------------| | `--scope hygiene` | Only run C1-C7 hygiene checks | | `--scope sync` | Only run S1-S3 sync checks | | `--scope all` | Run both modules (**default**) | ## Workflow ``` [--scope] → Select modules → Scan → Classify → Report → Fix suggestions │ │ ┌───────┴───────┐ P0/P1/P2 ▼ ▼ + fix commands Hygiene (C1-C7) Sync (S1-S3) ``` ### Hygiene Module — Checks (7 items) | # | Check | Method | Criteria | |---|-------|--------|----------| | 1 | Junk files | `find .claude/ -name ".DS_Store" -o -name "*.zip" -o -name ".tmp*"` | Any exists → P1 | | 2 | .gitignore exists | `ls .claude/.gitignore` | Missing → P1 | | 3 | .gitignore completeness | Read `.claude/.gitignore`, compare required items | Missing required → P2 | | 4 | Naming consistency | Scan all `skills/*/` for `reference` vs `references` | Inconsistent → P2 | | 5 | README count sync | Count actual vs README description | Mismatch → P2 | | 6 | Command-Skill pairing | Each core skill should have corresponding command | Missing → P1 | | 7 | Cache