Skip to content

xronocode/smart-review

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Review Orchestrator

Multi-mode code review skill for Kilo / Claude Code. Analyzes context, picks the right review mode, and launches specialized subagents.

Modes

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

Install

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-orchestrator

Or add to kilo.json:

{
  "skills": ["./skills/review-orchestrator/skill"]
}

Update references

/review-orchestrator:update          # stale only (>7 days)
/review-orchestrator:update --all    # force all
/review-orchestrator:update simplifier  # single source

Structure

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

Sources

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

License

MIT

About

Agent-agnostic multi-mode code review orchestrator skill for Kilo / Claude Code / OpenCode / Codex

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors