Task 1 — Summarization
**Single-shot approach:** Pass the document, ask for a summary at target length. Output in one call. (Background: see the Anthropic prompt engineering chain-of-prompt patterns and OpenAI's function-calling and structured outputs guide for the canonical chaining vs. single-call documentation.)
**Chained approach:** Step 1 extract key claims. Step 2 cluster by topic. Step 3 draft summary using clustered claims. Step 4 critique and revise.
**Quality lift:** Modest — about 12% improvement on 7-point rubric for long-form documents (>5K words). Negligible for short documents (<1K words).
**Token cost:** 2.1× single-shot.
**Verdict:** Chain only for long documents where quality matters (executive briefs, legal summaries). Single-shot is fine for most summarization.