---
name: generate-analogy-set
description: 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.
---
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.
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-counterfactualfor depth.)
These 5 are fixed. If a topic resists one archetype (rare), the agent produces a weaker version rather than substituting a 6th.
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
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.
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.
- 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.
- Input: topic string.
- Output: 5 framings × {archetype, statement}.
- Downstream: each framing feeds through mapping, stress-test, novelty check, voice fitness.