Counterfactual
12 thinking patterns for AI agents that catch each other's blind spots. PRISM orchestrator fuses them into one adversarial reasoning pipeline.
npx -y skills add argahv/novelty-skills --skill counterfactualAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Remove the canonical solution and see what you'd build instead. Finds the road not taken — approaches abandoned because attention flowed elsewhere, not because they were worse.
SKILL.md
4.6 KB, as published. Nobody here has run it
Counterfactual — The Field Without Its Most-Cited Papers
The most-cited paper in a field is not necessarily the best. It's the one that got the most attention. Different attention could have produced a completely different field.
You simulate that different timeline.
Protocol
Step 1: Identify the Canonical Papers
Find the 3-5 most-cited papers in a subfield. These are the papers that shaped the consensus.
Step 2: Remove Each One
For each canonical paper, imagine it was never published (or published in a different venue, or rejected, or delayed by 5 years).
Step 3: Trace the Ripple Effects
For each removed paper:
- What immediately changes? (No one cites it. No one builds on it.)
- What problems remain unsolved? (This paper "solved" something. Without it, that solution doesn't exist.)
- What other approaches would have been explored? (The paper made certain paths seem unnecessary. Without it, those paths would have attracted researchers.)
- What would have been invented instead? (This is the key. The vacuum would have been filled.)
Step 4: Identify the Suppressed Alternative
The most valuable output: an approach that was actively suppressed by the success of the canonical paper — not because it was worse, but because attention flowed to the canonical approach.
Example Output
Field: Deep Learning
Canonical paper: Krizhevsky et al. (2012) — "ImageNet Classification with Deep Convolutional Neural Networks" (AlexNet)
Counterfactual: What if AlexNet had not achieved breakthrough results in 2012?
Immediate changes:
- No "ImageNet moment" for deep learning
- No mass migration of researchers from other fields to deep learning
- GPU computing for ML remains niche
What problems remain unsolved:
- Large-scale image classification (obviously)
- Transfer learning at scale
- The "embarrassment of riches" problem in computer vision
What other approaches would have been explored:
- Graphical models would continue as the dominant paradigm for structured prediction
- Kernel methods would receive more attention (they were competitive on smaller datasets)
- Unsupervised feature learning (sparse coding, autoencoders) would have been the main path to scaling
- Capsule networks (Hinton's alternative to CNNs) would have received far more research attention
- Neuromorphic computing might have gained earlier traction
Suppressed alternative found: Capsule Networks. Hinton published "Transforming Autoencoders" in 2011 and "Dynamic Routing Between Capsules" in 2017. Between AlexNet's success, CNNs dominated so completely that capsule networks were never seriously explored as a mainstream alternative. They might have solved the pooling-information-loss problem that CNNs still struggle with.
Plausibility assessment: Moderate. Capsule networks are computationally expensive. But without the CNN juggernaut, a decade of optimization might have made them practical.
Anti-Patterns
| Mistake | Why it fails | Fix |
|---|---|---|
| Removing a paper nobody would miss | The canon is defined by influence | Pick papers with 5,000+ citations |
| Wishful thinking | "Without paper X, my favorite approach would have won" | Be honest about why the canonical paper won |
| Not considering timing | Later papers depend on earlier ones | Remove the paper and trace forward, not backward |
PRISM Integration
In PRISM mode, output findings as structured YAML:
pattern: counterfactual
input: "<topic or claim>"
findings:
- claim: "<suppressed alternative>"
type: alternative
canonical_removed: "<the paper/solution that was removed>"
suppressed_by: "<how the canonical won>"
ripple_effects: ["<what changes without the canon>"]
plausible: <true | false>
confidence: <HIGH | MEDIUM | LOW | EXPLORATION>
Consumed by: assumption-excavator (surface assumptions in the suppressed alternative), contrarian (invert the suppressed alternative) Consumes from: (raw input + domain knowledge)
Trigger Conditions
Use this skill when:
- The field seems settled — "this is the way things are done"
- You want to identify research directions that were prematurely abandoned
- Looking for novel approaches that challenge orthodoxy
- The user asks "why does everyone use approach X?"