Generate Analogy Set
Table of Contents
Related skills: Called by the Intuition Builder agent as step 1. Feeds map-analogy-to-concept, stress-test-analogy, check-analogy-novelty, voice-fitness-check.
The 5 archetypes
Each framing must match one of these archetypes:
- Everyday analogy — maps the topic to something in ordinary life (cooking, traffic, weather, a household object). Accessible; surface-friendly.
- Physical metaphor — maps to a physical system (fluid, gravity, spring, circuit, lens). Rigorous when the physics actually transfers; leaky when it doesn't.
- Contrarian take — inverts the received framing. "People say X; actually Y." Works when the received framing has a known failure mode.
- Historical angle — shows the topic through its precursor or evolution (attention before Transformer; word2vec → GloVe → BERT; consistent hashing's origin in distributed caches).
- Counterfactual — "what if this weren't here?" Reveals function by subtracting. (See
propose-counterfactual for depth.)
These 5 are fixed. If a topic resists one archetype (rare), the agent produces a weaker version rather than substituting a 6th.
Workflow
Generate 5 framings for topic T:
- [ ] Step 1: Restate T in one sentence (what the writer is explaining)
- [ ] Step 2: Brainstorm 2-3 candidates per archetype
- [ ] Step 3: Pick the strongest candidate per archetype using the voice-profile analogy-direction priority (biology > organizational > sports; NEVER physics/military)
- Exception: "physical metaphor" archetype explicitly permits physical domain, but even here prefer fluid/biological analogues over mechanical/military ones.
- [ ] Step 4: Write each as one-line framing statement (≤25 words)
- [ ] Step 5: Return the 5 with archetype labels
Priority in selection
The voice-profile says biology → AI, organizational → multi-agent, sports → calibration are the writer's characteristic directions. Within each archetype, if a biology-flavored option exists AND is crisp, it wins over an equally crisp mechanical/military option. The writer almost never uses physics/military.
Worked example
Topic: Attention (in Transformers).
5 framings:
- Everyday: A crowded table where each person glances around to find the two or three others whose words most reshape what they're about to say.
- Physical metaphor: A weighted heat diffusion — each token's representation equilibrates against others in proportion to their pairwise affinity, smoothing toward a distribution.
- Contrarian: Attention is not about "where the model looks" — it's about which other tokens get to edit you, and by how much. The token is the editor, not the camera.
- Historical: Before attention, seq2seq bottlenecked through a single fixed-length hidden state — "read the whole sentence, then speak." Attention said: let the decoder re-read relevant words each step. Attention is the inversion of the bottleneck.
- Counterfactual: Remove attention from a transformer and you have a stack of residual MLPs per token — no information ever flows between token positions within a layer. Context is gone. That absence is what attention is "doing."
Each framing is ≤1 sentence (some are 2). The mapping, breaks, and novelty checks come from the downstream skills.
Guardrails
- Always produce exactly 5 — one per archetype. No substitutions.
- Each framing is ≤25 words as a one-line statement.
- Within an archetype, prefer biology / organizational / sports direction unless the topic is physical enough that the physical metaphor IS the right call.
- Never use military, war, or weapons metaphors. Never combat-code.
- Never produce prose-ready framings. These are scaffolds; the writer writes the prose.
- If a topic is too narrow or too broad, return a single "scope-clarification-needed" message instead of forcing 5 weak framings.
Quick reference
- Input: topic string.
- Output: 5 framings × {archetype, statement}.
- Downstream: each framing feeds through mapping, stress-test, novelty check, voice fitness.
1---2name: generate-analogy-set3description: Generates exactly 5 distinct intuitive framings for a given technical topic — one everyday analogy, one physical metaphor, one contrarian take, one historical angle, one counterfactual. Each framing is a short scaffold (not prose), paired with its archetype and a one-line framing statement. Use when the writer invokes the Intuition Builder agent, as the core generation step before mapping, stress-testing, novelty checking, and voice fitness. Trigger keywords — generate framings, analogies for, give me 5, intuitive angles, framing set.4---5
6# Generate Analogy Set
7
8## Table of Contents
9
10- [The 5 archetypes](#the-5-archetypes)
11- [Workflow](#workflow)
12- [Worked example](#worked-example)
13- [Guardrails](#guardrails)
14
15**Related skills:** Called by the Intuition Builder agent as step 1. Feeds `map-analogy-to-concept`, `stress-test-analogy`, `check-analogy-novelty`, `voice-fitness-check`.
16
17## The 5 archetypes
18
19Each framing must match one of these archetypes:
20
211. **Everyday analogy** — maps the topic to something in ordinary life (cooking, traffic, weather, a household object). Accessible; surface-friendly.
222. **Physical metaphor** — maps to a physical system (fluid, gravity, spring, circuit, lens). Rigorous when the physics actually transfers; leaky when it doesn't.
233. **Contrarian take** — inverts the received framing. "People say X; actually Y." Works when the received framing has a known failure mode.
244. **Historical angle** — shows the topic through its precursor or evolution (attention before Transformer; word2vec → GloVe → BERT; consistent hashing's origin in distributed caches).
255. **Counterfactual** — "what if this weren't here?" Reveals function by subtracting. (See `propose-counterfactual` for depth.)
26
27These 5 are fixed. If a topic resists one archetype (rare), the agent produces a weaker version rather than substituting a 6th.
28
29## Workflow
30
31```
32Generate 5 framings for topic T:
33- [ ] Step 1: Restate T in one sentence (what the writer is explaining)
34- [ ] Step 2: Brainstorm 2-3 candidates per archetype
35- [ ] Step 3: Pick the strongest candidate per archetype using the voice-profile analogy-direction priority (biology > organizational > sports; NEVER physics/military)
36 - Exception: "physical metaphor" archetype explicitly permits physical domain, but even here prefer fluid/biological analogues over mechanical/military ones.
37- [ ] Step 4: Write each as one-line framing statement (≤25 words)
38- [ ] Step 5: Return the 5 with archetype labels
39```
40
41### Priority in selection
42
43The voice-profile says biology → AI, organizational → multi-agent, sports → calibration are the writer's characteristic directions. Within each archetype, if a biology-flavored option exists AND is crisp, it wins over an equally crisp mechanical/military option. The writer almost never uses physics/military.
44
45## Worked example
46
47**Topic**: Attention (in Transformers).
48
49**5 framings**:
50
511. **Everyday**: *A crowded table where each person glances around to find the two or three others whose words most reshape what they're about to say.*
522. **Physical metaphor**: *A weighted heat diffusion — each token's representation equilibrates against others in proportion to their pairwise affinity, smoothing toward a distribution.*
533. **Contrarian**: *Attention is not about "where the model looks" — it's about which other tokens get to edit you, and by how much. The token is the editor, not the camera.*
544. **Historical**: *Before attention, seq2seq bottlenecked through a single fixed-length hidden state — "read the whole sentence, then speak." Attention said: let the decoder re-read relevant words each step. Attention is the inversion of the bottleneck.*
555. **Counterfactual**: *Remove attention from a transformer and you have a stack of residual MLPs per token — no information ever flows between token positions within a layer. Context is gone. That absence is what attention is "doing."*
56
57Each framing is ≤1 sentence (some are 2). The mapping, breaks, and novelty checks come from the downstream skills.
58
59## Guardrails
60
611. Always produce exactly 5 — one per archetype. No substitutions.
622. Each framing is ≤25 words as a one-line statement.
633. Within an archetype, prefer biology / organizational / sports direction unless the topic is physical enough that the physical metaphor IS the right call.
644. Never use military, war, or weapons metaphors. Never combat-code.
655. Never produce prose-ready framings. These are scaffolds; the writer writes the prose.
666. If a topic is too narrow or too broad, return a single "scope-clarification-needed" message instead of forcing 5 weak framings.
67
68## Quick reference
69
70- Input: topic string.
71- Output: 5 framings × {archetype, statement}.
72- Downstream: each framing feeds through mapping, stress-test, novelty check, voice fitness.