ccc-makeover
Load ONE skill. Get the full project makeover pipeline. Audit → score → fix — in one pass.
CCC mega-skill domain router for project health and design refresh. Runs a structured xray audit, scores the project across 6 dimensions, then dispatches a makeover swarm to apply the highest-impact fixes.
Sub-Skills
| Sub-Skill |
Focus |
xray |
Full project health scan — 6 dimensions, 0-100 score, maturity level (1-5), prioritized skill recommendations |
makeover |
Auto-apply top xray recommendations — runs recommended skills in order, tracks before/after score delta |
report-card |
Health reporting — formatted score card with per-dimension bars, maturity level, and improvement history |
When to Use
- "Audit this project" / "How healthy is this codebase?"
- "Fix the top issues in this project automatically"
- "Give me a health score" / "Project report card"
- Starting work on an unfamiliar codebase
- Before a release — catch gaps in security, testing, DevOps, docs
- After a sprint — measure improvement over time
How It Works
- Describe your goal — audit, fix, or score
- This router identifies the right sub-skill:
- Want a scan? →
xray
- Want to auto-fix? →
makeover (runs xray first, then applies fixes)
- Want a formatted report? →
report-card
- The sub-skill executes with domain-specific expertise
Routing Matrix
| Your Intent |
Route To |
Don't Confuse With |
| "Audit my project" / "Health check" / "What's wrong?" |
xray |
makeover (fixes, not just scans) |
| "Fix the top issues" / "Auto-improve" / "Apply recommendations" |
makeover |
xray (scan only) |
| "Show me my score" / "Report card" / "How did we improve?" |
report-card |
xray (detailed recommendations, not summary) |
Standard Makeover Flow
xray → review top 5 recommendations → makeover → report-card
xray — scan current project state, get health score and ranked recommendations
makeover — apply top N fixes (default: 5, use --auto for unattended mode)
report-card — show before/after score delta and remaining gaps
Scan Dimensions (xray)
| Dimension |
What It Checks |
| Security |
Secrets exposure, lockfiles, dependency age |
| Testing |
Coverage, E2E presence, test file count |
| DevOps |
CI/CD pipeline, Docker config, deploy setup |
| Quality |
Linting, formatting, file size limits |
| Documentation |
README, CLAUDE.md, API docs |
| Architecture |
Error handling, input validation, modularity |
Quick Start
Just invoke /ccc-makeover and describe what you need. For a full automated overhaul:
/ccc-makeover --auto
For a dry run (recommendations only, no changes):
/ccc-makeover --dry-run
1---2name: ccc-makeover3description: CCC domain — design refresh and project health overhaul — 3 skills in one. X-Ray audit, automated makeover swarm, and report card scoring.4---56# ccc-makeover78> Load ONE skill. Get the full project makeover pipeline. Audit → score → fix — in one pass.910CCC mega-skill domain router for project health and design refresh. Runs a structured xray audit, scores the project across 6 dimensions, then dispatches a makeover swarm to apply the highest-impact fixes.1112## Sub-Skills1314| Sub-Skill | Focus |15|-----------|-------|16| `xray` | Full project health scan — 6 dimensions, 0-100 score, maturity level (1-5), prioritized skill recommendations |17| `makeover` | Auto-apply top xray recommendations — runs recommended skills in order, tracks before/after score delta |18| `report-card` | Health reporting — formatted score card with per-dimension bars, maturity level, and improvement history |1920## When to Use2122- "Audit this project" / "How healthy is this codebase?"23- "Fix the top issues in this project automatically"24- "Give me a health score" / "Project report card"25- Starting work on an unfamiliar codebase26- Before a release — catch gaps in security, testing, DevOps, docs27- After a sprint — measure improvement over time2829## How It Works30311. Describe your goal — audit, fix, or score322. This router identifies the right sub-skill:33 - Want a scan? → `xray`34 - Want to auto-fix? → `makeover` (runs `xray` first, then applies fixes)35 - Want a formatted report? → `report-card`363. The sub-skill executes with domain-specific expertise3738## Routing Matrix3940| Your Intent | Route To | Don't Confuse With |41|-------------|----------|--------------------|42| "Audit my project" / "Health check" / "What's wrong?" | `xray` | `makeover` (fixes, not just scans) |43| "Fix the top issues" / "Auto-improve" / "Apply recommendations" | `makeover` | `xray` (scan only) |44| "Show me my score" / "Report card" / "How did we improve?" | `report-card` | `xray` (detailed recommendations, not summary) |4546## Standard Makeover Flow4748```49xray → review top 5 recommendations → makeover → report-card50```51521. `xray` — scan current project state, get health score and ranked recommendations532. `makeover` — apply top N fixes (default: 5, use `--auto` for unattended mode)543. `report-card` — show before/after score delta and remaining gaps5556## Scan Dimensions (xray)5758| Dimension | What It Checks |59|-----------|---------------|60| Security | Secrets exposure, lockfiles, dependency age |61| Testing | Coverage, E2E presence, test file count |62| DevOps | CI/CD pipeline, Docker config, deploy setup |63| Quality | Linting, formatting, file size limits |64| Documentation | README, CLAUDE.md, API docs |65| Architecture | Error handling, input validation, modularity |6667## Quick Start6869Just invoke `/ccc-makeover` and describe what you need. For a full automated overhaul:7071```72/ccc-makeover --auto73```7475For a dry run (recommendations only, no changes):7677```78/ccc-makeover --dry-run79```