Multi-mode code review skill for Kilo / Claude Code. Analyzes context, picks the right review mode, and launches specialized subagents.
| Mode | Agents | When |
|---|---|---|
full |
excellence → simplify | Post-implementation, pre-commit |
full+errors |
excellence → failure-hunt → simplify | Large PR, pre-merge |
excellence |
excellence | Quick sanity check |
simplify |
simplify | Code works but feels complex |
targeted |
targeted --focus | Specific concern |
failure-hunt |
failure-hunt | Suspicion of swallowed errors |
full-project |
project-scanner → excellence → failure-hunt → simplify | Whole-codebase audit |
Copy (or symlink) skill/ into your Kilo skills directory:
# per-project
ln -s $(pwd)/skill .kilo/skills/review-orchestrator
# global
ln -s $(pwd)/skill ~/.kilo/skills/review-orchestratorOr add to kilo.json:
{
"skills": ["./skills/review-orchestrator/skill"]
}/review-orchestrator:update # stale only (>7 days)
/review-orchestrator:update --all # force all
/review-orchestrator:update simplifier # single source
skill/
├── SKILL.md # entry point — orchestrator
├── commands/
│ └── update.md # /review-orchestrator:update
├── agents/
│ ├── project-scanner.md
│ ├── excellence-reviewer.md
│ ├── code-simplifier.md
│ ├── targeted-reviewer.md
│ └── silent-failure-hunter.md
└── reference/
├── index.md # source registry + freshness dates
├── project-scan.json # auto-generated project scan cache
├── anthropic-prompting.md
├── anthropic-opus47.md
└── ...language guides
| Component | Origin |
|---|---|
| excellence-reviewer | anthropics/claude-code — pr-review-toolkit + custom language guides |
| code-simplifier | anthropics/claude-code — code-simplifier |
| silent-failure-hunter | anthropics/claude-code — pr-review-toolkit |
| language guides | anthropics/claude-code — frontend-design + Anthropic docs |
MIT