quality-gate

Orchestrate six parallel evaluators to vet code changes for a quality gate.

8|2|Updated Oct 28, 2025
One-click install
npx skills add https://github.com/morodomi/tdd-skills --skill quality-gate-morodomi
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: quality-gate
Source: https://github.com/morodomi/tdd-skills/tree/main/plugins/tdd-core/skills/quality-gate
Command: npx skills add https://github.com/morodomi/tdd-skills --skill quality-gate-morodomi

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill coordinates six specialized evaluators to provide parallel, multi-faceted reviews of code changes, ensuring high-quality decisions before merging. It reduces risk by surfacing issues across correctness, performance, security, guidelines, product impact, and usability.

Core Features & Use Cases

  • Parallel Reviews: Six agents evaluate changes simultaneously to speed up validation.
  • Trust Scoring & Blocking: If the overall score is 80 or above, the change is blocked; otherwise warnings or passes occur.
  • Scope Flexibility: analyzes diffs by default, all files with --all, or specific directories.
  • Automation Gate: Integrates with tdd-review to automatically enforce quality gates during development.

Quick Start

Use quality-gate to gate a PR by triggering the six-agent reviews and aggregating results before commit.

Frequently Asked Questions about quality-gate

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

FAQPage Schema
How do I automate code review for a pull request before merging?

To automate code review for a pull request, you trigger six parallel evaluators that vet diffs for correctness, performance, security, and other facets. It aggregates a trust score to block risky merges before commit.

What is a trust score threshold for blocking risky code changes?

A trust score threshold for blocking risky code changes is 80 or above. When the aggregated score from the six evaluators meets this threshold, the quality gate blocks the change and routes the flow to fix the issues.

How can I run parallel code reviews on a specific directory scope?

You can run parallel code reviews on a specific directory scope by configuring the evaluator target. The quality gate defaults to analyzing diffs only, but supports all-files or specific directory scopes to fit various workflows.

Does the quality gate work with TDD workflows?

Yes, the quality gate works with TDD workflows by integrating with tdd-review. It enforces automation gates during development by aggregating review scores and routing the flow to either commit or fix the code.

What aspects of code changes are evaluated during an automated quality gate?

Aspects of code changes evaluated during an automated quality gate include correctness, performance, security, guidelines, product impact, and usability. Six specialized agents review these facets simultaneously to surface issues before merging.