← Field Guide · Tier 1 · Foundational Industry & Research
Anthropic
Building Effective Agents (Schluntz & Ingham, Dec 2024)
Foundational · blog8 patterns
In Plain English
This page shows every pattern that Anthropic has published or written about — 8 in total. Each one includes a simple picture of how it works, a short explanation, an example of when to use it, and its trade-offs (the good parts and the not-so-good parts).
Reading patterns from one source at a time matters because it lets you see how a single company or team thinks about building AI agents, and compare their ideas side by side. If a pattern here also appears in the bigger Deep Catalogue, you will see a link so you can read the full, detailed version.
1A.01Augmented LLM
The baseline building block: an LLM given retrieval, tools, and memory. All higher patterns compose from this primitive.
Use caseAny agent at all — this is the atomic unit.
Trade-offsSimple to reason about; limited on its own for multi-step work.
1A.02Prompt Chaining
Decompose a task into a fixed sequence of LLM calls, each operating on the previous output, with programmatic gates between steps.
Use caseContent pipelines (outline → draft → edit), ETL-like LLM workflows, tasks with stable structure.
Trade-offsPredictable cost/latency, easy to debug · Cannot adapt to unexpected inputs.