What problem does it solve?
Choosing the right reviewers for a code change is often guesswork: too few reviewers miss contract or integration risks, while too many slow down the review cycle. This Skill maps a diff to the reviewer domains it actually touches so every change gets complete, non-redundant coverage.
Core Features & Use Cases
- Path-to-reviewer mapping: Reads the current diff together with the review-routing documentation to match touched files and behavioral effects to reviewer domains.
- Cross-cutting detection: Includes additional reviewers when contracts change or multiple consumers are affected, even if filenames alone would not suggest it.
- Parallel review coordination: Runs independent reviews in parallel where reviewer files do not overlap, then synthesizes verdicts without replacing blocking concerns with majority votes.
- Use Case: A pull request modifies a shared API contract and two consumer packages. The Skill identifies contract, integration, and consumer-domain reviewers, briefs each with the diff and controlling plan, and merges their verdicts into one review outcome.
Quick Start
Assemble the reviewer team for the current diff using the review-routing documentation and brief each reviewer on their domain.