What problem does it solve? Code changes often ship with undetected build failures, type errors, lint violations, failing tests, or leaked secrets. This Skill provides a structured six-phase verification workflow that catches these issues before a pull request is created. ## Core Features & Use Cases - Six-Phase Verification: Sequentially runs build verification, type checking (tsc/pyright), linting (npm lint/ruff), test suites with coverage (pytest/npm test), security scanning for hardcoded secrets and debug statements, and git diff review. - Standardized Report: Produces a pass/fail verification report summarizing each phase with an overall READY/NOT READY verdict for PR submission. - Use Case: After finishing a feature branch in a Python project, invoke the skill to run uv build, pyright, ruff, pytest with coverage, and a secret scan, then receive a consolidated report listing issues to fix before opening the PR. ## Quick Start Ask the assistant to run the verification loop on the current project and report whether the changes are ready for a pull request.