Overview
Competitive analysis is not a list of features; it is a forensic audit of a rival's "Activity System" to find where their internal logic is brittle. This skill prevents the "Arrogance Trap" identified in the GE and Boeing collapses by forcing an evidence-based assessment of moats and vulnerabilities.
Iron Law
NO COMPETITIVE CLAIM WITHOUT EVIDENCE FROM AT LEAST TWO INDEPENDENT SOURCES
Unverified claims about being "10x better" or having "no competitors" are the primary signals of impending strategic failure.
State Machine
digraph competitive_analysis_flow {
"Start" [shape=doublecircle];
"Step 1: Activity Mapping" [shape=box];
"Gate: Moat Audit" [shape=diamond];
"Step 3: Vulnerability Check" [shape=box];
"Step 4: Evidence Gate" [shape=diamond];
"Done" [shape=doublecircle];
"Start" -> "Step 1: Activity Mapping";
"Step 1: Activity Mapping" -> "Gate: Moat Audit";
"Gate: Moat Audit" -> "Step 3: Vulnerability Check" [label="moat verified"];
"Gate: Moat Audit" -> "Step 1: Activity Mapping" [label="unclear value"];
"Step 3: Vulnerability Check" -> "Step 4: Evidence Gate";
"Step 4: Evidence Gate" -> "Done" [label="2+ sources found"];
"Step 4: Evidence Gate" -> "Step 3: Vulnerability Check" [label="hearsay only"];
}
When to Use This Skill
- When drafting a PRD or Business Case that claims a "unique advantage."
- When a new rival enters the market with a "modular" or "platform" approach.
- When an incumbent appears "invincible" but shows signs of arrogance or bloat.
- During a "Devil's Advocate" stress test of a proposed strategy.
When NOT to Use This Skill
- For pure internal process optimization that does not affect the customer.
- In a "Zero-to-One" phase where no direct competitors exist (use
problem-framing instead).
Core Process
Step 1: Map the Activity System
Do not compare features. Compare the system of reinforcing activities. (Source: Lafley, Playing to Win, Ch. 5)
- Identify the "Winning Aspiration": Are they playing to win or playing to play?
- Deconstruct the Reinforcing Loop: How do their activities (e.g., low cost + high volume + limited SKUs) make it harder for you to copy them without breaking your own model?
- Identify the "Limiting Step": What is the one thing they cannot change without destroying their current profitability?
Step 2: Perform the Monopoly Audit
Verify if the competitor (or you) has the four characteristics of a true moat. (Source: Thiel, Zero to One, Ch. 5)
- Proprietary Technology: Is it 10x better in a way that is unmeasurable (e.g., UX/Ease of Use) or just a specs war? (Source: Stratechery, "What Christensen Got Wrong")
- Network Effects: Does the product get more valuable with every user?
- Economies of Scale: Does the cost per unit drop significantly with volume?
- Branding: Is the brand an "integrated" experience or just a logo?
Step 3: Audit the "Operating System"
Assess the rival's execution discipline. (Source: Davis, Lessons from the Titans, Ch. 12)
- The Arrogance Check: Is the rival focused on "Big Ideas" and "Celebrity CEOs" (Immelt-era GE) or "Continuous Improvement" (Welch-era GE)?
- The 1% Trap: Have they defined the market so broadly (e.g., "1% of $100B") that they have no actual foothold?
- The Capital Allocation Test: Are they overpaying for "hot" assets or investing in the core? (Source: Gramm, Dear Chairman)
Step 4: Verify with Independent Evidence (The Iron Law)
For every claim (e.g., "We are faster"), you must cite:
- Source A: External data (e.g., user reviews, teardowns, financial filings).
- Source B: Independent verification (e.g., customer interviews, third-party benchmarks).
Cross-Skill Invocations
- REQUIRED SUB-SKILL:
problem-framing — You cannot analyze competitors without knowing the "Job-to-be-Done."
- RECOMMENDED SUB-SKILL:
devils-advocate — Use this to find the flaws in your own competitive claims.
- RECOMMENDED SUB-SKILL:
strategy-clarity — To ensure your "How to Win" is distinct from the rival's activity system.
Rationalization Table
| Thought |
Reality |
| "We have no competitors." |
You are defining the market too narrowly. Anything the customer uses to solve the problem is a competitor. |
| "Our tech is 10x better." |
Unless it's 10x better on an unmeasurable consumer attribute (UX), it's a "modular" target. |
| "They are just a copycat." |
"Me-too" competitors with lower overhead or a "modular" stack often win on price (Modular Disruption). |
| "We don't need evidence for common knowledge." |
Common knowledge is often "arrogance in disguise." Verification is the only defense. |
Red Flags
These thoughts mean STOP — you are about to shortcut:
- "They are too old/slow to catch us." → Arrogance (Source: Boeing 737MAX failure).
- "We have 1% of a massive market." → The 1% Trap (Source: Thiel).
- "Our brand is our moat." → Branding is a result of a system, not a standalone moat (Source: Lafley).
Diagnostic Checklist
Sources
- Lafley, Playing to Win, Ch. 5 — Activity Systems and Capability Gaps.
- Thiel, Zero to One, Ch. 5 — Monopoly Characteristics and Power Law.
- Kaufman, The Personal MBA, Ch. 3 — Competitive Forces and Substitutes.
- Davis, Lessons from the Titans, Ch. 12 — Industrial Business Systems and Arrogance.
- Gramm, Dear Chairman, Ch. 1 & 5 — Intrinsic Value and Ownership Boards.
- Stratechery, "Aggregation Theory" — Demand aggregation vs. Supply control.
1---2name: competitive-analysis-53description: Use when performing a structured teardown of a specific competitor's activity system, moat, or vulnerability profile—requires at least one named rival to analyze.4---5
6## Overview
7
8Competitive analysis is not a list of features; it is a forensic audit of a rival's "Activity System" to find where their internal logic is brittle. This skill prevents the "Arrogance Trap" identified in the GE and Boeing collapses by forcing an evidence-based assessment of moats and vulnerabilities.
9
10## Iron Law
11
12`NO COMPETITIVE CLAIM WITHOUT EVIDENCE FROM AT LEAST TWO INDEPENDENT SOURCES`
13
14Unverified claims about being "10x better" or having "no competitors" are the primary signals of impending strategic failure.
15
16## State Machine
17
18```dot
19digraph competitive_analysis_flow {
20 "Start" [shape=doublecircle];
21 "Step 1: Activity Mapping" [shape=box];
22 "Gate: Moat Audit" [shape=diamond];
23 "Step 3: Vulnerability Check" [shape=box];
24 "Step 4: Evidence Gate" [shape=diamond];
25 "Done" [shape=doublecircle];
26
27 "Start" -> "Step 1: Activity Mapping";
28 "Step 1: Activity Mapping" -> "Gate: Moat Audit";
29 "Gate: Moat Audit" -> "Step 3: Vulnerability Check" [label="moat verified"];
30 "Gate: Moat Audit" -> "Step 1: Activity Mapping" [label="unclear value"];
31 "Step 3: Vulnerability Check" -> "Step 4: Evidence Gate";
32 "Step 4: Evidence Gate" -> "Done" [label="2+ sources found"];
33 "Step 4: Evidence Gate" -> "Step 3: Vulnerability Check" [label="hearsay only"];
34}
35```
36
37## When to Use This Skill
38
39- When drafting a PRD or Business Case that claims a "unique advantage."
40- When a new rival enters the market with a "modular" or "platform" approach.
41- When an incumbent appears "invincible" but shows signs of arrogance or bloat.
42- During a "Devil's Advocate" stress test of a proposed strategy.
43
44## When NOT to Use This Skill
45
46- For pure internal process optimization that does not affect the customer.
47- In a "Zero-to-One" phase where no direct competitors exist (use `problem-framing` instead).
48
49## Core Process
50
51### Step 1: Map the Activity System
52Do not compare features. Compare the *system* of reinforcing activities. (Source: Lafley, Playing to Win, Ch. 5)
531. **Identify the "Winning Aspiration":** Are they playing to win or playing to play?
542. **Deconstruct the Reinforcing Loop:** How do their activities (e.g., low cost + high volume + limited SKUs) make it harder for you to copy them without breaking your own model?
553. **Identify the "Limiting Step":** What is the one thing they cannot change without destroying their current profitability?
56
57### Step 2: Perform the Monopoly Audit
58Verify if the competitor (or you) has the four characteristics of a true moat. (Source: Thiel, Zero to One, Ch. 5)
591. **Proprietary Technology:** Is it 10x better in a way that is *unmeasurable* (e.g., UX/Ease of Use) or just a specs war? (Source: Stratechery, "What Christensen Got Wrong")
602. **Network Effects:** Does the product get more valuable with every user?
613. **Economies of Scale:** Does the cost per unit drop significantly with volume?
624. **Branding:** Is the brand an "integrated" experience or just a logo?
63
64### Step 3: Audit the "Operating System"
65Assess the rival's execution discipline. (Source: Davis, Lessons from the Titans, Ch. 12)
661. **The Arrogance Check:** Is the rival focused on "Big Ideas" and "Celebrity CEOs" (Immelt-era GE) or "Continuous Improvement" (Welch-era GE)?
672. **The 1% Trap:** Have they defined the market so broadly (e.g., "1% of $100B") that they have no actual foothold?
683. **The Capital Allocation Test:** Are they overpaying for "hot" assets or investing in the core? (Source: Gramm, Dear Chairman)
69
70### Step 4: Verify with Independent Evidence (The Iron Law)
71For every claim (e.g., "We are faster"), you must cite:
721. **Source A:** External data (e.g., user reviews, teardowns, financial filings).
732. **Source B:** Independent verification (e.g., customer interviews, third-party benchmarks).
74
75## Cross-Skill Invocations
76
77- **REQUIRED SUB-SKILL:** `problem-framing` — You cannot analyze competitors without knowing the "Job-to-be-Done."
78- **RECOMMENDED SUB-SKILL:** `devils-advocate` — Use this to find the flaws in your own competitive claims.
79- **RECOMMENDED SUB-SKILL:** `strategy-clarity` — To ensure your "How to Win" is distinct from the rival's activity system.
80
81## Rationalization Table
82
83| Thought | Reality |
84|---------|---------|
85| "We have no competitors." | You are defining the market too narrowly. Anything the customer uses to solve the problem is a competitor. |
86| "Our tech is 10x better." | Unless it's 10x better on an *unmeasurable* consumer attribute (UX), it's a "modular" target. |
87| "They are just a copycat." | "Me-too" competitors with lower overhead or a "modular" stack often win on price (Modular Disruption). |
88| "We don't need evidence for common knowledge." | Common knowledge is often "arrogance in disguise." Verification is the only defense. |
89
90## Red Flags
91
92These thoughts mean STOP — you are about to shortcut:
93
94- "They are too old/slow to catch us." → Arrogance (Source: Boeing 737MAX failure).
95- "We have 1% of a massive market." → The 1% Trap (Source: Thiel).
96- "Our brand is our moat." → Branding is a *result* of a system, not a standalone moat (Source: Lafley).
97
98## Diagnostic Checklist
99
100- [ ] Have we mapped the competitor's reinforcing activities, not just their features?
101- [ ] Is our "10x" advantage verified by two independent, non-internal sources?
102- [ ] Have we identified the "Job-to-be-Done" that the competitor is solving?
103- [ ] Did we check for "Modular Disruption" (Modular vs. Integrated moats)?
104- [ ] Have we identified the "Limiting Step" in the competitor's system?
105
106## Sources
107
108- Lafley, *Playing to Win*, Ch. 5 — Activity Systems and Capability Gaps.
109- Thiel, *Zero to One*, Ch. 5 — Monopoly Characteristics and Power Law.
110- Kaufman, *The Personal MBA*, Ch. 3 — Competitive Forces and Substitutes.
111- Davis, *Lessons from the Titans*, Ch. 12 — Industrial Business Systems and Arrogance.
112- Gramm, *Dear Chairman*, Ch. 1 & 5 — Intrinsic Value and Ownership Boards.
113- Stratechery, "Aggregation Theory" — Demand aggregation vs. Supply control.