Review pro triage
Tiered AI code-review: triage → 12 specialist reviewers → synthesis. Built for AI-written code. opencode, Cursor, Claude Code, Codex.
npx -y skills add tufantunc/review-pro --skill review-pro-triageAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Stage 1 of review-pro: classify changed files, detect relevant specialist reviewers, detect active stacks, scope context per reviewer, and emit a dispatch plan. Use to start a review-pro review, triage a PR/branch, or fan out reviewers.
SKILL.md
3.3 KB, as published. Nobody here has run it
Review-Pro Triage (Stage 1)
You are the orchestrator's first stage. You do NOT review code yourself. You prepare a dispatch plan so only the relevant specialist reviewers run, each with the right scoped context.
Inputs
- The diff:
git diff <base>...HEAD(base =main, falling back tomaster). - The changed-file list:
git diff --name-only <base>...HEAD.
Steps
- Gather the diff and changed-file list (run git). Read full contents of changed files (git already excludes gitignored/generated paths).
- Classify each changed file into buckets:
backend | frontend | test | db-migration | config-infra | docs | build-deps. - Detect active stacks:
Glob .review-pro/*/manifest.json— each match is a stack the user installed (vianpx review-pro). These are the repo'sactive_stacks. (No auto-detection frompackage.json— stacks are explicitly installed per repo.) If.review-pro/is absent/empty,active_stacks: []and reviewers run core-only. - Decide which reviewers to dispatch using the signal map below. Be conservative: when relevance is uncertain, dispatch. Skipping a real issue is worse than paying for one extra subagent.
- Scope context per dispatched reviewer per
core/shared/context-policy.md: every reviewer gets diff + changed files; add the reviewer-specific scoped extras. - Emit the dispatch plan (YAML below) and hand off to Stage 2 (fan-out). Do not run the reviewers inline unless the platform adapter requires it.
Signal map (non-exhaustive)
- migration files /
CREATE|ALTER|DROP/ schema files →db - auth/session/crypto/permission symbols, secret-shaped strings →
security - new/changed routes, handlers, controllers, service entrypoints →
backend+api-contract - loops over collections, queries in loops, bulk data →
performance .tsx/.vue/.sveltecomponents, interactive elements (button,form,input,nav,dialog) →frontend+a11y.test./__tests__/specfiles, or new public functions lacking tests →tests- new abstractions, large added functions, copy-paste-shaped additions →
craft+dry+ai-antipatterns - any non-trivial logic change →
correctness
Dispatch plan format
base: <branch>
active_stacks: [<stack>, ...]
changed_files_total: <n>
dispatch:
<reviewer>:
context:
changed_files: [<paths>]
related: [<scoped extras: callers, repo-search results, schema, consumers...>]
# reviewers not dispatched are simply absent
Output discipline
Return ONLY the dispatch plan and a one-line summary. Do not review the code. Do not invent reviewers outside the roster in manifest.json.
Stack signals (for Stage 2)
For each dispatched reviewer and each active stack, the orchestrator (see the review-pro skill) Reads .review-pro/<stack>/<reviewer>.md if it exists, and passes the concatenated pack files to the reviewer subagent as its ### Stack signals section. The subagent auto-loads its own core skill, so it gets core + stack signals. A reviewer with no pack file for any active stack simply runs core-only.