| name | code-review |
| description | Run a structured checklist over changed files — Kotlin style, JPA/transaction correctness, naming conventions, test coverage, and security basics. Produces a ✓/⚠/✗ report. |
Code Review Guide
Check Changes
git diff develop...HEAD --stat
git diff develop...HEAD
Read each changed file for detailed analysis.
Checklist
Naming Conventions
Kotlin Style
JPA / Database
Service Layer
Controller Layer
Test
Security
Report Format
For each item:
- ✓ Pass
- ⚠ Warning (recommendation)
- ✗ Error (needs fix)
Final summary: {n} items — {p} passed, {w} warnings, {e} errors