What problem does it solve? After implementing a feature or fix, it is easy to ship code that fails to build, breaks tests, leaks secrets, or contains leftover debug statements. This Skill runs a systematic 6-phase verification loop so nothing reaches a pull request unchecked. ## Core Features & Use Cases - 6-Phase Verification: Runs Build, Type Check, Lint, Test Suite, Security Scan, and Diff Review, each graded PASS, FAIL, WARN, or SKIP. - Auto-Detected Toolchains: Detects Flutter/Dart, Node.js, Rust, Go, and Python projects from manifest files and picks the right commands (npm test, cargo clippy, pytest, and more). - Security and Diff Checks: Greps changed files for leaked API keys and tokens, runs dependency audits, and flags debug statements, TODOs, merge conflict markers, and binary files. - Use Case: After finishing a feature branch in a Node.js project, invoke verification before opening the PR to confirm the build passes, all 47 tests pass with 82% coverage, no secrets are staged, and the diff is clean. ## Quick Start Ask the agent to run verification on the current project before creating the pull request.