Java Code Review
Perform a focused, evidence-based review of Java code and write the findings to
review.md in the repository root unless the user specifies another location.
This skill reviews code; do not modify production code unless the user
explicitly asks for fixes.
Establish the review scope
- If the user explicitly specifies files, classes, packages, commits, or a
diff, use that scope and do not silently broaden it.
- Otherwise inspect the git worktree and review modified, added, or renamed
files. Use
git status --short and the relevant git diff (including
staged changes when present). For renamed files, review the resulting file
and the meaningful diff.
- Include only Java and Java-adjacent files relevant to behavior (for
example, tests, SQL migrations, configuration, or API schemas) when they
affect the reviewed Java code. State the selected scope in the report.
- Read enough surrounding code, callers, tests, configuration, and interfaces
to validate each finding. Do not report a concern based only on a name or
a generic best practice.
Review for
- Potential bugs: incorrect conditions, null/empty handling, state or
transaction errors, exception handling, resource leaks, concurrency issues,
security or authorization gaps, API/serialization mismatches, persistence
mistakes, and boundary cases.
- Duplicate code: repeated logic, copy-pasted branches, duplicated
mappings/validation, and abstractions that would reduce meaningful drift.
- Needs improvement: unclear or brittle design, excessive coupling,
misleading names, avoidable complexity, test gaps, performance concerns,
and violations of established project conventions.
Prioritize correctness and impact over style. Do not flag formatting or an
opinionated alternative unless it creates a concrete maintenance, reliability,
security, or performance problem. Distinguish confirmed issues from risks or
questions, and avoid speculative findings.
Validate findings
For every finding, trace the relevant control flow and data flow. Check nearby
tests and, when practical, run the narrowest useful test, compile, static
analysis, or reproduction command. Do not change files to make validation pass.
If validation cannot be run, say why. Check whether a suspected issue is
already handled by a caller, framework contract, annotation, or configuration.
Write review.md
Before writing, check whether the requested output file already exists.
- If it exists, ask the user whether to overwrite it or use a new filename;
do not overwrite without that choice.
- If the user chooses a new filename, use exactly that filename (within the
repository or requested output location).
- If no report exists, create
review.md.
The report must be self-contained and include:
# Java Code Review
## Scope
<!-- files/diff reviewed, review date, and validation performed -->
## Summary
<!-- concise overall assessment and finding counts by severity -->
## Findings
### [SEVERITY] Short title
- **Location:** `path/to/File.java:line`
- **Category:** Bug | Duplicate code | Improvement
- **Confidence:** High | Medium | Low
**Problem**
Explain the concrete behavior and why it matters, citing the relevant code.
**Suggested fix**
Give a specific implementation approach, including edge cases and tests to
add or update. Do not merely say “refactor” or “add validation.”
## Positive observations
<!-- optional; mention useful safeguards or clear design choices -->
## Validation
<!-- commands run and their outcomes, or why validation was unavailable -->
Use severity consistently: Blocker (unsafe or clearly broken), High
(likely production failure or serious security/data issue), Medium
(meaningful bug or maintainability risk), and Low (minor but actionable).
Order findings by severity, then by file and line. Include one finding per
distinct problem, avoid duplicates, and use precise line references that still
make sense in the reviewed version. If no findings are found, say so clearly
and still include scope, validation, and positive observations.
Final response
Tell the user that the report was created and link to the generated file. Give
the finding count and briefly call out any Blocker or High findings. If the
report could not be created because an existing file needs a choice, ask the
overwrite/new-filename question and stop before writing.
1---2name: java-code-review3description: Review Java code for bugs, duplicate code, correctness risks, maintainability improvements, and missing tests. By default review files modified in git; when the user explicitly names files, classes, packages, or a diff, review that scope instead. Generate a detailed review.md report with actionable comments and fixes.4---5
6# Java Code Review
7
8Perform a focused, evidence-based review of Java code and write the findings to
9`review.md` in the repository root unless the user specifies another location.
10This skill reviews code; do not modify production code unless the user
11explicitly asks for fixes.
12
13## Establish the review scope
14
151. If the user explicitly specifies files, classes, packages, commits, or a
16 diff, use that scope and do not silently broaden it.
172. Otherwise inspect the git worktree and review modified, added, or renamed
18 files. Use `git status --short` and the relevant `git diff` (including
19 staged changes when present). For renamed files, review the resulting file
20 and the meaningful diff.
213. Include only Java and Java-adjacent files relevant to behavior (for
22 example, tests, SQL migrations, configuration, or API schemas) when they
23 affect the reviewed Java code. State the selected scope in the report.
244. Read enough surrounding code, callers, tests, configuration, and interfaces
25 to validate each finding. Do not report a concern based only on a name or
26 a generic best practice.
27
28## Review for
29
30- **Potential bugs:** incorrect conditions, null/empty handling, state or
31 transaction errors, exception handling, resource leaks, concurrency issues,
32 security or authorization gaps, API/serialization mismatches, persistence
33 mistakes, and boundary cases.
34- **Duplicate code:** repeated logic, copy-pasted branches, duplicated
35 mappings/validation, and abstractions that would reduce meaningful drift.
36- **Needs improvement:** unclear or brittle design, excessive coupling,
37 misleading names, avoidable complexity, test gaps, performance concerns,
38 and violations of established project conventions.
39
40Prioritize correctness and impact over style. Do not flag formatting or an
41opinionated alternative unless it creates a concrete maintenance, reliability,
42security, or performance problem. Distinguish confirmed issues from risks or
43questions, and avoid speculative findings.
44
45## Validate findings
46
47For every finding, trace the relevant control flow and data flow. Check nearby
48tests and, when practical, run the narrowest useful test, compile, static
49analysis, or reproduction command. Do not change files to make validation pass.
50If validation cannot be run, say why. Check whether a suspected issue is
51already handled by a caller, framework contract, annotation, or configuration.
52
53## Write `review.md`
54
55Before writing, check whether the requested output file already exists.
56
57- If it exists, ask the user whether to overwrite it or use a new filename;
58 do not overwrite without that choice.
59- If the user chooses a new filename, use exactly that filename (within the
60 repository or requested output location).
61- If no report exists, create `review.md`.
62
63The report must be self-contained and include:
64
65```markdown
66# Java Code Review
67
68## Scope
69<!-- files/diff reviewed, review date, and validation performed -->
70
71## Summary
72<!-- concise overall assessment and finding counts by severity -->
73
74## Findings
75
76### [SEVERITY] Short title
77- **Location:** `path/to/File.java:line`
78- **Category:** Bug | Duplicate code | Improvement
79- **Confidence:** High | Medium | Low
80
81**Problem**
82Explain the concrete behavior and why it matters, citing the relevant code.
83
84**Suggested fix**
85Give a specific implementation approach, including edge cases and tests to
86add or update. Do not merely say “refactor” or “add validation.”
87
88## Positive observations
89<!-- optional; mention useful safeguards or clear design choices -->
90
91## Validation
92<!-- commands run and their outcomes, or why validation was unavailable -->
93```
94
95Use severity consistently: **Blocker** (unsafe or clearly broken), **High**
96(likely production failure or serious security/data issue), **Medium**
97(meaningful bug or maintainability risk), and **Low** (minor but actionable).
98Order findings by severity, then by file and line. Include one finding per
99distinct problem, avoid duplicates, and use precise line references that still
100make sense in the reviewed version. If no findings are found, say so clearly
101and still include scope, validation, and positive observations.
102
103## Final response
104
105Tell the user that the report was created and link to the generated file. Give
106the finding count and briefly call out any Blocker or High findings. If the
107report could not be created because an existing file needs a choice, ask the
108overwrite/new-filename question and stop before writing.