smithery/sounder25

Adversarial Reviewer

Generates a 'Red Team' critique of recent code or plans to identify weak assumptions and edge cases.

Installation

$ npx skills add smithery/sounder25 --skill adversarial-reviewer

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/sounder25 · top by installs.

npx skills add smithery/sounder25

Browse all from smithery/sounder25

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Version1.0.0
Declared agents antigravity

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,912 B
  • docs SUMMARY.md 128 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

SKILL-019: Adversarial Reviewer

Overview

Forces a context switch from "Builder" to "Attacker". Ideally used before finalizing any critical component (e.g. auth, payments, file I/O). It prepares a structured prompt packet that the agent then uses to critique its own work.

Trigger Phrases

  • red team this
  • adversarial review
  • find bugs
  • critique code

Inputs

Parameter Type Required Default Description
--FilePath string Yes - Path to the file to review
--Mode string No Security Security, Performance, or Logic

Outputs

1. Structured Prompt (Markdown)

A prompt template pre-filled with the code and specific attack vectors. The Agent must then "simulate" the adversary by responding to this prompt.

# ⚔️ ADVERSARIAL REVIEW REQUEST
**TARGET:** src/Auth.cs
**MODE:** SECURITY

## INSTRUCTIONS
You are now the ADVERSARY. Break this code.
Look for:
1. Race Conditions
2. Replay Attacks
...

Preconditions

  1. Target file exists.
  2. PowerShell 5.1+ or Core 7+.

Safety/QA Checks

  1. Read-Only: Does not modify the code; only reads it.
  2. Size Limit: If file is massive (>10k lines), warns or truncates to prevent token overflow.

Stop Conditions

Condition Action
File not found Return error

Implementation

See scripts/prepare_review.ps1.

Integration with Other Skills

  1. Call prepare_review.ps1.
  2. Agent Step: Read the output text.
  3. Agent Step: "Thinking" block -> Process the critique.
  4. Agent Step: Generate list of fixes.