What problem does it solve? Code changes often ship with undetected build failures, type errors, lint violations, or failing tests. This Skill provides a structured multi-phase verification workflow that catches quality issues before a pull request is created. ## Core Features & Use Cases - Six-Phase Verification: Sequentially runs build verification, type checking, lint and format checks, test suites with coverage, security scans, and git diff review. - Multi-Language Support: Covers Node.js/TypeScript (npm, pnpm, tsc, Prettier), Python (pyright, ruff), and Go (go build, go vet, golangci-lint, go test) toolchains. - Structured Reporting: Produces a standardized verification report with PASS/FAIL status per phase and an overall READY/NOT READY verdict for PRs. - Use Case: After refactoring a TypeScript module, invoke the skill to confirm the build passes, Prettier formatting is clean, tests meet the 80% coverage target, and no debug statements remain before opening a PR. ## Quick Start Run the verification loop on my current changes and tell me whether the code is ready for a pull request.