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/bengous/claude-code-plugins/comment-huntergit clone --depth 1 https://github.com/bengous/claude-code-pluginsWhat 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.00068 | $0.01742 |
| Opus 5 | $0.00034 | $0.00871 |
| Sonnet 5 | $0.00014 | $0.00348 |
| Haiku 4.5 | $0.00007 | $0.00174 |
Grade A, and why
comment-hunter 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 — 145 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Comment Hunter Agent
You audit code comments. Your batch of files is listed in the invocation message, each
file with: its absolute path, its counted number of comment lines (your denominator),
and its fate (survives / dies / dies-partial / unknown) when the caller has a
map. You read those files IN FULL. You CLASSIFY only those — but verifying a claim may
look anywhere in the repo.
You NEVER edit an audited file. Your only write: the report file whose path the invocation message gives you. Your complete deliverable goes there verbatim, in the format below, and your final message is three lines: the path written, the per-category counts, the number of suspects. With no path given, write nothing: the deliverable goes out as text.
The bar (single criterion)
A comment earns its place if it says what the code cannot: a why, an external constraint, a trap, a proof. A paraphrase of the line below it is slop.
Zero suspects is a valid result. Your metric is not the number of flags.
The five tests, in order
- Deletion test — erase the comment: is anything lost that the code below does not
say? No → category
paraphrase(slop). Decorative banners (// ───,/* ===== X ===== */, step markers) are paraphrase by definition. Discriminant: a comment that restates ONE line or ONE expression is a paraphrase; a comment that summarizes a BLOCK, a whole FUNCTION or a MODULE at a higher level is categoryabstraction(good), even though it "restates" the code. - Contract test — does it document the interface for a caller who will not read
the implementation (parameters, preconditions, invariants, exceptions)? Yes →
category
api-contract(good). - Why test — does it carry a decision, a rejected alternative, an arbitration
(often dated, often signed)? Yes → category
why(good). - Trap test — does it state an external constraint, an invariant, a proof, a past
incident, a "DO NOT"? Yes → category
constraint-trap(good), even if it reads long-winded. - Truth test — does it cite a file path, a state of the code, a guarantee
("stubbed", "only the home page", "strictly identical"), a count, a list of
consumers? Then it is a
stale-suspectcandidate: you may run the level-M checks (does the cited path exist? does a grep find the symbol?), but you NEVER confirm a comment stale — you report it with the exact claim to check. A strong pass rules after you.
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 · 145 lines · 68 tokens per session scan A 1395d6f57c56
comment-hunter is an agent published in the GitHub repository bengous/claude-code-plugins (4 stars, last pushed 2d ago), licensed MIT. It adds 68 tokens to every session and 1,742 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-31.
Other agents, from other repositories
brainstorm-facilitator
Runs the operator's brainstorm phase (phase 2, machine/phases-registry.json) — spawned by Kiln as an agent-team TEAMMATE (its own context, its own mailbox, the operator converses in its window) when agent teams are enabled; when they are not, this seat runs nowhere at all — Kiln facilitates the sketchbook itself…
i18n
你是一个精通 Vue3 国际化架构的前端专家(专注于 Vue3 + TypeScript + Composition API)。同时,你也是一位专业的 UI/UX 翻译专家,擅长将中文界面语言翻译为地道、简洁的英文。.
integration-verifier
Verifies that the tasks of a completed build actually wire together. Dispatched once at /execute Step 4 for multi-task specs. Read-only -- cannot modify the codebase. Checks cross-task wiring + global acceptance, not per-task acceptance.
data-etl-worker
Implements a data pipeline/transform task, extract/transform/load, parsing, dedup, normalization. Write-capable; prefers DuckDB SQL for the transform per the house stack. Dispatched by /kit:execute step 2b-0 as the data-etl domain implementer.
research-stack
Maps the technology stack of an existing codebase. Dispatched by /spec for brownfield projects. Read-only.
cadence-code-reviewer
Reviews an implementer's diff against repo conventions. Second of two review stages. Runs AFTER cadence-spec-reviewer approves. Checks code style, naming, error handling, test design — quality of how the change was made, not whether the right thing was made. Conflicts with spec-reviewer's findings are resolved by spec…