refuter-abuse

refuter-abuse is an agent for Claude Code from momomuchu/make-no-mistakes. It costs 56 tokens per session (425 once invoked), scanned A, original, MIT.

A read-only security checker for the part of a code change it can actually affect. It looks for malicious inputs, access-control mistakes, unsafe data handling, races, and exposed secrets, but only for higher-risk review tiers.

In plain words
What is it for?
Checking changed code for injection, unauthorized access, data-integrity races, resource exhaustion, unsafe deserialization, and sensitive-data leaks.
Why use it?
It helps find security problems introduced by a specific change without reviewing the entire codebase. It requires concrete attack examples rather than general warnings.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter.

Part of the make-no-mistakes plugin — 5 skills, 6 agents, 2 hooks shipped together

Good fit Checking changed code for injection, unauthorized access, data-integrity races, resource exhaustion, unsafe deserialization, and sensitive-data leaks.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/momomuchu/make-no-mistakes/refuter-abuse
Install

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.

Clone the repo
git clone --depth 1 https://github.com/momomuchu/make-no-mistakes

Made for: Claude Code.

Or install make-no-mistakes, the plugin that ships this one along with the rest of its 5 skills, 6 agents, 2 hooks.

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.

agentmods badge for refuter-abuse

README.md
[![agentmods](https://agentmods.dev/badge/agents/momomuchu/make-no-mistakes/refuter-abuse/github.svg)](https://agentmods.dev/agents/momomuchu/make-no-mistakes/refuter-abuse)
Your own site
<a href="https://agentmods.dev/agents/momomuchu/make-no-mistakes/refuter-abuse"><img src="https://agentmods.dev/badge/agents/momomuchu/make-no-mistakes/refuter-abuse/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.

agentmods 80×15 button for refuter-abuse

Your own site · 80×15
<a href="https://agentmods.dev/agents/momomuchu/make-no-mistakes/refuter-abuse"><img src="https://agentmods.dev/badge/agents/momomuchu/make-no-mistakes/refuter-abuse.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 56 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 425 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00056 $0.00425
Opus 5 $0.00028 $0.00212
Sonnet 5 $0.00011 $0.00085
Haiku 4.5 $0.00006 $0.00042

Measured 10d ago against content hash 7a12344c3814, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

refuter-abuse 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.

agents/refuter-abuse.md · 43 lines

What it actually says

Refuter — Abuse/security (H/C only)

Your only goal: find a malicious, malformed, or adversarial input that drives this diff into unsafe behavior — not a generic pentest of the whole repo, only what this diff actually touches or newly exposes.

What "break it" means here

  • Injection surfaces the diff introduces or touches: SQL / command / template / path — construct an actual malicious input and show its effect, don't assert the risk abstractly.
  • Authz/authn: does the diff check the actor owns or can access the resource, or does it trust a client-supplied id? Try a request for someone else's resource.
  • Data-integrity races: for money/credit/quantity logic, does concurrent execution (two near-simultaneous calls) break an invariant an atomic operation should have protected?
  • Resource exhaustion: unbounded loops or allocations driven by attacker-controlled size.
  • Secrets or sensitive data newly logged, echoed in an error, or written somewhere world-readable.
  • Unsafe deserialization or raw-HTML-injection-class sinks touched by the diff.

What you do NOT do

Security-review the whole repository (scope is only the diff's touch surface), or treat a theoretical vulnerability category as a finding without a constructed, executed input proving it.

Evidence bar

Every REFUTED shows the actual malicious input, the command/request that sent it, and the unsafe consequence observed — executed, not merely argued.

Verdict

CONFIRMED / REFUTED / UNVERIFIABLE. Commit your verdict before reading any other refuter's output.

Changes

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.

  1. 10d ago First seen · 43 lines · 56 tokens per session scan A 7a12344c3814

Subscribe to this mod's changes

refuter-abuse is an agent published in the GitHub repository momomuchu/make-no-mistakes (8 stars, last pushed 2mo ago), licensed MIT. It adds 56 tokens to every session and 425 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.

Related

Other agents, from other repositories

ux-evaluator

Use this agent for read-only UX evaluation of test-runner driver artifacts (Playwright AX-tree snapshots, screenshots, console output). Applies the 4-check UX rubric (onboarding-step-count ≤7, axe-violations critical/serious, console-errors visible to user, Apple-Liquid-Glass .glassEffect() conformance on SwiftUI 26+)…

Kanevry/session-orchestrator · 199 tokens

qa-strategist

Use this agent for read-only test-coverage gap analysis between waves. Identifies missing boundary cases, error paths, and integration gaps not caught by happy-path tests. Context: Impl-Core shipped a new auth flow with 6 unit tests. user: "Check the test coverage gaps." assistant: "I'll dispatch qa-strategist to…

Kanevry/session-orchestrator · 111 tokens

test-writer

Use this agent to close NAMED test gaps and to consolidate redundant tests. It writes the specific missing test, and it deletes, merges, or parameterises tests that do not earn their keep. Context: Quality wave named one concrete gap — the invoice service never exercises the declined-payment branch. user: "The invoice…

Kanevry/session-orchestrator · 281 tokens

db-specialist

Use this agent for database work — schema design, migrations, queries, indexes, and database functions. Handles SQL, ORMs, and database architecture decisions. Context: New feature requires database schema changes. user: "Create the migration for the invoice tables with proper indexes" assistant: "I'll dispatch the…

Kanevry/session-orchestrator · 166 tokens

eval-judge

Use this agent during the /eval Skill Phase 3 (Epic #803, issue #810) to judge — from a session-eval record's dimension evidence, kpis, and sessionid — the record's instruction-adherence and report-quality per rubric-v1.md's Judge Dimensions section. Dispatched read-only, coordinator-side (never inside a wave) by…

Kanevry/session-orchestrator · 249 tokens

dialectic-deriver

Use this agent when reasoning over top-N learnings + last-K sessions + existing peer cards to derive updates to USER.md / AGENT.md. Called via /evolve --dialectic mode by the evolve skill. Reads inputs, writes one fenced diff block per peer-card target. Read-only by contract — never writes files. Cheap-by-default …

Kanevry/session-orchestrator · 181 tokens