review-orchestration

Run a deterministic 6-stage review pipeline for pull request quality gating.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/cmbays/print-4ink --skill review-orchestration
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: review-orchestration
Source: https://github.com/cmbays/print-4ink/tree/main/.claude/skills/review-orchestration
Command: npx skills add https://github.com/cmbays/print-4ink --skill review-orchestration

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Automated quality gate for every build-phase PR. Runs a deterministic 6-stage pipeline that classifies the diff, dispatches the appropriate review agents in parallel, aggregates their structured findings, and produces a gate decision before any PR can be created.

Core Features & Use Cases

  • Deterministic 6-stage review pipeline: NORMALIZE, CLASSIFY, COMPOSE, GAP DETECT, DISPATCH, AGGREGATE to ensure consistent PR evaluation.
  • Domain mapping and risk scoring: maps changed files to domains using config, derives risk levels, and infers PR type.
  • Agent manifest & policy evaluation: composes the agent set from policies, assigns scope, and prioritizes dispatch.
  • LLM coverage check & gap logging: performs a synchronous gap analysis and emits logs for config improvements.
  • Parallel agent execution: dispatches all agents in a single step and aggregates their findings for gate decisions.
  • Config-driven: loads domains, composition, and rules from tools/orchestration/config via dedicated load-config.ts helpers.

Quick Start

Trigger the review orchestration by starting a build-session-protocol Phase 2 with CLAUDE.md loaded.

Frequently Asked Questions about review-orchestration

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate code reviews before a pull request is created?

Automated code reviews run a deterministic 6-stage pipeline that normalizes diffs, classifies domains, dispatches review agents in parallel, and aggregates findings to produce a gate decision prior to PR creation.

What is a deterministic PR quality gate and how does it work?

A deterministic PR quality gate applies a fixed 6-stage pipeline—NORMALIZE, CLASSIFY, COMPOSE, GAP DETECT, DISPATCH, AGGREGATE—to evaluate pull requests. It maps changed files to domains, scores risk, and runs parallel review agents to ensure consistent evaluation.

How do I run the review orchestration pipeline for my pull requests?

Run the review orchestration pipeline by triggering a build-session-protocol Phase 2 with CLAUDE.md loaded. Ensure your git workflow is configured and config files are loaded via load-config.ts to supply domains, composition, and rules.

Do I need specific configuration files to automate PR quality gating?

Yes, PR quality gating requires config files loaded via load-config.ts to supply domains, composition, and rules. A configured git workflow and CLAUDE.md loaded in the environment are also required.

Can I dispatch multiple review agents in parallel for CI-CD code review?

Yes, the pipeline composes an agent set from policies, assigns scope, and dispatches all review agents in parallel within a single step, then aggregates their structured findings to produce a gate decision for CI-CD workflows.

What's the best way to enforce consistent code review governance across repositories?

The best way to enforce consistent code review governance is a config-driven pipeline that loads domains, composition, and rules from central config files, ensuring every PR undergoes the same deterministic 6-stage review process before merging.