Resolve ambiguous inputs that match multiple branches.
Distillation vs Summary: Two Different AI Asks
The premise
A summary preserves structure proportionally. Distillation extracts the underlying principles regardless of source structure.
What AI does well here
Compress while preserving section ratios when asked to summarize.
Extract underlying claims when asked to distill.
Distinguish surface structure from core argument.
Reorganize content around principles instead of source order.
What AI cannot do
Distill claims that aren't actually present.
Decide what 'essential' means without your guidance.
Decomposition Prompts: Break Big Tasks Into AI-Sized Chunks
The premise
A monolithic 'do all this' prompt under-performs a chain of focused prompts whose outputs feed each other.
What AI does well here
Execute one well-defined sub-task at a time.
Use prior step output as input to next step.
Maintain consistency across chained prompts when given the chain.
Identify the natural seams in a multi-step task when asked.
What AI cannot do
Track all sub-task state across very long chains.
Recover gracefully when a mid-chain step produces garbage.
AI Chain-of-Thought Prompting: When Reasoning Steps Help and Hurt
The premise
AI chain-of-thought prompting improves multi-step reasoning but adds latency, cost, and risk of hallucinated intermediate steps that contaminate final answers.
What AI does well here
Producing intermediate reasoning when explicitly asked
Improving accuracy on multi-step math and logic puzzles
Showing work in a structured format when given a template
Catching errors during the reasoning trace itself
What AI cannot do
Decide on its own when CoT is worth the latency
Avoid plausible-sounding but wrong intermediate steps
AI Prompt Decomposition: Breaking Complex Asks into Sequential Calls
The premise
Decomposing complex prompts into sequential focused calls improves quality and observability — but adds latency and surfaces intermediate-state design choices.
What AI does well here
Producing focused output for narrow, well-scoped prompts
Combining intermediate results when given clear handoff format
Improving accuracy on tasks where errors compound
Allowing per-stage validation between calls
What AI cannot do
Decide on its own how to decompose a complex task
Maintain global coherence across many independent calls