adversarial-reviewer

adversarial-reviewer is a skill for Claude Code from KhaledSaeed18/dotclaude. It costs 81 tokens per session (1,120 once invoked), scanned A, original, MIT.

A code-review method that examines changes from three viewpoints: someone trying to break the code, a new developer who may misunderstand it, and a security auditor looking for weaknesses.

In plain words
What is it for?
Use it for critical code paths, changes that need extra scrutiny, or reviews after earlier checks failed to catch bugs.
Why use it?
It exposes edge cases, confusing assumptions, ordering problems, and security issues that a routine review may miss.

Skill for Claude Code

Written for Claude Code: a Claude Code plugin manifest.

Part of the engineering plugin — 15 skills, 1 command, 6 agents shipped together

Good fit Use it for critical code paths, changes that need extra scrutiny, or reviews after earlier checks failed to catch bugs.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/khaledsaeed18/dotclaude/adversarial-reviewer
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.

Any agent
npx skills add KhaledSaeed18/dotclaude --skill adversarial-reviewer
Clone the repo
git clone --depth 1 https://github.com/KhaledSaeed18/dotclaude

Made for: Claude Code.

Or install engineering, the plugin that ships this one along with the rest of its 15 skills, 1 command, 6 agents.

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 adversarial-reviewer

README.md
[![agentmods](https://agentmods.dev/badge/skills/khaledsaeed18/dotclaude/adversarial-reviewer/github.svg)](https://agentmods.dev/skills/khaledsaeed18/dotclaude/adversarial-reviewer)
Your own site
<a href="https://agentmods.dev/skills/khaledsaeed18/dotclaude/adversarial-reviewer"><img src="https://agentmods.dev/badge/skills/khaledsaeed18/dotclaude/adversarial-reviewer/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 adversarial-reviewer

Your own site · 80×15
<a href="https://agentmods.dev/skills/khaledsaeed18/dotclaude/adversarial-reviewer"><img src="https://agentmods.dev/badge/skills/khaledsaeed18/dotclaude/adversarial-reviewer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 81 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,120 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00081 $0.01120
Opus 5 $0.00041 $0.00560
Sonnet 5 $0.00016 $0.00224
Haiku 4.5 $0.00008 $0.00112

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

Security

Grade A, and why

adversarial-reviewer scanned grade A with 1 finding 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 9d 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.

Unrestricted tool accesslowExcessive agency

A wildcard tool grant or "run any command" leaves no least-privilege boundary at all.

- **Supply chain:** if a new dependency was added, is it maintained, widely used, and necessary? Does it run install scripts that could execute arbitrary code?

Downgraded: this mod is about security review, or the phrase is quoted, so it is likely naming the pattern rather than instructing it.

.claude-plugin/plugins/engineering/skills/adversarial-reviewer/SKILL.md · 71 lines

How it starts

The opening of the file, as written. The whole thing — 71 lines — stays where its author put it; the contents beside it link to each section on GitHub.

A normal review looks for obvious problems. This review looks with the eyes of someone who wants the code to fail, someone who has never seen it, and someone who is paid to find holes in it. Each persona must report at least one finding. If a persona genuinely cannot find a problem after a thorough examination, that is itself a result - state exactly what was checked and why each candidate turned out safe.

Before starting

Read the code in full without judging it. Understand what it is trying to do and what invariants it relies on. Only then switch to the adversarial personas, one at a time.

If a diff or specific files are in scope, focus there. If the scope is the current change, also read the surrounding code that the change interacts with.

Persona 1: The Saboteur

The Saboteur wants the code to fail at runtime. They probe for:

  • Edge cases: what happens with empty input, zero, negative numbers, very large values, unicode, null, undefined, or a missing key in an object?
  • Sequence and ordering: what if events arrive out of order? What if two calls happen concurrently? Is there a race between reads and writes?
  • Type coercion and implicit conversion: does == hide a type mismatch? Does a numeric string arrive where a number is expected and gets treated as one?
  • Failure paths: what happens when a network call fails, a file is missing, a lock times out, or a dependency throws? Are errors swallowed? Does the system end up in a partially-updated state?
  • Off-by-one and boundary arithmetic: are loop bounds correct? Are slices and ranges inclusive or exclusive where they need to be?

The Saboteur reports findings as: "Saboteur finds: [precise scenario] at [file:line] causes [concrete failure]."

Persona 2: The New Hire

The New Hire is reading this code for the first time, on their second week. They flag:

  • Naming confusion: identifiers that mean something different from what they look like, or two things that sound the same but differ in a subtle way.
  • Undocumented assumptions: preconditions that callers must satisfy but are never stated, state that must be initialized before a function is called, or ordering guarantees that the code depends on but does not enforce.
  • Missing tests for non-obvious behavior: any path that a reader would not predict from the function's name or signature but that is load-bearing.
  • Why is this here? Code that does something surprising without explanation. Side effects that are not obvious from the call site.
  • Complexity that could be simpler: nested conditionals that could be flattened, a loop doing the work of a standard library function, state that is tracked manually when a different data structure would make it automatic.

Read the full file on GitHub · 71 lines

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. 9d ago First seen · 71 lines · 81 tokens per session scan A daa8240b48fd

Subscribe to this mod's changes

adversarial-reviewer is a skill published in the GitHub repository KhaledSaeed18/dotclaude (5 stars, last pushed yesterday), licensed MIT. It adds 81 tokens to every session and 1,120 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 1 finding (unrestricted tool access). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

refactor

Guides a refactor, cleanup, or restructure with the right decomposition. Use when the user asks to refactor, simplify, extract, or modernize code.

code-yeongyu/oh-my-openagent · 36 tokens

pre-publish-review

Nuclear-grade 12-agent pre-publish release gate. Runs /get-unpublished-changes to detect all changes since last npm release, spawns up to 10 ultrabrain agents for deep per-change analysis, invokes /review-work (orchestrator manual QA plus one gate reviewer) for holistic review, and 1 oracle for overall release…

code-yeongyu/oh-my-openagent · 161 tokens

work-with-pr

Full PR lifecycle in a fresh task-owned git worktree: implement via the ulw-loop skill with mandatory evidence-bound manual QA → reviewer-readable English PR → verification loop (CI + Cubic, where Cubic is skipped only when its quota is exhausted) → merge by default → worktree cleanup. Decomposes one task into the…

code-yeongyu/oh-my-openagent · 211 tokens

remove-ai-slops

Removes AI-generated code smells from branch changes or an explicit file list behind regression tests. Use when the user asks to clean up, deslop, or remove AI-slop patterns from recent changes.

code-yeongyu/oh-my-openagent · 45 tokens

review-work

Post-implementation gate review: run manual QA on the real surface yourself, then launch ONE gate reviewer (never a panel) to audit goal, constraints, code quality, security, missed context, and QA evidence. Use before a PR handoff or when the user explicitly asks to review completed work.

code-yeongyu/oh-my-openagent · 63 tokens

tech-debt-audit

Thorough, file-cited technical debt audit across 9 dimensions using AST-grep (tree-sitter), grep, LSP, and language-native tooling. Produces TECHDEBTAUDIT.md with severity, effort estimates, and prioritized fixes. Use when asked for codebase health check, tech debt audit, architecture review, code quality assessment…

code-yeongyu/oh-my-openagent · 127 tokens