From thinking-frameworks-skills
Stress-tests analogies by finding mapping breaks, classifying break type, and framing the break as a teaching opportunity for writing.
How this skill is triggered — by the user, by Claude, or both
Slash command
/thinking-frameworks-skills:stress-test-analogyThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- [Workflow](#workflow)
Related skills: Called by the Intuition Builder per framing. Input is one framing (source + target + mapping from map-analogy-to-concept). Output feeds the final artifact's "Where it breaks" section for each framing and the Technical Reviewer's flag-boundary-break on drafts.
For one framing (source → target + mapping):
- [ ] Step 1: Identify the mapping's weakest link — which source-component-to-target-component pairs are forced?
- [ ] Step 2: Generate 2-3 edge cases where the forced pair fails
- [ ] Step 3: Write the boundary as one or two sentences — specific and named
- [ ] Step 4: Propose a "fold" — how the writer turns this break into content in the draft
- [ ] Step 5: Rate fold value: high | medium | low (high = the break is its own paragraph or sub-section)
The boundary sentence should be specific enough that the reader could verify it. Good: "The drawer metaphor implies physical contiguity in memory, but a KV cache is logically indexed, not physically contiguous." Bad: "The analogy doesn't quite work at scale."
The writer's voice turns boundary-breaks into features, not hidden flaws. A good fold says: "This is where the analogy stops working — and here's what's interesting about why." Propose one sentence for the writer to edit.
Analogies break in predictable ways:
Use these tags to classify the break type in the output.
Framing: "KV cache is a library card catalog with a fixed drawer count."
Mapping (from map-analogy-to-concept):
Stress test:
Boundary sentence: "The drawer metaphor captures capacity and lookup, but it hides two things: eviction dynamics under streaming decode (real drawers don't lose cards every turn) and the role of the cache as input to attention (a card catalog doesn't compute anything — a KV cache does)."
Proposed fold (for the writer): "Say upfront that the library image is for the shape of the thing, not the motion. Then let eviction be the paragraph that breaks the image — 'real drawers don't evict a card every time you add a new one; a KV cache does, which is where the analogy starts needing a second image.' That becomes the pivot."
Fold value: high. This break is a whole paragraph in the draft.
{boundary: str, break_type: str, fold: str, fold_value: high|medium|low}.npx claudepluginhub lyndonkl/claude --plugin thinking-frameworks-skillsSystematically finds where an analogy breaks down before decisions depend on it. Helps validate reasoning based on comparisons.
Maps source-domain components of an analogy to target technical concept components, flagging unmapped elements and checking relation systematicity. Use after generate-analogy-set.
Forces the user to produce analogies between a new concept and existing knowledge, then stress-tests those connections against code or docs. Use when learning something new or when a concept isn't sticking.