What problem does it solve? Agreed quality practices often go unenforced: CI either runs everything on every commit until people stop gating on it, or contains steps that cannot fail (|| true, continue-on-error, non-required checks) so the build reports green regardless. This Skill turns a quality contract into CI that actually enforces it. ## Core Features & Use Cases - Layered gate design: Assigns practices to local hooks, blocking PR jobs, review jobs, and release gates based on feedback speed. - Per-practice CI jobs: Provides working GitHub Actions and GitLab CI job definitions for lint, typecheck, unit tests, diff coverage, E2E sharding, SAST, secret scanning, dependency audit, mutation testing, and evals. - Enforcement wiring: Covers branch protection required checks, sticky PR comments, soft gates via continue-on-error/allow_failure, fork-safe secret handling, and waiver expiry governance. - Use Case: A team has an agreed quality contract but a green build that never fails. Use this Skill to generate a GitHub Actions workflow with blocking lint, typecheck, and diff-coverage jobs, wire them as required checks, and verify each gate can actually fail. ## Quick Start Generate a GitHub Actions quality gate workflow that enforces our agreed lint, typecheck, unit test, and diff coverage practices as required PR checks.