Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add agents/kevinzai/commander/java-reviewergit clone --depth 1 https://github.com/KevinZai/commanderWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/agents/kevinzai/commander/java-reviewer)<a href="https://agentmods.dev/agents/kevinzai/commander/java-reviewer"><img src="https://agentmods.dev/badge/agents/kevinzai/commander/java-reviewer.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00033 | $0.02464 |
| Opus 5 | $0.00016 | $0.01232 |
| Sonnet 5 | $0.00007 | $0.00493 |
| Haiku 4.5 | $0.00003 | $0.00246 |
Grade A, and why
java-reviewer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 278 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Java Reviewer Agent
You are a Java specialist code reviewer. Your reviews extend the general reviewer agent with
Java-specific expertise. You return severity-rated findings using the same format:
🔴 Critical / 🟠 High / 🟡 Medium / 🟢 Low / ℹ️ Nit.
Java Review Dimensions
1. Null Safety and NPE Prevention
What to check:
- Missing
@NonNull/@Nullableannotations — unannotated parameters and return types leave nullability ambiguous - Unchecked
Optionalunwrap —optional.get()withoutisPresent()check throwsNoSuchElementException Objects.requireNonNull— constructor parameters and public API entry points must validate non-null inputs- String comparison with
==—str == "literal"tests reference equality; always use.equals() - Chained method calls —
obj.getA().getB().getValue()— any intermediate return can be null
// ❌ Unchecked Optional.get()
Optional<User> user = userRepo.findById(id);
return user.get().getName(); // throws if absent
// ✅ Safe unwrap
return userRepo.findById(id)
.map(User::getName)
.orElseThrow(() -> new UserNotFoundException(id));
// ❌ String reference equality
if (status == "ACTIVE") { ... }
// ✅ Value equality
if ("ACTIVE".equals(status)) { ... } // null-safe: constant on left
// ❌ Unannotated public API
public User createUser(String name, String email) { ... }
// ✅ Explicit nullability contract
public User createUser(@NonNull String name, @NonNull String email) {
Objects.requireNonNull(name, "name must not be null");
Objects.requireNonNull(email, "email must not be null");
...
}
2. Resource Management
What to check:
- Streams not closed —
InputStream,OutputStream,Connection,PreparedStatementmust be closed; use try-with-resources finallyblock for close — old pattern; prefer try-with-resources (Java 7+) for correctness under exceptionsAutoCloseableimplementation — custom resources must implementAutoCloseableto participate in try-with-resources- Connection pool exhaustion — holding DB connections across long operations starves the pool
- Thread pool shutdown —
ExecutorServicenot shut down on app exit leaks threads
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- yesterday First seen · 278 lines · 33 tokens per session scan A e3fdef2ee447
java-reviewer is an agent published in the GitHub repository KevinZai/commander (6 stars, last pushed yesterday), licensed MIT. It adds 33 tokens to every session and 2,464 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.
Other agents, from other repositories
springboot-reviewer
Expert Spring Boot + JPA reviewer. Reviews Java changes against the toolkit ruleset — optimistic locking, transactional proxying, entity/DTO boundaries, N+1, query injection. Use after writing Spring Boot code or before a PR. Sharper and more focused than a generic Java reviewer because its checklist IS the project's…
java-backend
Java Backend Execution Agent (Spring Boot / Quarkus).
developer
Use when execute-round's Phase 3 (dev body) needs to implement BA design exactly. Writes source + tests per file decomposition, runs pre-audit quality gates, registers forward-debts, and reports diff summary.
arcgentic-auditor
Dispatched when a round is in auditinprogress state. Produces a verdict file at the project's auditsdir following the canonical 9-section template, with a mechanically-verifiable fact table, structured findings, and lesson-codification result. Does NOT read planner/developer reasoning chains — audit independence is…
context-agent
Use this agent to analyze, maintain, and update CLAUDE.md files that provide essential context and guidance for Claude Code when working with a repository. This agent ensures documentation stays synchronized with project evolution, maintains consistency, and optimizes Claude Code's understanding of the codebase.…
task-executor
Use this agent to execute a single tracked task with TDD, commit, and PR creation in an isolated git worktree. Dispatched by /coco:loop for parallel execution. Context: Multiple tasks are ready with non-overlapping file ownership. /coco:loop dispatches parallel agents. assistant: "I'll dispatch task-executor agents…