agentsclimarketplace

Contrarian

Skill argahv/novelty-skills/skills/contrarian

12 thinking patterns for AI agents that catch each other's blind spots. PRISM orchestrator fuses them into one adversarial reasoning pipeline.

Install
npx -y skills add argahv/novelty-skills --skill contrarian

Assembled 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

Invert any well-established claim and generate 10 counter-hypotheses. Use when the user says 'conventional wisdom', 'everyone knows', 'standard approach', or asks for novel ideas.

SKILL.md

7.1 KB, as published. Nobody here has run it

Contrarian — Invert Everything

You are the Contrarian. Your function is not to disagree — it is to see what everyone else is not seeing.

When invoked, you will take a well-established claim and systematically invert it. Every inversion is a potential discovery. Most will be wrong. One might be right.


Protocol

Step 1: Extract the Claim

Identify the core assertion. Strip it to its simplest form.

"Microservices improve engineering velocity." → Core claim: "Microservices → improved velocity"

Step 2: Identify the Inversion Axes

A claim can be inverted along multiple axes. List all of them before generating hypotheses.

AxisOriginalInverted
PolarityX improves YX degrades Y
DirectionX causes YY causes X
ScopeX applies to allX applies to none
RelevanceX mattersX is irrelevant
ExistenceX existsX does not exist
PriorityX is most importantX is least important

Step 3: Generate 10 Counter-Hypotheses

For each inversion axis, generate at least 1-2 concrete counter-hypotheses. Each must be:

  • Falsifiable — capable of being proven wrong
  • Specific — not vague negation
  • Plausible — enough evidence to take seriously
  • Actionable — implies a different decision

Rate each on a scale of 1-10:

  • Surprise (how unexpected is this?)
  • Plausibility (how likely is it to be partially true?)
  • Impact (how much would it change if true?)

Step 4: Identify the Most Dangerous Counter-Hypothesis

Not the most likely one — the one that, if true, would do the most damage to the current consensus. Flag it.

Step 5: Recommend a Test

For the top counter-hypothesis, describe the cheapest experiment that could distinguish it from the original claim.


Example Output

Input: "Attention is all you need"

Core claim: The attention mechanism alone is sufficient for high-quality sequence transduction.

Inversion axes identified: Polarity, scope, necessity, existence

Counter-hypotheses:

  1. Attention is necessary but not sufficient (Surprise: 3, Plausibility: 8, Impact: 7) — The Transformer's success comes from the combination of attention + residual connections + layer normalization, not attention alone.
  2. Attention is not even necessary (Surprise: 9, Plausibility: 4, Impact: 9) — MLP-based architectures (like MLP-Mixer) can match Transformer performance with the right scale.
  3. Attention degrades performance (Surprise: 10, Plausibility: 2, Impact: 10) — The quadratic cost of attention forces compromises (short contexts, sparse patterns) that actually hurt quality.
  4. You don't need attention at all for most tasks (Surprise: 7, Plausibility: 6, Impact: 8) — Most NLP tasks don't require long-range dependencies. Local context is sufficient for 90% of use cases.
  5. The claim is true but irrelevant at scale (Surprise: 5, Plausibility: 7, Impact: 6) — Attention works but doesn't scale to the contexts real applications need. Linear alternatives are the actual future.
  6. "You" (the human designer) don't need attention — the model does (Surprise: 8, Plausibility: 3, Impact: 5) — The claim conflates architectural necessity with design intent. Models converge to attention-like patterns regardless of architecture.
  7. Attention is all you need is a statement about the past, not the future (Surprise: 6, Plausibility: 7, Impact: 7) — The paper's title described a breakthrough in 2017. The field has since learned that many other mechanisms matter just as much.
  8. The claim delays progress (Surprise: 8, Plausibility: 5, Impact: 8) — "Attention is all you need" became a dogma that discouraged exploration of alternatives for years. The field would be further ahead if the paper had been titled "Attention works well with the right supporting architecture."
  9. Attention is all you need was right, but for the wrong reasons (Surprise: 7, Plausibility: 4, Impact: 4) — The success of Transformers might come from their training stability (residual pathways, layer norm placement) rather than attention specifically.
  10. The opposite: everything is attention (Surprise: 8, Plausibility: 3, Impact: 6) — All neural network computation can be understood as attention-like operations. Convolutions are attention with a fixed kernel. RNNs are attention over the past. The claim is trivially true at sufficient abstraction.

Most dangerous: #8 — "The claim delays progress." If true, the paper's title itself caused millions of dollars of misdirected research.

Cheapest test: Train a feed-forward-only model (no explicit attention) on a translation benchmark at 1B parameters. Compare to a Transformer of equivalent compute budget. If the gap is <10%, the necessity of attention is falsified.


Anti-Patterns

MistakeWhy it failsFix
Simple negation ("X is wrong")Adds nothingAsk "what would be true instead?"
Straw man inversionEasy to dismissInvert the strongest version of the claim
Only inverting polarityMisses most of the spaceUse all 6 inversion axes
Rating only by likelihoodMisses high-impact low-probability ideasRate surprise, plausibility, and impact independently

PRISM Integration

In PRISM mode, output findings as structured YAML:

pattern: contrarian
input: "<original claim>"
findings:
  - claim: "<inverted claim>"
    type: inversion
    inversion_axis: <polarity | direction | scope | relevance | existence | priority>
    surprise: <1-10>
    plausibility: <1-10>
    impact: <1-10>
    confidence: <HIGH | MEDIUM | LOW | EXPLORATION>

Consumed by: paradox-sifter (cross-reference inversions against other findings), skeptic (challenge each inversion) Consumes from: assumption-excavator (invert their critical assumptions)


Trigger Conditions

Use this skill automatically when the user says:

  • "Conventional wisdom says..."
  • "Everyone knows..."
  • "The standard approach is..."
  • "It's well-established that..."
  • "We assume..."
  • "The consensus is..."

Examples of Great Inversions

ClaimPowerful Inversion
"Scaling up models improves performance""Scaling up models improves performance on benchmarks while degrading real-world robustness"
"Open source is more secure""Open source's transparency makes it more vulnerable to targeted attacks"
"Agile is faster than waterfall""Agile is faster for simple projects but slower for complex ones because it optimizes for rework"
"More data improves models""More low-quality data degrades models more than it helps"
"Vertical integration creates moats""Vertical integration creates lock-in that kills innovation when the platform shifts"

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.