plan-review-gate

Enforce two-stage spec-then-quality review on PLANs before wave-collection.

Updated Jun 4, 2026
One-click install
npx skills add https://github.com/Kohlex/autopilot-plugin --skill plan-review-gate-kohlex
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: plan-review-gate
Source: https://github.com/Kohlex/autopilot-plugin/tree/main/skills/plan-review-gate
Command: npx skills add https://github.com/Kohlex/autopilot-plugin --skill plan-review-gate-kohlex

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires peer-review.

What problem does it solve?

Gate PLANs with a per-PLAN spec-then-quality two-stage review after the gsd-executor finishes and before wave-collection.

Core Features & Use Cases

  • Stage-based gating: spec-compliance first, then code-quality review
  • BLOCKING rule: a plan that passes tests but fails spec cannot be admitted into the wave
  • Integration point: sits at the orchestrator seam between executor and wave-collection
  • Reuse of the two-stage prompt pattern from subagent-driven-development and delegation to the peer-review workflow

Quick Start

Configure and deploy the plan-review-gate so that after a PLAN completes execution, it runs the spec-then-quality review before wave-collection.

Frequently Asked Questions about plan-review-gate

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

FAQPage Schema
How do I enforce spec compliance before code-quality review in my plan workflow?

Spec compliance is enforced before code-quality review by configuring a two-stage gate that validates finished PLAN outcomes against the SPEC, rejecting any plan that passes tests but fails spec before it enters wave-collection.

What happens when a plan passes tests but fails spec compliance checks?

When a plan fails spec compliance, the BLOCKING rule prevents its admission into the wave even if tests pass, triggering bounded fix-loops until the plan is corrected and successfully passes the two-stage review gate.

How do I gate plan execution outcomes between the orchestrator executor and wave-collection?

Gate plan execution outcomes by deploying a review mechanism at the orchestrator seam that intercepts completed plans, enforcing locked ordering and delegating final verdicts to the peer-review workflow before wave-collection begins.

Does the plan review gate require peer-review to validate code-quality?

Yes, peer-review is a required dependency, as the plan review gate delegates code-quality verdicts to the peer-review workflow to ensure plans meet quality criteria before being admitted into the wave-collection.

How do bounded fix-loops work when a plan fails the spec-then-quality gate?

Bounded fix-loops trigger when a plan fails the spec or quality stage, allowing a limited number of correction attempts before the gate enforces a final BLOCKING verdict to prevent unqualified plans from entering wave-collection.

What is the best way to validate orchestrator plan outcomes against a two-stage spec and quality criteria?

The best way to validate plan outcomes is using a dedicated plan review gate that enforces locked ordering, applying spec-compliance first and code-quality second, while delegating verdicts to the peer-review workflow before wave-collection.