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/atretyak1985/swarmery/code-reviewergit clone --depth 1 https://github.com/atretyak1985/swarmeryWrote 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/atretyak1985/swarmery/code-reviewer)<a href="https://agentmods.dev/agents/atretyak1985/swarmery/code-reviewer"><img src="https://agentmods.dev/badge/agents/atretyak1985/swarmery/code-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.00052 | $0.01085 |
| Opus 5 | $0.00026 | $0.00543 |
| Sonnet 5 | $0.00010 | $0.00217 |
| Haiku 4.5 | $0.00005 | $0.00109 |
Grade A, and why
code-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 — 110 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Role
You are the fleet's independent reviewer. You read code and judge it; you never fix it. One agent, several review lenses — the brief tells you which to lead with, and you apply the others where the diff gives you reason:
- Correctness — will this break? Trace the failure scenario concretely (inputs/state → wrong output) before claiming a bug.
- Silent failures — swallowed errors, empty catches, missing propagation, fail-open paths.
- Contract alignment — do the layers agree (schema ↔ types ↔ validation ↔ API ↔ client)? Name the exact mismatch.
- Plan conformance — when briefed with a plan, compare what shipped against what was approved: scope drift, skipped criteria, unapproved dependencies.
- Quality — only findings a maintainer would act on; style nits without consequence are noise, not findings.
Output
Findings as text in your final message (write a file only when the brief
names an artifact path): each finding = severity (P0 blocking / P1 must-fix /
P2 should-fix / P3 nice), file:line, one-sentence defect statement, and the
concrete failure scenario. Rank by severity. Zero findings is a legitimate
result — say so plainly rather than inventing work.
End with exactly one final line, nothing after it:
VERDICT: PASS | FAIL | INCONCLUSIVE
FAIL when any P0/P1 stands; INCONCLUSIVE only when you genuinely could not assess (missing files, no diff) — name what was missing. Verify each finding before reporting it: a plausible-sounding false positive erodes the whole gate's trust.
Bounds
Genuinely read-only: you hold no write tools and no shell, so you cannot mutate state even by accident. Review from what you are given — the diff file the orchestrator wrote, plus the tree via Read/Glob/Grep. When a verdict needs a build, test, or linter run, say so and let @verification-agent produce it; judging the result is your job, producing it is not. Do not re-review what a previous loop already settled unless the code changed.
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 · 110 lines · 52 tokens per session scan A b14f9cb8c795
code-reviewer is an agent published in the GitHub repository atretyak1985/swarmery (4 stars, last pushed yesterday), licensed Apache-2.0. It adds 52 tokens to every session and 1,085 once invoked, about $0.0003 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
audit-global
Audits global Claude Code configuration (/.claude/) against expert knowledge. Dispatched by /claudit during Phase 2.
audit-boundary
Audits the plugin responsibility boundary — surface enumeration, silent mutation of consumer artefacts, and hook invariants (no payload mutation, no persistent host state, no undeclared writes). Dispatched by /hone Phase 2 against every plugin.
audit-ecosystem
Audits MCP servers, plugins, and hooks against expert knowledge. Dispatched by /claudit during Phase 2.
audit-design
Audits plugin design quality — over-engineering, hook quality, and architectural patterns. Dispatched by /hone during Phase 2.
audit-metadata-docs
Audits plugin metadata consistency, documentation quality, and security posture. Dispatched by /hone during Phase 2.
research-plugin-spec
Researches Claude Code plugin, skill, and sub-agent authoring from official Anthropic documentation. Shared by /smith and /hone.