multi-agent-review-gate

Enforce a quality and compatibility gate after parallel agents complete work packets.

6|1|Updated Jan 17, 2026
One-click install
npx skills add https://github.com/issdandavis/SCBE-AETHERMOORE --skill multi-agent-review-gate
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: multi-agent-review-gate
Source: https://github.com/issdandavis/SCBE-AETHERMOORE/tree/main/external/codex-skills-live/multi-agent-review-gate
Command: npx skills add https://github.com/issdandavis/SCBE-AETHERMOORE --skill multi-agent-review-gate

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Enforces a structured review gate after parallel agents complete their work packets, ensuring outputs are compatible, correct, and safe to merge.

Core Features & Use Cases

  • Completeness — Every work packet meets its done_criteria.
  • Conflict scan — No two packets modified the same file in incompatible ways.
  • Interface check — Cross-packet APIs, types, and contracts are consistent.
  • Test validation — All packet-level and integration tests pass.
  • Style & standards — Code follows project conventions (linting, formatting, naming).
  • Security scan — No new secrets, injection vectors, or unsafe patterns introduced.
  • Use Case — After a multi-agent-orchestrator run completes all packets; Before committing or pushing multi-agent work; When integrating outputs from agents that worked in parallel on related code.

Quick Start

Use the multi-agent-review-gate to validate and merge outputs from multiple agents.

Frequently Asked Questions about multi-agent-review-gate

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

FAQPage Schema
How do I validate code from multiple parallel agents before merging?

To validate code from parallel agents before merging, you need a review gate that checks completeness, detects file conflicts, verifies interface consistency, and runs security scans. This ensures outputs are compatible and safe to integrate.

What is a multi-agent review gate and when do I need it?

A multi-agent review gate is a quality checkpoint used after parallel agents generate related code chunks. You need it when reconciling work packets to enforce completeness, interface consistency, conflict detection, and security validations before integration.

How can I detect incompatible file changes when integrating parallel agent outputs?

To detect incompatible file changes during integration, run a conflict scan that identifies if two work packets modified the same file in incompatible ways. This prevents broken merges and ensures cross-packet compatibility.

Does this code merge validation check for API and type consistency across agents?

Yes, code merge validation includes an interface check to ensure cross-packet APIs, types, and contracts remain consistent. It also validates that all packet-level and integration tests pass before allowing an approval decision.

What security checks are enforced when merging outputs from multiple agents?

When merging outputs from multiple agents, the gate enforces a security scan to ensure no new secrets, injection vectors, or unsafe patterns are introduced. It also checks that code follows project conventions for linting and formatting.

Can I use this review gate for parallel agents working on related data chunks?

Yes, you can use this review gate for parallel agents working on related code or data chunks. It reconciles work packets by applying completeness checks, interface consistency validation, and test verification before making a merge decision.