What problem does it solve? After finishing a feature or refactor, developers often skip systematic quality checks and push code that fails builds, breaks types, or leaks secrets. This Skill enforces a structured multi-phase verification pass before a PR is created. ## Core Features & Use Cases - Six-Phase Verification: Sequentially runs build, type check (tsc/pyright), lint (npm lint/ruff), test suite with coverage, security scans for secrets and console.log, and git diff review. - Standardized Report: Produces a PASS/FAIL verification report summarizing each phase, coverage percentage, and an overall READY/NOT READY verdict for the PR. - Continuous Mode: Supports periodic re-verification during long sessions, complementing PostToolUse hooks with deeper review. - Use Case: After refactoring a TypeScript module, invoke the skill to confirm the build passes, tests meet the 80% coverage target, no API keys were committed, and the diff contains only intended changes. ## Quick Start Run the verification loop on my current changes and tell me whether the code is ready for a PR.