What problem does it solve? Teams often merge code or create pull requests without confirming that tests, lint, builds, and documentation all pass, leading to broken branches and failed CI. This Skill runs a structured Definition of Done checklist and reports exactly which checks pass or fail before you claim a task is complete. ## Core Features & Use Cases - Tiered Verification: Selects Minimum, Standard, or Full check tiers based on whether the work is a release, an implementation task, or something smaller. - Structured Pass/Fail Report: Produces a Markdown verification report with a status table, blocking issues, and concrete fix recommendations. - Graceful Tooling Handling: Records checks as N/A when test runners, linters, or build scripts are not configured instead of failing or installing tooling. - Use Case: Before creating a PR for a feature branch, run the verification to confirm tests pass with npm test, lint is clean, the build succeeds, and file naming conventions are followed, then receive a report listing any blocking issues. ## Quick Start Ask the assistant to run the verify checklist on the current branch and report whether it is ready to merge.