What problem does it solve? After finishing a feature or refactor, it is easy to miss broken builds, type errors, failing tests, or leaked secrets before opening a pull request. This Skill runs a structured multi-phase verification pass so quality issues are caught before code review. ## Core Features & Use Cases - Six-Phase Verification: Sequentially checks build success, type errors (tsc/pyright), lint issues (npm lint/ruff), test results with coverage, security scans for secrets and console.log statements, and a git diff review. - Standardized Report Output: Produces a PASS/FAIL summary across all phases with an overall READY/NOT READY verdict and a list of issues to fix. - Continuous Mode: Supports recurring verification checkpoints during long coding sessions, complementing PostToolUse hooks with deeper review. - Use Case: Before creating a PR for a TypeScript feature, run the verification loop to confirm the build passes, tests meet the 80% coverage target, and no API keys were accidentally committed. ## Quick Start Run the verification loop on my current changes and tell me if the code is ready for a pull request.