What problem does it solve? Code changes often reach pull requests with undetected build failures, type errors, lint violations, failing tests, or leaked secrets. This Skill enforces a structured multi-phase verification loop so quality gates are checked systematically before code is considered done. ## Core Features & Use Cases - Six-Phase Verification Pipeline: Sequentially runs build verification, type checking (tsc/pyright), linting (npm lint/ruff), test suites with coverage thresholds, security scans for secrets and console.log statements, and git diff review. - Structured Verification Report: Produces a standardized PASS/FAIL report across all phases with an overall READY/NOT READY verdict and a list of issues to fix. - Continuous Mode: Supports periodic re-verification during long sessions, triggering checks after each function, component, or task completion. - Use Case: After refactoring a TypeScript module, invoke the skill to confirm the project builds, types check cleanly, tests pass with at least 80% coverage, and no API keys were accidentally committed before opening a PR. ## Quick Start Ask the AI to run the verification loop on the current project and report whether the changes are ready for a pull request.