What problem does it solve? Spring Boot changes often reach pull requests or production without a consistent quality gate, letting build failures, low test coverage, CVEs, and leftover debug code slip through. This Skill enforces a repeatable verification loop before PRs and deployments. ## Core Features & Use Cases - Phased Verification Pipeline: Runs build, static analysis (SpotBugs, PMD, Checkstyle), tests with JaCoCo coverage, OWASP dependency checks, and diff review in sequence. - Test Patterns Included: Provides ready-to-use examples for Mockito unit tests, Testcontainers integration tests, and MockMvc API tests. - Structured Report Output: Produces a PASS/FAIL verification report with coverage percentages, CVE counts, and a list of issues to fix. - Use Case: Before opening a PR for a Spring Boot service, run the full loop to confirm the build passes, coverage meets the 80% threshold, no dependency CVEs exist, and the diff contains no debug logging. ## Quick Start Run the Spring Boot verification loop on my project and report build, test coverage, and security scan results before I open a pull request.