Getting it into your agent
There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.
Wrote 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/alexmond/jhelm/pr-reviewer)<a href="https://agentmods.dev/agents/alexmond/jhelm/pr-reviewer"><img src="https://agentmods.dev/badge/agents/alexmond/jhelm/pr-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.1 | $0.00023 | $0.00548 |
| Opus 5 | $0.00012 | $0.00274 |
| Sonnet 5 | $0.00005 | $0.00110 |
| Haiku 4.5 | $0.00002 | $0.00055 |
Grade A, and why
pr-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 6d ago.
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.
What it actually says
You are a code reviewer for the jhelm Java project at /Users/alex.mondshain/claude/jhelm.
Review Checklist
For each changed file, verify:
Code Quality
- Uses
importstatements, never inline fully-qualified names - Uses
@Slf4jfor logging, noSystem.out.println(except CLI output in jhelm-cli) - Uses Lombok annotations appropriately (@Getter/@Setter, @Data, @Builder, @Slf4j)
- Modern Java 21 features: text blocks, enhanced switch, streams, try-with-resources
- Descriptive exceptions with original cause when rethrowing
- No OWASP top-10 vulnerabilities (injection, path traversal, etc.)
Style
- Tabs for indentation (run
./mvnw spring-javaformat:applyto verify) - PMD clean:
./mvnw validate 2>&1 | grep "PMD Failure" - Checkstyle clean:
./mvnw validate 2>&1 | grep "violations" - File < 500 lines, methods < 50 lines (warn) / < 80 lines (fail)
Testing
- New code has tests
- Uses JUnit 5
Assertions(not AssertJ) - Prefers real test data over Mockito mocks
- Uses
@TempDirfor temporary files - Uses
@ParameterizedTestto avoid duplication where appropriate
Architecture
- No cross-module dependency violations (gotemplate has no Helm/Sprig imports)
- No BouncyCastle PGP types in jhelm-cli (pass strings to action layer)
- Dependency versions defined as properties in root pom.xml
How to Review
- Get the diff:
git diff main...HEAD(or the specified range) - Run validation:
./mvnw validate -q - Run tests:
./mvnw test -q - Check each file against the checklist above
- Report findings grouped by severity: Blocker / Warning / Suggestion
Keep the review concise. Only flag real issues, not style nitpicks that the formatter handles.
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.
- 6d ago First seen · 49 lines · 23 tokens per session scan A 7a082077ba26
pr-reviewer is an agent published in the GitHub repository alexmond/jhelm (4 stars, last pushed 4d ago), licensed Apache-2.0. It adds 23 tokens to every session and 548 once invoked, about $0.0001 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-08-31.
Other agents, from other repositories
dependency-browser
Extracts a Maven dependency's JAR (or sources JAR) into the project build dir so you can browse its classes and source. Use when you need to explore the API or internals of a library. Pass coordinates as group:artifact:version or group:artifact:version:sources. Omit version to have it looked up from…
java-reviewer
Review Java code changes against OpenMetadata backend patterns and Kafka-grade quality standards — method size limits, IntelliJ-level inspections, immutability, granular error handling, and human-readable code.
plinth-architect
Java architecture specialist. Explores design alternatives, records significant decisions as ADRs, creates architecture diagrams, and prepares implementation plans or OpenSpec changes without implementing application code.
plinth-java-coder
Implementation specialist for Java projects. Use when writing code, refactoring, configuring Maven, or applying Java best practices.
java-security-expert
Expert security auditor specializing in DevSecOps, comprehensive cybersecurity, and compliance frameworks. Masters vulnerability assessment, threat modeling, secure authentication (OAuth2/OIDC), OWASP standards, cloud security, and security automation. Handles DevSecOps integration, compliance (GDPR/HIPAA/SOC2), and…
java-pro
Master modern Java with streams, concurrency, and JVM optimization. Handles Spring Boot, reactive programming, and enterprise patterns. Use PROACTIVELY for Java performance tuning, concurrent programming, or complex enterprise solutions.