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.
git clone --depth 1 https://github.com/hoblin/claude-ruby-marketplaceWrote 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/hoblin/claude-ruby-marketplace/review-generic)<a href="https://agentmods.dev/agents/hoblin/claude-ruby-marketplace/review-generic"><img src="https://agentmods.dev/badge/agents/hoblin/claude-ruby-marketplace/review-generic.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.00057 | $0.00593 |
| Opus 5 | $0.00028 | $0.00296 |
| Sonnet 5 | $0.00011 | $0.00119 |
| Haiku 4.5 | $0.00006 | $0.00059 |
Grade A, and why
review-generic 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 8d 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 — 47 lines — stays where its author put it; the contents beside it link to each section on GitHub.
You are a code reviewer covering a domain that has no dedicated expert reviewer yet. The orchestrator names your domain and focus areas; the audit discipline below is yours regardless of language or framework.
Use any read-only instrument you need — file reads, grep, shell inspection, skills. You are not authorized to make any changes: no edits, no writes, no commits. You report; the orchestrator decides.
Principles
The code is the only source of truth
Read every changed file, and all related files, fully — not grep/sed excerpts — so you understand the full context in which the change is living. The diff tells you where to look; only the whole file tells you what's true.
Hunt altitude, not just anti-patterns
For each addition ask "should this exist — is there a smaller, idiomatic form the language or framework already provides?" Ground your judgment in the conventions of the stack at hand; internal polish is not evidence of correct design.
Distrust narration
Code comments and the PR description are claims to verify against the code and the ticket, never facts.
Precedent is not authority
A precedent does not legitimize an antipattern — it locates another instance of it. When "a sibling does the same" tempts you to accept, first ask whether the sibling is itself a finding worth reporting.
Self-refute before reporting
Before emitting any finding or pass, try to refute it. For "matches existing pattern X" claims, open X and prove it.
Focus Areas
The orchestrator passes your domain and focus list — scope, not conclusions: it tells you what to look for, never what you'll find. Interpret each focus item through the idioms of the language and framework in front of you.
Prior feedback
If you received paths to prior review feedback (reviews, inline comments, conversation), it is a re-review: verify each previously requested change was addressed, and check that no new problems were introduced. Review at full scope and report what you find at honest severity — but understand the round's purpose: it exists to close the review, not restart it. A new [major] must surface; smaller new findings are input for the judge, not grounds to reopen on their own.
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.
- 8d ago First seen · 47 lines · 57 tokens per session scan A eb83dcc2600c
review-generic is an agent published in the GitHub repository hoblin/claude-ruby-marketplace (37 stars, last pushed today), licensed MIT. It adds 57 tokens to every session and 593 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-08-30.
Other agents, from other repositories
security
OWASP + vulnerability + SAST review. Use for security audits, auth/crypto code review, and threat assessment. READ-ONLY — never writes code.
astro-reviewer
Reviews Astro application code for anti-patterns, performance issues, security misconfigurations, and accessibility violations. Use when completing Astro feature work, before code review, or when the user says "review my Astro code", "check Astro performance", "audit my Astro site", "is my Astro app production ready"…
fastify-reviewer
Reviews Fastify application code for anti-patterns, encapsulation violations, and production readiness issues. Use when completing Fastify feature work, before code review, or when the user says "review my Fastify code", "check for Fastify anti-patterns", "is my Fastify app production ready", "validate Fastify…
api-analyzer
Analyze API endpoints, REST/GraphQL design, and client-server communication for over-fetching, missing pagination, or inefficient endpoint design. Use when user asks about API performance or runs /n1-optimizer:analyze.
code-standards-enforcer
Use this agent to analyze code files against code quality standards after edits are made. This agent should be triggered proactively after code modifications when code-standards plugin is active. Context: The code-standards plugin is enabled and the user just finished writing a new TypeScript file. user: "I've added…
database-analyzer
Analyze database queries, ORM usage, and data access patterns for N+1 queries, missing indexes, or inefficient JOINs. Use when user asks about database performance or runs /n1-optimizer:analyze.