Orchestrate reviewing
Reviews code against project rules and curated reference files. Use when auditing files for violations, reviewing changes, or generating cleanup tasks.
install
source · Clone the upstream repo
git clone https://github.com/haowjy/orchestrate
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/haowjy/orchestrate "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/reviewing" ~/.claude/skills/haowjy-orchestrate-reviewing && rm -rf "$T"
manifest:
skills/reviewing/SKILL.mdsource content
Code Review
Review code against curated project rules and flag all violations found — not just things introduced by recent changes.
Rules Loading
- Always load
references/general.md - Read project instruction files —
orCLAUDE.md
at repo root, plus stack-specific files relevant to the scope.AGENTS.md - Load matching reference files — if
exists for a top-level directory in scope, load it.references/<dir>.md
Categories
- Correctness — logic errors, edge cases, off-by-one
- Security — hardcoded secrets, injection risks, missing auth checks
- Reliability — error handling, race conditions, resource cleanup
- Architecture — SOLID violations, import boundaries, coupling
- Dead code & Complexity — unused code/imports, premature abstractions
- Project conventions — violations of loaded rule files
Output
Produce a report grouped by category. For each issue: file, location, what's wrong, why, and suggested fix.