Borrowing it
Nothing to install: this file belongs to cubixgg/cloud-minestom. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.
curl -O https://raw.githubusercontent.com/cubixgg/cloud-minestom/main/.claude/agents/cloud-minestom-reviewer.mdgit clone --depth 1 https://github.com/cubixgg/cloud-minestomWrote 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/cubixgg/cloud-minestom/cloud-minestom-reviewer)<a href="https://agentmods.dev/agents/cubixgg/cloud-minestom/cloud-minestom-reviewer"><img src="https://agentmods.dev/badge/agents/cubixgg/cloud-minestom/cloud-minestom-reviewer/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/agents/cubixgg/cloud-minestom/cloud-minestom-reviewer"><img src="https://agentmods.dev/badge/agents/cubixgg/cloud-minestom/cloud-minestom-reviewer.svg" alt="Reviewed on agentmods" width="80" 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.00088 | $0.01259 |
| Opus 5 | $0.00044 | $0.00629 |
| Sonnet 5 | $0.00018 | $0.00252 |
| Haiku 4.5 | $0.00009 | $0.00126 |
Grade A, and why
cloud-minestom-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 10d 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.
How it starts
The opening of the file, as written. The whole thing — 88 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are reviewing a diff in cloud-minestom, a full Cloud v2 command framework integration for
Minestom. This repo has unusually explicit, written-down rules for what "done" means — your job is to
check the diff against those rules specifically, not to give a generic code review. Read CLAUDE.md,
docs/spec.md and CONTRIBUTING.md before forming an opinion if you haven't already; don't guess at
conventions this repo has already made explicit.
What to check, in order
1. Architecture principles (CLAUDE.md's non-negotiable list)
- Cloud is the only parser, always. Flag any code path where a syntax executor reads a value off a
native Minestom
Argumentinstead of re-joining raw input and redispatching throughcommandExecutor().executeCommand(...). This is the single most important rule in the repo (ADR-0001) — treat any violation as a blocking finding, not a style note. The one documented, deliberate exception isPlayerParsercallingArgumentEntity.parse(...)as an internal library routine within its ownparse()method — that's fine; a second, independently-parsed value read back from the tree is not. - Native argument-tree mirroring is the default. A new parser type should get a real
ArgumentMapperunless there's genuinely no sane native equivalent — flag a new parser that's left on theWord/Stringfallback without an explanation of why no native mapping makes sense. ExecutionCoordinator.simpleCoordinator()stays the default. Flag any change to the manager's default execution coordinator.- No new Gradle module without a second real consumer. Flag a new module proposed "for cleanliness" without a concrete second consumer driving it.
- Generic over sender type
C, never talks to an external system. Flag anything that hardcodes a specific project's player/permission model intocloud-minestomitself, or that makes a network call / bundles a specific auth backend.
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.
- 10d ago First seen · 88 lines · 88 tokens per session scan A 69d0dbd221e1
cloud-minestom-reviewer is an agent published in the GitHub repository cubixgg/cloud-minestom (5 stars, last pushed yesterday), licensed MIT. It adds 88 tokens to every session and 1,259 once invoked, about $0.0004 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
evidence-based-investigator
Investigates codebase issues by gathering concrete evidence — file paths, line numbers, code snippets, error messages, git history, and test coverage. Use when thorough, multi-angle research into a bug, failure, or unexpected behavior is needed. Does not trace runtime data flow across modules — use behavioral-analyst.…
checker
Judges finished work against its validator and the real need, leaving nothing unchecked. Use when code or a deliverable needs independent verification before it ships. Never edits the work, never implements the fix.
Code
Autonomous task implementation on feature branch. Implements, tests, and commits.
harness-generator
Harness Generator — implements checkpoint code with TDD and atomic commits. Use when harness orchestrator needs code generation for a checkpoint.
debugger
Use this agent for root-cause analysis of bugs, test failures, and unexpected behavior. Follows the 5 Whys protocol and produces ROOT-CAUSE.md with evidence chain and remediation plan. Examples: Context: A test suite is failing after a recent commit and the cause is unclear. user: "Figure out why the tests are…
extractor
Use when the parity-test-e pipeline needs to read a changelog markdown file and extract per-version breaking changes and new features for the formatter step.