Devil's Advocate
Systematically challenge ideas, assumptions, designs, and decisions by playing devil's advocate to identify weaknesses, blind spots, and alternative perspectives before committing to a course of action.
When to use me
Use this skill when:
- A team seems to be converging on a solution without debate
- Important decisions are being made based on consensus rather than evidence
- You need to stress-test ideas before implementation
- Identifying potential failure modes and risks
- Preventing groupthink and confirmation bias
- Evaluating multiple alternatives before choosing
- Preparing for stakeholder challenges or objections
- Building resilience against criticism and failure
What I do
1. Argument Deconstruction
- Identify core claims and assumptions in proposals, designs, or decisions
- Analyze supporting evidence for strength, relevance, and reliability
- Map logical connections between premises and conclusions
- Detect rhetorical fallacies and cognitive biases in reasoning
- Surface implicit beliefs that aren't explicitly stated
2. Counterargument Generation
- Generate alternative explanations for the same evidence
- Propose competing hypotheses that could also be true
- Identify contradictory data or opposing viewpoints
- Suggest different interpretations of facts and findings
- Construct "what if" scenarios where current thinking is wrong
3. Weakness Identification
- Find logical gaps in arguments and reasoning
- Identify unexamined risks and potential failure modes
- Spot overconfidence in predictions or estimates
- Detect oversimplification of complex problems
- Recognize missing perspectives or stakeholder views
4. Alternative Perspective Exploration
- Adopt different stakeholder viewpoints (users, customers, regulators, competitors)
- Consider opposite positions on controversial issues
- Explore edge cases and boundary conditions
- Apply different mental models or frameworks
- Question fundamental premises rather than just conclusions
Devil's Advocate Techniques
For Technical Decisions:
- Challenge technology choices: "What if this framework becomes unmaintained?"
- Question architecture decisions: "How does this handle ten times the expected load?"
- Probe security assumptions: "What attack vectors are we not considering?"
- Test scalability claims: "What breaks first under stress?"
- Examine dependency risks: "What happens if this third-party service changes?"
For Product/Feature Decisions:
- Challenge user assumptions: "What if users don't behave as we expect?"
- Question market fit: "What evidence contradicts our market assumptions?"
- Probe value propositions: "Why would customers choose alternatives?"
- Test business models: "What assumptions make this revenue model fail?"
- Examine competitive threats: "How could competitors easily undermine this?"
For Process/Operational Decisions:
- Challenge workflow efficiency: "What makes this process fragile?"
- Question measurement validity: "Are we measuring the right things?"
- Probe team dynamics: "What interpersonal issues could derail this?"
- Test communication plans: "Where could misunderstandings occur?"
- Examine incentive alignment: "What perverse incentives does this create?"
Examples
# Challenge a technical design decision
npm run devils-advocate:challenge -- --decision "use-microservices" --context "ecommerce-platform"
# Test a product assumption
npm run devils-advocate:test -- --assumption "users-want-mobile-app" --data "user-research.json"
# Identify weaknesses in a proposal
npm run devils-advocate:weaknesses -- --proposal "architecture-redesign.pdf" --perspective "security"
# Generate counterarguments for a business case
npm run devils-advocate:counterarguments -- --business-case "expand-to-europe.md" --stakeholder "competitor"
# Comprehensive devil's advocate review
npm run devils-advocate:review -- --document "project-plan.md" --thoroughness high
Output format
Devil's Advocate Analysis
──────────────────────────────
Subject: Microservices Architecture Proposal
Date: 2026-02-26
Analysis Duration: 45 minutes
Core Claims Identified:
1. "Microservices will improve development velocity by 40%"
2. "Team autonomy will increase with bounded contexts"
3. "System will be more resilient to failures"
4. "Scaling will be more efficient and cost-effective"
5. "Technology diversity will enable better tool selection"
Argument Analysis:
1. Claim: "Microservices improve development velocity by 40%"
Supporting Evidence: Case studies from other companies
Devil's Advocate Challenges:
- Case studies may not apply to our context (different scale, team structure)
- 40% improvement assumes optimal implementation and mature DevOps
- Velocity gains may be offset by coordination overhead
- Microservices introduce new failure modes (network, versioning, data consistency)
- Learning curve could reduce velocity initially
Alternative Explanation:
The perceived velocity improvement may come from better practices
(CI/CD, testing) that could be applied to monoliths too.
2. Claim: "Team autonomy increases with bounded contexts"
Supporting Evidence: Conway's Law, team structure diagrams
Devil's Advocate Challenges:
- Bounded contexts require clear domain boundaries (do we have them?)
- Teams need new skills (distributed systems, SRE practices)
- Increased autonomy may lead to inconsistent standards
- Cross-team coordination becomes more formal and slower
- Some domains naturally span multiple services
Alternative Perspective:
Monolith with modular architecture might provide similar autonomy benefits
without operational complexity.
3. Claim: "System more resilient to failures"
Supporting Evidence: Failure isolation diagrams, redundancy claims
Devil's Advocate Challenges:
- Distributed systems have MORE failure modes (network partitions, service discovery)
- Resilience requires sophisticated infrastructure (circuit breakers, retries, fallbacks)
- Debugging failures across services is harder
- Data consistency becomes a major challenge
- Cascading failures possible if dependencies not managed
Contradictory Evidence:
Many companies report increased operational complexity and failure rates
after microservices adoption without proper preparation.
Risk Assessment:
- High Risk: Data consistency across services
- Medium Risk: Operational complexity overwhelming team
- Medium Risk: Cross-team coordination overhead
- Low Risk: Technology choice limitations
Alternative Approaches Worth Considering:
1. Modular monolith with clear internal boundaries
2. Start with coarse-grained services, refine later
3. Hybrid approach: monolith for core domain, services for edge functions
4. Focus on DevOps maturity first, then evaluate service boundaries
Critical Questions Unanswered:
1. What specific metrics will measure "improved velocity"?
2. How will we handle distributed transactions?
3. What is the rollback plan if microservices don't deliver value?
4. How will team structure change to support service ownership?
5. What monitoring and observability investments are needed?
Recommendations:
1. Pilot with one non-critical service first
2. Define clear success metrics before proceeding
3. Invest in foundational capabilities (monitoring, deployment, testing)
4. Consider evolutionary architecture rather than big-bang rewrite
5. Document assumptions and revisit after 3 months
Analysis Value:
- Weaknesses identified: 8 significant, 3 critical
- Alternative perspectives generated: 5 viable alternatives
- Assumptions challenged: 12 core assumptions
- Risk areas highlighted: 3 high-risk areas needing mitigation
- Decision quality improvement: High (prevents potential costly mistake)
Notes
- Devil's advocate is a role, not a personality – it's temporary and purposeful
- The goal is better decisions, not winning arguments or blocking progress
- Balance skepticism with constructive alternatives
- Document challenges and responses for future reference
- Use devil's advocate selectively for important decisions, not every discussion
- The most valuable challenges are those that are hardest to answer
- Pair devil's advocate with other perspectives for balanced analysis
- Time-box devil's advocate analysis to prevent analysis paralysis
- Focus on substance, not style – challenge ideas, not people
- The best devil's advocate questions are those that make everyone think differently
1---2name: devils-advocate3description: Challenge ideas, assumptions, and decisions by playing devil's advocate to identify weaknesses and prevent groupthink4license: MIT5---67# Devil's Advocate89Systematically challenge ideas, assumptions, designs, and decisions by playing devil's advocate to identify weaknesses, blind spots, and alternative perspectives before committing to a course of action.1011## When to use me1213Use this skill when:14- A team seems to be converging on a solution without debate15- Important decisions are being made based on consensus rather than evidence16- You need to stress-test ideas before implementation17- Identifying potential failure modes and risks18- Preventing groupthink and confirmation bias19- Evaluating multiple alternatives before choosing20- Preparing for stakeholder challenges or objections21- Building resilience against criticism and failure2223## What I do2425### 1. Argument Deconstruction26- **Identify core claims and assumptions** in proposals, designs, or decisions27- **Analyze supporting evidence** for strength, relevance, and reliability28- **Map logical connections** between premises and conclusions29- **Detect rhetorical fallacies** and cognitive biases in reasoning30- **Surface implicit beliefs** that aren't explicitly stated3132### 2. Counterargument Generation33- **Generate alternative explanations** for the same evidence34- **Propose competing hypotheses** that could also be true35- **Identify contradictory data** or opposing viewpoints36- **Suggest different interpretations** of facts and findings37- **Construct "what if" scenarios** where current thinking is wrong3839### 3. Weakness Identification40- **Find logical gaps** in arguments and reasoning41- **Identify unexamined risks** and potential failure modes42- **Spot overconfidence** in predictions or estimates43- **Detect oversimplification** of complex problems44- **Recognize missing perspectives** or stakeholder views4546### 4. Alternative Perspective Exploration47- **Adopt different stakeholder viewpoints** (users, customers, regulators, competitors)48- **Consider opposite positions** on controversial issues49- **Explore edge cases** and boundary conditions50- **Apply different mental models** or frameworks51- **Question fundamental premises** rather than just conclusions5253## Devil's Advocate Techniques5455### For Technical Decisions:56- **Challenge technology choices**: "What if this framework becomes unmaintained?"57- **Question architecture decisions**: "How does this handle ten times the expected load?"58- **Probe security assumptions**: "What attack vectors are we not considering?"59- **Test scalability claims**: "What breaks first under stress?"60- **Examine dependency risks**: "What happens if this third-party service changes?"6162### For Product/Feature Decisions:63- **Challenge user assumptions**: "What if users don't behave as we expect?"64- **Question market fit**: "What evidence contradicts our market assumptions?"65- **Probe value propositions**: "Why would customers choose alternatives?"66- **Test business models**: "What assumptions make this revenue model fail?"67- **Examine competitive threats**: "How could competitors easily undermine this?"6869### For Process/Operational Decisions:70- **Challenge workflow efficiency**: "What makes this process fragile?"71- **Question measurement validity**: "Are we measuring the right things?"72- **Probe team dynamics**: "What interpersonal issues could derail this?"73- **Test communication plans**: "Where could misunderstandings occur?"74- **Examine incentive alignment**: "What perverse incentives does this create?"7576## Examples7778```bash79# Challenge a technical design decision80npm run devils-advocate:challenge -- --decision "use-microservices" --context "ecommerce-platform"8182# Test a product assumption 83npm run devils-advocate:test -- --assumption "users-want-mobile-app" --data "user-research.json"8485# Identify weaknesses in a proposal86npm run devils-advocate:weaknesses -- --proposal "architecture-redesign.pdf" --perspective "security"8788# Generate counterarguments for a business case89npm run devils-advocate:counterarguments -- --business-case "expand-to-europe.md" --stakeholder "competitor"9091# Comprehensive devil's advocate review92npm run devils-advocate:review -- --document "project-plan.md" --thoroughness high93```9495## Output format9697```98Devil's Advocate Analysis99──────────────────────────────100Subject: Microservices Architecture Proposal101Date: 2026-02-26102Analysis Duration: 45 minutes103104Core Claims Identified:1051. "Microservices will improve development velocity by 40%"1062. "Team autonomy will increase with bounded contexts"1073. "System will be more resilient to failures"1084. "Scaling will be more efficient and cost-effective"1095. "Technology diversity will enable better tool selection"110111Argument Analysis:1121131. Claim: "Microservices improve development velocity by 40%"114 Supporting Evidence: Case studies from other companies115 116 Devil's Advocate Challenges:117 - Case studies may not apply to our context (different scale, team structure)118 - 40% improvement assumes optimal implementation and mature DevOps119 - Velocity gains may be offset by coordination overhead120 - Microservices introduce new failure modes (network, versioning, data consistency)121 - Learning curve could reduce velocity initially122 123 Alternative Explanation: 124 The perceived velocity improvement may come from better practices 125 (CI/CD, testing) that could be applied to monoliths too.1261272. Claim: "Team autonomy increases with bounded contexts"128 Supporting Evidence: Conway's Law, team structure diagrams129 130 Devil's Advocate Challenges:131 - Bounded contexts require clear domain boundaries (do we have them?)132 - Teams need new skills (distributed systems, SRE practices)133 - Increased autonomy may lead to inconsistent standards134 - Cross-team coordination becomes more formal and slower135 - Some domains naturally span multiple services136 137 Alternative Perspective:138 Monolith with modular architecture might provide similar autonomy benefits 139 without operational complexity.1401413. Claim: "System more resilient to failures"142 Supporting Evidence: Failure isolation diagrams, redundancy claims143 144 Devil's Advocate Challenges:145 - Distributed systems have MORE failure modes (network partitions, service discovery)146 - Resilience requires sophisticated infrastructure (circuit breakers, retries, fallbacks)147 - Debugging failures across services is harder148 - Data consistency becomes a major challenge149 - Cascading failures possible if dependencies not managed150 151 Contradictory Evidence:152 Many companies report increased operational complexity and failure rates 153 after microservices adoption without proper preparation.154155Risk Assessment:156- High Risk: Data consistency across services157- Medium Risk: Operational complexity overwhelming team158- Medium Risk: Cross-team coordination overhead159- Low Risk: Technology choice limitations160161Alternative Approaches Worth Considering:1621. Modular monolith with clear internal boundaries1632. Start with coarse-grained services, refine later1643. Hybrid approach: monolith for core domain, services for edge functions1654. Focus on DevOps maturity first, then evaluate service boundaries166167Critical Questions Unanswered:1681. What specific metrics will measure "improved velocity"?1692. How will we handle distributed transactions?1703. What is the rollback plan if microservices don't deliver value?1714. How will team structure change to support service ownership?1725. What monitoring and observability investments are needed?173174Recommendations:1751. Pilot with one non-critical service first1762. Define clear success metrics before proceeding1773. Invest in foundational capabilities (monitoring, deployment, testing)1784. Consider evolutionary architecture rather than big-bang rewrite1795. Document assumptions and revisit after 3 months180181Analysis Value:182- Weaknesses identified: 8 significant, 3 critical183- Alternative perspectives generated: 5 viable alternatives184- Assumptions challenged: 12 core assumptions185- Risk areas highlighted: 3 high-risk areas needing mitigation186- Decision quality improvement: High (prevents potential costly mistake)187```188189## Notes190191- Devil's advocate is a role, not a personality – it's temporary and purposeful192- The goal is better decisions, not winning arguments or blocking progress193- Balance skepticism with constructive alternatives194- Document challenges and responses for future reference195- Use devil's advocate selectively for important decisions, not every discussion196- The most valuable challenges are those that are hardest to answer197- Pair devil's advocate with other perspectives for balanced analysis198- Time-box devil's advocate analysis to prevent analysis paralysis199- Focus on substance, not style – challenge ideas, not people200- The best devil's advocate questions are those that make everyone think differently