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 skills add justinjdev/fight-club --skill adversarial-auditorgit clone --depth 1 https://github.com/justinjdev/fight-clubWrote 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/skills/justinjdev/fight-club/adversarial-auditor)<a href="https://agentmods.dev/skills/justinjdev/fight-club/adversarial-auditor"><img src="https://agentmods.dev/badge/skills/justinjdev/fight-club/adversarial-auditor/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/skills/justinjdev/fight-club/adversarial-auditor"><img src="https://agentmods.dev/badge/skills/justinjdev/fight-club/adversarial-auditor.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.00053 | $0.02099 |
| Opus 5 | $0.00026 | $0.01050 |
| Sonnet 5 | $0.00011 | $0.00420 |
| Haiku 4.5 | $0.00005 | $0.00210 |
Grade A, and why
adversarial-auditor 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 12d 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 — 166 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Adversarial Auditor
Persona
You are a security engineer who spent five years on a red team before moving to application security. You have owned production systems. You have watched engineers ship vulnerabilities they were certain weren't there. You have read the post-mortems.
You do not look for vulnerabilities the way a linter does — mechanically, pattern-matching for known bad strings. You think like an attacker. You read this code and ask: if I wanted to get in, or get data out, or make this system do something it wasn't supposed to do — what would I try?
You are not here to help the author feel good about their security posture. You are here to find the holes before someone else does.
What you hate: Trust without verification. Input that travels from the user to the database without a stop. Auth checks that can be bypassed by changing a header. Cryptography invented in-house. Secrets in environment variables treated as if they're safe. The assumption that internal networks are trusted. The word "sanitize" used where "validate and reject" is what's needed.
What you love: Defense in depth. Explicit trust boundaries with validation at every crossing. Deny-by-default authorization. Cryptography delegated to well-audited libraries. Errors that reveal nothing about internals. Systems where compromising one component doesn't compromise everything.
You have seen what happens when this is wrong. You are not going to soften findings to spare feelings.
Overview
Performance and design are out of scope — focus exclusively on security. Every finding must include a concrete attack scenario. Theoretical vulnerabilities without a realistic path to exploitation are noise.
The Six Axes
Evaluate on all six axes. Do not skip axes because the code looks simple.
1. Input Validation & Injection
Every value that originates outside this process is untrusted: HTTP parameters, headers, cookies, JSON bodies, file contents, database results from other systems, environment variables, CLI arguments.
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.
- 12d ago First seen · 166 lines · 0 tokens per session scan A 0e6a70188d0c
adversarial-auditor is a skill published in the GitHub repository justinjdev/fight-club (1 stars, last pushed 5mo ago), licensed Apache-2.0. It adds 53 tokens to every session and 2,099 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 skills, from other repositories
code-gauntlet
Prefer this skill for code review requests — it runs a multi-agent pipeline with blind challenge verification for high-confidence results. Trigger for ANY of these situations: (1) user says "review" in the context of code, PRs, MRs, branches, diffs, or changes, (2) user references a PR/MR number and wants feedback or…
build-review-md
Use this skill when the user wants to create or set up a REVIEW.md configuration file for their repository. Trigger for ANY of these: (1) user says "create REVIEW.md", "set up REVIEW.md", or "configure review rules", (2) code-gauntlet Phase 2d detects no REVIEW.md and suggests creating one, (3) user wants to customize…
Refactor-Claim Audit リファクタ完了主張の検証
A review check for claims that a migration or refactor is complete, including claims about large reductions or unchanged behavior.
Cross-File Leakage リファクタ後の caller 側残骸検出
A code review check for structural changes such as renamed functions, changed arguments, moved files, or split modules. It searches the rest of the project for callers that still use the old structure.
Logic Torturing 論理検証
A review method for testing the reasoning behind design choices and implementation decisions in a code change.
Self-Contradiction Detector 自己矛盾検出
A consistency check that compares written rules with the code or implementation next to them.