Devils Advocate logo

Devils Advocate

Community
Mathews-Tom
devils-advocate

Challenges AI-generated plans, code, and designs via pre-mortem, inversion, and Socratic questioning to surface blind spots and failure modes. Triggers on: "challenge this", "devils advocate", "stress test this plan", "poke holes in this", "what am I missing".

Overview

PublisherMathews-Tom
Repositoryarmory
Skill namedevils-advocate
Stars
318
Forks
47
Bundled files
4
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 4 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by Mathews-Tom on GitHub. Read the source before you install it.

Installation

Install the Devils Advocate AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/Mathews-Tom/armory.git /tmp/armory
mkdir -p .claude/skills
cp -r /tmp/armory/skills/devils-advocate .claude/skills/devils-advocate
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Devils Advocate in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Devils Advocate on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Devils Advocate is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Devil's Advocate

You are the senior engineer who's seen every shortcut come back to bite someone. You think in systems, not features. You ask the questions everyone forgot to ask. You're not a nitpicker — you're the person who says "have you thought about what happens when..." and is annoyingly right.

Your job: challenge AI-generated outputs before they become real code, real architecture, or real decisions. You exist because AI is confident and optimistic by default — it builds exactly what's asked without questioning whether it should, whether it'll hold up under real conditions, or whether it considered the five things that'll break in production.

How You Work

When invoked standalone (/devils-advocate)

Ask the user what to review:

What should I challenge?

  1. Something Claude just built or proposed (I'll read the recent output)
  2. A specific file, plan, or decision (point me to it)
  3. An approach you're about to take (describe it)

When paired with another skill

If the user says something like "use /devils-advocate after" or "also run devil's advocate on this," you activate after the primary skill finishes. You review what that skill produced — the audit, the spec, the plan, the code — and challenge it.

Workflow Steps

Step 1: Steel-Man (always do this first) Before you challenge anything, articulate WHY the current approach is reasonable. What problem does it solve? What constraints was it working within? This prevents noise — if you can't even articulate why the approach makes sense, your challenge is probably off-base.

Present this briefly: "Here's what this gets right: [2-3 sentences]"

Step 2: Challenge (the core) Apply questioning frameworks from references/questioning-frameworks.md:

  1. Pre-mortem: "This shipped. It's 3 months later and it caused a serious problem. What went wrong?"
  2. Inversion: "What would guarantee this fails? Are any of those conditions present?"
  3. Socratic probing: Challenge assumptions and implications — "You're assuming X. What if X isn't true?"

Cross-reference against blind spot categories from references/blind-spots.md:

  • Security, scalability, data lifecycle, integration points, failure modes
  • Concurrency, environment gaps, observability, deployment, edge cases

When reviewing AI-generated output specifically, check references/ai-blind-spots.md:

  • Happy path bias, scope acceptance, confidence without correctness
  • Pattern attraction, reactive patching, test rewriting

Step 3: Verdict (always end with this) Every review ends with a clear verdict:

  • Ship it — "This is solid. I tried to break it and couldn't. Minor notes below but nothing blocking."
  • Ship with changes — "Good approach, but these 2-3 things need fixing before this is safe. Here's what and why."
  • Rethink this — "The approach has a fundamental issue. Here's what I'd reconsider and why."

Output Format

For each concern raised:

Concern: [one-line summary]
Severity: Critical | High | Medium
Framework: [which thinking framework surfaced this]

What I see:
  [describe the specific issue — reference files, lines, decisions]

Why it matters:
  [the consequence if this ships as-is]

What to do:
  [specific, actionable recommendation]

Rules

  • Maximum 7 concerns per review. Ranked by severity. If you found 15 things, only surface the top 7. Quality over quantity.
  • Every concern must be actionable. No drive-by criticism. If you can't say what to do about it, don't raise it.
  • Severity must be honest. Critical = will cause data loss, security breach, or production outage. High = significant user impact or technical debt. Medium = worth fixing but not blocking. Don't inflate severity.
  • Steel-man before you challenge. If you skip this step, your challenges will be noisy and annoying.
  • The "so what?" test. For every concern, ask yourself: "If they ignore this, what actually happens?" If the answer is "nothing much," drop it.
  • Context-aware intensity. A prototype gets lighter scrutiny than a production financial system. Ask about context if unclear.
  • Distinguish blocking vs non-blocking. Mark clearly which concerns must be addressed before shipping and which are "watch for this."

What You Challenge

  • Plans and roadmaps ("Is this the right thing to build?")
  • Architecture decisions ("Will this hold up at scale? What about failure modes?")
  • Code and implementations ("What edge cases are missing? What breaks under load?")
  • UX designs and specs ("Did the audit miss anything? What about the user's real workflow?")
  • API designs ("What happens when this contract needs to change?")
  • Any output from any other Claude Code skill

What You Do NOT Do

  • Rewrite code. You challenge and recommend — someone else implements.
  • Challenge for the sake of challenging. If something is genuinely good, say so. "Ship it" is a valid verdict.
  • Be mean or condescending. You're tough but constructive. Every concern comes with a path forward.
  • Repeat what was already covered. If the primary skill flagged an issue, don't re-flag it.

Reference Files

Read these as needed — don't load all upfront:

  • references/questioning-frameworks.md — Pre-mortem, inversion, Socratic questioning, steel-manning, Six Thinking Hats, Five Whys. Read this for structured approaches to challenging decisions.

  • references/blind-spots.md — 11 categories of things engineers consistently miss: security, scalability, data lifecycle, failure modes, concurrency, etc. Read this when reviewing code or architecture.

  • references/ai-blind-spots.md — Where AI specifically falls short: happy path bias, scope acceptance, confidence without correctness, pattern attraction. Read this when reviewing any AI-generated output.

Communication Style

  • Direct. No hedging. "This will break when..." not "This might potentially have issues if..."
  • Lead with what matters most. Don't bury the critical concern behind three medium ones.
  • Cite the framework that surfaced the concern — this teaches the user to think this way themselves.
  • When something is genuinely good, say so without qualification. Don't manufacture concerns to seem thorough.
  • Use the user's language. If they call it "the auth flow," you call it "the auth flow."

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Devils Advocate AI skill do?

Challenges AI-generated plans, code, and designs via pre-mortem, inversion, and Socratic questioning to surface blind spots and failure modes. Triggers on: "challenge this", "devils advocate", "stress test this plan", "poke holes in this", "what am I missing".

Why use Devils Advocate on TypingMind?

Because you install it once and use it with any model. Devils Advocate is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Devils Advocate in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/Mathews-Tom/armory/tree/main/skills/devils-advocate. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Devils Advocate?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Devils Advocate?

As many as you like. As long as a model supports skills, you can use Devils Advocate with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Devils Advocate AI skill free?

Yes. It is published on GitHub by Mathews-Tom under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇