Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
tome-kota avatar

Review Orchestrator

  • 1 installs
  • 1 repo stars
  • Updated June 15, 2026
  • tome-kota/agent-skill-catalog

Runs five isolated code-review perspectives over a diff or PR covering architecture, integrity, security, tests, and conventions.

About

Orchestrates five narrow, isolated review passes and forbids combining or shortening them, surfacing AI anti-patterns like fallbacks and compatibility creep. A reviewer uses it for thorough multi-perspective review of PRs, diffs, or agent output.

  • Five isolated perspectives with shared finding format and severity
  • Detects AI anti-patterns such as type weakening and responsibility leakage

Review Orchestrator by the numbers

  • 1 all-time installs (skills.sh)
  • Ranked #984 of 1,352 Code Review & Quality skills by installs in the Skillselion catalog
  • Data as of Jul 8, 2026 (Skillselion catalog sync)
npx skills add https://github.com/tome-kota/agent-skill-catalog --skill review-orchestrator

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1
repo stars1
Last updatedJune 15, 2026
Repositorytome-kota/agent-skill-catalog

What it does

Runs five isolated code-review perspectives over a diff or PR covering architecture, integrity, security, tests, and conventions.

Files

SKILL.mdMarkdownGitHub ↗

Review Orchestrator

Run review as five narrow, explicit, repeatable perspectives. Each review perspective must be narrow and complete. The orchestrator must ensure all five perspectives are executed.

Execution Protocol

1. Identify the review artifact: diff, PR, plan, commit range, files, or user-provided patch. 2. Read the shared constructs for every perspective pass:

  • constructs/finding-format.md
  • constructs/severity.md
  • constructs/review-execution-contract.md

3. Execute all five perspective files:

  • reviews/architecture-boundary.md
  • reviews/implementation-integrity.md
  • reviews/security-authorization.md
  • reviews/test-integrity.md
  • reviews/convention-maintainability.md

4. Keep each perspective isolated. Use forked context, subagents, or custom agents when available. 5. If isolation support is unavailable, run the perspectives sequentially with input isolation:

  • start each perspective from the shared artifact, shared constructs, and that perspective file only
  • do not read earlier perspective findings while producing the current perspective
  • do not use another perspective's finding as evidence
  • write each perspective result before reading the next perspective file

6. Do not skip, combine, or shorten a perspective because another perspective found issues. 7. Require each perspective to return findings in the shared format, or No findings. 8. Aggregate by perspective. Put blocking IDs in the summary first, then keep detailed findings under their perspective. 9. Include a completion checklist for all five perspectives. If any perspective could not execute, state why. 10. Read constructs/output-example.md only when formatting the final aggregated result. Do not use it as input to any perspective pass.

Checklist rule:

  • use - [x] for a completed perspective
  • use - [ ] only for a perspective that was not executed
  • when a perspective was not executed, add the reason inline, such as - [ ] Security / Authorization - not executed: artifact missing

Overall status rule:

  • Blocked: one or more Blocking findings.
  • Needs changes: no Blocking findings, but one or more Warning findings.
  • Looks acceptable: no findings, or only Note findings.

Final Output

Use this shape:

# Review Result

## Summary

- Overall status: Blocked | Needs changes | Looks acceptable
- Blocking findings by ID:
- Warning count:
- Note count:

## Perspective Completion

- [x] Architecture / Boundary
- [x] Implementation Integrity
- [x] Security / Authorization
- [x] Test Integrity
- [x] Convention / Maintainability

## Findings by Perspective

### 1. Architecture / Boundary

### 2. Implementation Integrity

### 3. Security / Authorization

### 4. Test Integrity

### 5. Convention / Maintainability

## Recommended Next Actions

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.