aegis-quality-gates

Execute a 10-gate verification sequence and emit a JSON verify-report.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/RideMatch1/a.e.g.i.s --skill aegis-quality-gates
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: aegis-quality-gates
Source: https://github.com/RideMatch1/a.e.g.i.s/tree/main/packages/skills/skills/foundation/aegis-native/aegis-quality-gates
Command: npx skills add https://github.com/RideMatch1/a.e.g.i.s --skill aegis-quality-gates

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Automates a canonical 10-gate quality verification sequence to ensure code readiness for commit or deployment, reducing the risk of unverified changes in production.

Core Features & Use Cases

  • Executes the 10 gates in a defined order: build, tsc, lint, tests, aegis-scan, brutaler-anwalt, lighthouse, skillforge-validate, briefing-coverage, and residue-check.
  • Emits a structured .aegis/verify-report.json alongside a Markdown summary to streamline reporting and handover.
  • Supports pre-commit quick runs and full end-to-end builds by reading per-project thresholds from presets.

Quick Start

Run the 10-gate verification on your project to confirm all checks pass before pushing changes.

Frequently Asked Questions about aegis-quality-gates

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

FAQPage Schema
How do I automate quality gates for pre-commit checks and CI/CD pipelines?

Automate quality gates by executing a canonical 10-gate verification sequence that runs build, lint, tests, and security scans, emitting a structured JSON verify-report and exiting non-zero on failure. It reads per-project thresholds from presets to support both quick pre-commit runs and full end-to-end builds.

What is included in an end-to-end build verification sequence for safe commits?

An end-to-end build verification sequence includes 10 gates: build, tsc, lint, tests, aegis-scan, brutaler-anwalt, lighthouse, skillforge-validate, briefing-coverage, and residue-check. Each gate executes real commands in a defined order to ensure code readiness before commit or deployment.

How does a quality gate pipeline report verification results for CI/CD handover?

A quality gate pipeline reports verification results by emitting a structured .aegis/verify-report.json alongside a Markdown summary. These outputs streamline reporting and handover by documenting the canonical 10-gate execution status and identifying any failed checks.

Can I configure per-project quality gate thresholds for different build pipelines?

Yes, you can configure per-project quality gate thresholds by using presets. The verification sequence reads these preset configurations to determine acceptable thresholds, allowing the same 10-gate pipeline to support both pre-commit quick runs and full end-to-end builds.

What's the best way to enforce software security and code quality checks before deployment?

Enforce software security and code quality by integrating an automated 10-gate verification sequence into your pre-commit and deployment pipelines. It runs checks like aegis-scan, lighthouse, and lint, exiting non-zero when any gate fails to block unverified changes from reaching production.

Why does my build pipeline exit with a non-zero status during gate verification?

A build pipeline exits with a non-zero status during gate verification when any of the 10 canonical gates fail. This mechanism ensures unverified changes are blocked, preventing code that does not meet the configured per-project thresholds from being committed or deployed.