ccc-code-reviewlisted
Install: claude install-skill KevinZai/commander
# /ccc-code-review
> Placeholders like ~~source control refer to connected tools. See [CONNECTORS.md](../../CONNECTORS.md).
Review code changes with a structured lens across four dimensions: Security, Performance, Correctness, Maintainability. Quick Mode reviews the current diff. Power Mode runs a full 4-dimension scored review.
## Quick Mode (default)
If an argument is provided (file path, PR URL, or diff), review it immediately.
If no argument, run:
```bash
git diff HEAD~1
```
and review the most recent change. If the working tree has unstaged changes, prefer `git diff` instead.
Highlight:
- Critical issues (must fix before merge)
- High issues (should fix)
- Suggestions (nice to have)
Limit to 20 most important findings. Skip minor style nits unless `--style` flag is passed.
## Power Mode
Activate by passing `--power` or `detailed`.
Full 4-dimension review with scores (1-10):
### Security (weight: 35%)
- SQL injection, XSS, CSRF
- Authentication and authorization flaws
- Secrets or credentials in code
- Input validation gaps
- SSRF, path traversal, insecure deserialization
### Performance (weight: 25%)
- N+1 queries
- Unnecessary memory allocations
- Algorithmic complexity (O(n²) in hot paths)
- Missing indexes or unbounded queries
- Resource leaks
### Correctness (weight: 25%)
- Edge cases (null, empty input, overflow)
- Race conditions and concurrency
- Error handling and propagation
- Off-by-one errors, type safety
### Maintainability (weight: 15%)
- Namin