What problem does it solve? Before merging or opening a pull request, teams need to know whether the repository passes its automated quality gates — type checking, linting, unit tests, coverage, build, e2e, and static analysis — without manually running and interpreting each tool. This Skill executes the full battery of checks adapted to the detected stack and produces a single verdict (APPROVED, REJECTED, or INCOMPLETE) with a written report. ## Core Features & Use Cases - Stack-adaptive check execution: Detects the ecosystem (Node, Java/Kotlin, Python, Go, Rust, .NET, PHP) from the project manifest and runs the applicable checks with the correct commands and output parsing. - Verdict and audit report: Classifies each check as blocking, conditional, or informative, computes a canonical verdict, and writes a report to docs/audits/quality-check.md plus a reusable test-run cache (quality-check-run.json) consumed by other verification skills. - Controlled fixing: By default it only audits and asks before correcting failures, delegating fixes to the implementation workflow; it never commits, pushes, or merges on its own. - Use Case: Before creating a PR, ask the agent to run the quality checks on your branch; it executes the test suites, linters, and build, then delivers a report stating exactly what failed and what is needed to reach an approved state. ## Quick Start Ask the agent to run the quality checks on this repository and report whether it is ready for a pull request.