From copilot-plugin-codex
Use when the user asks Copilot for a harsh review, red-team pass, challenged assumptions, or a sharper critique than `$copilot:review`.
How this skill is triggered — by the user, by Claude, or both
Slash command
/copilot-plugin-codex:adversarial-reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Same surface as `$copilot:review`, but the prompt instructs Copilot to behave as an adversarial reviewer: unchecked edge cases, hidden coupling, premature abstractions, security blind spots, happy-path optimism.
$copilot:adversarial-review — hostile-reviewer framingSame surface as $copilot:review, but the prompt instructs Copilot to behave as an adversarial reviewer: unchecked edge cases, hidden coupling, premature abstractions, security blind spots, happy-path optimism.
HOST=<host> bash "<plugin-root>/scripts/copilot-exec.sh" adversarial-review "" [flags]
Set <host> to codex or claude. Replace <plugin-root> with the installed plugin root; in a local checkout, that is the repo root.
Same flags as review: --base, --model, --background, --job-id.
copilot -p 'You are an adversarial reviewer. Challenge the assumptions in the recent changes on this branch compared to <base>. Look for: unchecked edge cases, hidden coupling, premature abstractions, security blind spots, and places where the author optimized for the happy path. Be specific. Cite file:line.' \
-s --allow-tool='shell(git:*)'
Present Copilot's findings without softening. If it says the change is clean, report that plainly — do not manufacture criticism to justify the framing. Lead with the most load-bearing concerns.
reviewreview — first-pass coverage of bugs/security/edge casesadversarial-review — pre-merge gut check, "what are we missing", design-risk auditRunning both is reasonable for high-stakes changes. Pass --background to one so they run in parallel.
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub crewworkai/copilot-plugin-codex --plugin copilot-plugin-codex