What problem does it solve? Reviewing Java Spring Boot code consistently is hard: reviewers miss N+1 queries, SQL injection risks, missing transaction boundaries, and Lombok misuse. This Skill provides a structured, severity-ranked review process so every pull request is checked against the same quality bar. ## Core Features & Use Cases - Severity-ranked review checklist: Classifies findings as Critical, High, Medium, or Low across logic, security, exception handling, performance, and testing. - Concrete good/bad code patterns: Provides side-by-side Java examples for SQL injection prevention, N+1 query fixes with JOIN FETCH, GlobalExceptionHandler setup, and entity encapsulation without @Data/@Setter. - Source analysis metrics: Defines measurable thresholds such as 80% JaCoCo coverage, cyclomatic complexity under 10, and method length under 20 lines, plus a ready-to-use review report template. - Use Case: Before merging a Spring Boot pull request, run this review to catch a missing @PreAuthorize on an admin endpoint, an N+1 query in the order listing, and a swallowed exception, then produce a structured findings report. ## Quick Start Review the OrderService and OrderController classes in this project and produce a severity-ranked code review report.