What problem does it solve?
This Skill provides a structured verification workflow that runs build, type checks, linting, tests, and security checks before submitting a PR, reducing regressions and manual review time.
Core Features & Use Cases
- Build verification: ensures project compiles successfully across environments.
- Type checking and linting: enforces typings, style, and code consistency.
- Test execution and coverage: runs unit/integration tests and reports results.
- Security and schema checks: scans for secrets, insecure patterns, and potential schema changes.
- Diff review assistance: summarizes changes and highlights risky edits prior to PR.
- Use Case: before creating a PR after implementing a feature, run the full verification to ensure there are no obvious failures.
Quick Start
Use the verification-loop skill to run the full verification against your current workspace:
npm run build && npm run lint && npm test