Agent skill · Code Review & Quality

santa-method

Multi-agent adversarial verification with convergence loop. Two independent review agents must both pass before output ships.

mturacgithub.com/mturacGitHub ↗
codexcopilotcursorMIT
Install
npx skills add mturac/everything-openai-codex --skill santa-method --agent codex

Same command for any agent — swap --agent for claude-code, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 12 KB
Bundled scripts: none
Path: skills/santa-method/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 84
Language: JavaScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Santa Method Multi-agent adversarial verification framework. Make a list, check it twice. If it's naughty, fix it until it's nice. The core insight: a single agent reviewing its own output shares the same biases, knowledge gaps, and systematic errors that produced the output. Two independent reviewers with no shared context break this failure mode. ## When to Activate Invoke this skill when: - Output will be published, deployed, or consumed by end users - Compliance, regulatory, or brand constraints must be enforced - Code ships to production without human review - Content accuracy matters (technical docs, educational material, customer-facing copy) - Batch generation at scale where spot-checking misses systemic patterns - Hallucination risk is elevated (claims, statistics, API references, legal language) Do NOT use for internal drafts, exploratory research, or tasks with deterministic verification (use build/test/lint pipelines for those). ## Architecture ``` ┌─────────────┐ │ GENERATOR │ Phase 1: Make a List │ (Agent A) │ Produce the deliverable └──────┬───────┘ │ output ▼ ┌──────────────────────────────┐ │ DUAL INDEPENDENT REVIEW │ Phase 2: Check It Twice │ │ │ ┌───────────┐ ┌

What's inside
Steps it walks through
  1. When to Activate
  2. Architecture
  3. Phase Details
  4. Phase 1: Make a List (Generate)
  5. Phase 2: Check It Twice (Independent Dual Review)
  6. Rubric Design
  7. Phase 3: Naughty or Nice (Verdict Gate)
  8. Phase 4: Fix Until Nice (Convergence Loop)
  9. Implementation Patterns
  10. Pattern A: OpenAI Codex Subagents (Recommended)
  11. Pattern B: Sequential Inline (Fallback)
  12. Pattern C: Batch Sampling
  13. Failure Modes and Mitigations
  14. Integration with Other Skills
Commands it runs
In a OpenAI Codex session, use the Agent tool to spawn reviewers
Both agents run in parallel for speed
More from everything-openai-codex
All skills →
About this skill
What does the santa-method skill do?

Multi-agent adversarial verification with convergence loop. Two independent review agents must both pass before output ships.

How do I install it?

Run `npx skills add mturac/everything-openai-codex --skill santa-method --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From mturac/everything-openai-codex, a repository with 84 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going