Agentic Design Patterns: A Book That Made Me Re-Understand "What Is an Agent, Really?"

链捕手Publicado a 2026-05-25Actualizado a 2026-05-25

Resumen

"Agentic Design Patterns" is a 2025 book by Antonio Gullí, a Google engineering director, which offers a systematic framework for AI Agent development through 21 design patterns. A core contribution is the "Four Levels of Agency": Level 0 (bare LLMs) are not true agents. Level 1 agents actively decide when and how to use tools. Level 2 agents engage in strategic planning, context engineering (curating and filtering information), and self-reflection. Level 3 involves multi-agent collaboration with defined communication topologies. The book introduces **Context Engineering** as a superset of prompt engineering, managing four layers of information for the agent: system prompts, external data, implicit context (user history, environment), and feedback loops for automated optimization. A key pattern is **Reflection (Producer-Critic)**, where two distinct agents with different prompts collaborate iteratively—one produces output, the other critiques it—until quality is satisfactory or a max iteration limit is reached. For **Memory**, a three-layer model is proposed: Session (ephemeral conversation context), State (temporary task data), and Memory (persistent, long-term storage). Regarding **Multi-Agent Systems**, the book advises against unnecessary complexity, recommending simple topologies like Supervisor or Peer-to-Peer based on task needs. It emphasizes perfecting a single Level 2 agent before moving to multi-agent setups. The author concludes with three actionable takeawa...

Author: Yanhua

Antonio Gullí is an Engineering Director at Google. He wrote a 453-page book, breaking down AI Agent development into 21 design patterns.

But this is not a book review. My motivation for reading this book was specific: I've written about Harness Engineering, shared my experience with pitfalls in Clawdbot, and written "AI Agents Are Not Magic" about the seven turning points from burning tokens to becoming truly usable. After each piece, there remained an unanswered question: Is there an underlying, reusable logic behind all these things?

This book gave me an answer, and it went deeper than I expected.

What You're Writing Might Not Be an Agent At All

The most incisive judgment in the book is hidden in the prologue.

The "AI" most people are using is just Level 0: a bare LLM, with no tools, no memory, and no ability to act. You ask it which film won Best Picture at the 2025 Oscars, and it guesses. The book is blunt: Level 0 stuff is not an Agent.

Only the higher levels are true Agents:

  • Level 1: Tool User

    The Agent starts using tools: search, APIs, databases. But it's not just "able to call an interface"; it must decide *when* to call, *what* to call, and *how* to use the result. The book gives a concrete example: a user asks "What are some new TV shows?" The Agent realizes on its own that this information isn't in its training data, actively calls a search tool to find it, then synthesizes the results. The key step is "realizing on its own." It's not a human telling it "go search for this"; it judges *for itself* that a search is needed. This judgment ability is the threshold for Level 1.

  • Level 2: Strategic Thinker

    Adds two more things: Planning and Context Engineering. The book defines Context Engineering: it's not about dumping information, but about carefully selecting, trimming, and packaging context. A great example: a user wants to find a coffee shop between two locations. The Agent first calls a mapping tool to get a bunch of data, then judges that "only street names are needed for the next step," trims the map output into a short list, and feeds it to a local search tool. Every step is about reducing information noise.

    There's a sentence in the book I read several times: "To achieve the highest accuracy from AI, you must give it short, focused, and powerful context." Context Engineering is exactly about doing this.

    At this level, the Agent can also self-reflect. It reviews its own work after finishing, identifies issues, and makes corrections itself. I'll talk about this in more detail later.

  • Level 3: Multi-Agent Collaboration

    The book's stance is clear: stop trying to build one all-powerful super agent. The reliable approach is to build a team: a Project Manager Agent + a Researcher Agent + a Designer Agent + a Copywriter Agent. The example given is for a new product launch: a "Project Manager Agent" coordinates overall, assigning tasks to "Market Research Agent," "Product Design Agent," and "Marketing Agent." The key is communication: how Agents pass data, synchronize state, and handle conflicts. This chapter diagrams six communication topologies, from the simplest single Agent to the most flexible custom hybrids, with explanations for each scenario.

After reading these four levels, I suddenly understood why many people say "my Agent doesn't work well." The model isn't the problem; the problem is you're using it like a chatbot, and it might not even be at Level 1.

Context Engineering: The Book's Most Underrated Concept

I wrote an article about Harness Engineering, discussing how the design of the racetrack is more important than the engine's horsepower. After reading this book, I realized that Context Engineering is the mapping of Harness Engineering at the prompt level.

Traditional Prompt Engineering only cares about "how you ask." Context Engineering in the book cares about "what the Agent sees in front of it before it's asked." It includes four layers of information:

  1. First layer, the system prompt. Defines who the Agent is, its tone, its boundaries. Most people only write this layer.

  2. Second layer, external data. Documents retrieved via RAG, return values from tool calls, real-time API data. This is where most people get stuck: they know they need to feed data, but not how to do it without overwhelming the model.

  3. Third layer, implicit data. User identity, interaction history, environmental state. Things you don't explicitly state but the Agent should know. For example, if you tell the Agent, "Help me email John to confirm tomorrow's meeting," it should know what tomorrow's meeting in your calendar is and what your relationship with John is.

  4. Fourth layer, the feedback loop. After each output, the Agent automatically evaluates quality and adjusts the context strategy for next time. The book calls this "automated context optimization." Google's Vertex AI Prompt Optimizer is the engineering implementation of this idea.

When I read this part, I remembered my article "AI Agents Are Not Magic," which included the insight: "Your Agent needs rules, and a lot of them." Looking back now, those rules were essentially a manual version of Context Engineering; the book systematizes it.

Reflection: Two Agents Are Truly Better Than One

This is the pattern with the most practical value for me in the entire book.

The core of Reflection is simple: after finishing work, the Agent reviews itself, finds problems, and corrects them. But the implementation matters. The book states clearly: The Producer and the Critic must be two different Agents, with different system prompts. The same persona reviewing its own work will always have blind spots. If you let the same LLM write code and then review the code it just wrote, it will most likely say, "It's fine."

The book provides a complete code example.

  • The Producer's prompt is: "You are a Python developer. Write a function to calculate factorial, handle edge cases and exceptions."

  • The Critic's prompt is: "You are a nitpicking senior engineer. Review the code line by line, check for bugs, style, missed edge cases, and areas for improvement. If perfect, output CODE_IS_PERFECT, otherwise list all issues."

  • Then there's a for loop: Producer writes code → Critic reviews → Producer revises based on feedback → Critic reviews again → until Critic says CODE_IS_PERFECT or the maximum iteration count is reached.

It's that simple. But the book warns about a cost issue easily overlooked: each reflection loop is a new LLM call; the more iterations, the more expensive. Also, as the conversation history expands, the context window gets filled with earlier versions and criticisms, reducing the actual reasoning space available. So the best practice for Reflection is: set a reasonable maximum number of iterations (the book uses 3), stop once the Critic is satisfied, don't pursue perfection.

Its uses go far beyond writing code. Writing articles, making plans, summarizing documents, solving logic puzzles—the Producer-Critic model applies everywhere. The book lists seven application scenarios, with the same core logic: produce, review, revise.

Multi-Agent Isn't About Being More Complex

In the Multi-Agent Collaboration chapter, my favorite part is the six communication topology diagrams. Many people start with complex structures, but in reality, three are sufficient for most scenarios:

  1. Single Agent (Independent Execution): The task can be broken down into independent sub-problems, each handled by its own Agent. Simple, easy to maintain.

  2. Peer-to-Peer Network: Agents communicate directly with each other, with no central control node. Decentralized, good fault tolerance—if one Agent fails, it doesn't affect the whole. But coordination costs are high, and it can get chaotic.

  3. Supervisor (Centralized Orchestration): A Supervisor Agent manages a group of Worker Agents. Assigns tasks, collects results, resolves conflicts. Clear hierarchy, easy to manage. But the Supervisor is a single point of failure and a performance bottleneck.

The other three (Supervisor-as-Tool, Hierarchical, Custom Hybrid) are variations and combinations of the first three. The book is very practical: the topology you need depends on your task complexity. The more fragmented the task, the higher the communication cost. At a certain point, the Supervisor pattern becomes more efficient than the hierarchical one.

My takeaway is that many people building Multi-Agent systems spend 80% of their time on communication protocols, forgetting to ask a more fundamental question: does this task *really* need multiple Agents? The book is clear: a single Level 2 Agent with Reflection is often sufficient. Level 3 is for scenarios where a single Agent genuinely can't handle it.

The Three-Layer Memory Model: I Felt It Vaguely But Never Named It

I resonated most with the Memory chapter because when I wrote those two articles about Obsidian + Claude, I kept wondering: how should an Agent's memory be layered?

The book provides the answer:

  1. Session (Conversation Layer): The context window for the current conversation. This is the shortest memory; it's gone when the conversation ends. Long-context models simply enlarge this window, but it's still temporary, and each inference has to process the entire window, which is expensive and slow.

  2. State (State Layer): Temporary data during the current task. For example, "what is the ongoing task," "what step has been completed," "what intermediate data has been generated." Longer than Session, but cleaned up when the task ends. The book provides a complete example using Google ADK's State mechanism.

  3. Memory (Persistent Layer): Long-term memory across sessions and tasks. User preferences, learned experiences, important historical decisions, stored in databases or vector stores, retrieved semantically. The book emphasizes an important point: Memory isn't just about storing; you must design a full strategy for *what* to store, *when* to store it, and *how* to retrieve it. Store too much, noise increases; store too little, it's insufficient.

In my previous article about Clawdbot, I mentioned "state files" and "workspace documents," which were essentially handcrafting the State and Memory layers. The book has framed this.

Five Hypotheses, the Fifth Is the Most Outlandish

At the end of the book, it presents five hypotheses about the future of Agents. The first four are within reasonable speculation: General-purpose Agents evolve from writing code to managing projects; Deep Personalization proactively discovers your needs; Embodied Intelligence moves from screens into the physical world; Agents become independent economic entities.

The fifth one stunned me: Shape-Shifting Multi-Agent.

You only declare a goal, like "start a premium coffee e-commerce business." The system automatically decides: first create a "Market Research Agent" and a "Brand Agent." After running a round of data, it judges that the Brand Agent is no longer needed, splitting it into three new ones: "Logo Design Agent," "Website Builder Agent," "Supply Chain Agent." If the Website Builder Agent becomes a bottleneck, the system automatically replicates three parallel Agents to work on different pages simultaneously. Throughout the process, the system continuously auto-tunes each Agent's prompts and constantly restructures the team architecture.

The book calls this a "goal-driven, self-transforming multi-agent system." It's not executing a plan you wrote; it's generating the plan itself, adjusting the plan itself, and reorganizing the execution team itself.

This reminds me of Karpathy's AutoResearch: write a program.md, define goals, metrics, boundaries, and press "Launch." Humans are outside the loop. But this book pushes further: even how the Agent team is formed and restructured is left for the system to decide. Humans only declare "what they want."

Three Things You Can Do Immediately

After reading this book, I have three actionable items to implement immediately:

  • First, add a Critic to your current Agent. Whether you use Claude Code, CrewAI, or your own framework, add one step at the end of your existing workflow: have another Agent (with a different system prompt) review the previous step's output. Code generation + code review, article writing + fact-checking, plan creation + feasibility assessment. It's one more LLM call, but the quality improvement is often doubled. The book's Producer-Critic pattern is plug-and-play.

  • Second, start doing Context Engineering, not just Prompt Engineering. Go back and look at your instruction files for the Agent. If they are all rules about "how you should do things" but lack the context of "what environment you are currently facing," add it. Tell the Agent which project it's in, what decisions it made before, what the user's preferences are. The Context Engineering chapter in the book and your AGENTS.md are two expressions of the same thing.

  • Third, don't rush into Multi-Agent yet. Get your single Agent to Level 2 first: with tools, Reflection, and Memory. The book repeatedly emphasizes that a Level 2 single Agent with Producer-Critic and Context Engineering can cover the vast majority of practical scenarios. Level 3 is for truly cross-domain, multi-stage tasks requiring parallel division of labor. Most people's problem isn't having too few Agents; it's that they haven't even tuned one Agent properly.

This book is 453 pages, published by Springer in 2025. Code examples cover LangChain/LangGraph, Google ADK, CrewAI, and the OpenAI API. The foreword is written by Google Cloud AI VP, and there's a surprising and engaging recommendation preface from a Goldman Sachs CIO.

But my reason for recommending it isn't "comprehensive." It's because you'll realize something after reading: the pitfalls you've encountered with Agents in the past six months have been organized into patterns. You don't need to reinvent Reflection, guess how Memory should be layered, or experiment with which communication topology to use for Multi-Agent.

Someone has drawn the map for you. The rest is just walking.

Are you using AI Agents for development? What Level is your current Agent at?

Preguntas relacionadas

QWhat are the four levels of AI Agent maturity described in the book 'Agentic Design Patterns'?

AThe book describes four levels: Level 0 (Bare LLM, not a real Agent), Level 1 (Tool User), Level 2 (Strategic Thinker with planning and Context Engineering), and Level 3 (Multi-Agent Collaboration).

QAccording to the article, what is the core difference between Prompt Engineering and Context Engineering?

APrompt Engineering focuses on 'how you ask,' while Context Engineering manages 'what is in front of the Agent before it asks.' It involves structuring four layers of information: system prompt, external data, implicit data, and feedback loops to provide the Agent with focused, actionable context.

QWhat is the 'Reflection' pattern, and what is a key practical implementation detail highlighted in the book?

AThe Reflection pattern involves having an Agent review and revise its own work. A key implementation detail is that the Producer (who creates) and the Critic (who reviews) must be two different Agents with different system prompts to avoid blind spots. The process involves iterative loops until the Critic approves or a maximum iteration limit (e.g., 3) is reached.

QWhat are the three main memory layers defined for AI Agents in the book's model?

AThe three memory layers are: 1) Session (the current conversation's context window), 2) State (temporary data for an ongoing task), and 3) Memory (the persistent, long-term storage for cross-session and cross-task information like user preferences and learned experiences).

QWhat are the three actionable recommendations the article author suggests after reading the book?

AThe three recommendations are: 1) Add a Critic Agent to your current workflow for review. 2) Start doing Context Engineering, not just Prompt Engineering, by providing environmental context. 3) Focus on perfecting a single Level 2 Agent with tools, reflection, and memory before rushing into Multi-Agent systems.

Lecturas Relacionadas

NEAR Doubles: 3 Major Trends Become the 'Engine' for Token Price Surge

NEAR token price surged from around $1.24 in early May to over $2.5, with its market cap returning above $3 billion. This significant growth, occurring amidst broader market volatility, is attributed to three key factors. First, the AI narrative has been a major driver. NEAR co-founder Illia Polosukhin is a co-author of the seminal Transformer paper, the foundation of modern AI models like ChatGPT. NEAR has integrated AI capabilities into its ecosystem, notably through the Near.com super-app, positioning itself as a key decentralized AI infrastructure project. Endorsements from figures like Arthur Hayes further boosted market sentiment. Second, NEAR is enhancing its utility as a privacy-focused blockchain. With the launch of NEAR Intents for cross-chain transactions, privacy features like Confidential Payments and Confidential Intents have become critical to protect users from MEV attacks. These functionalities allow private transfers of assets like ETH and BTC across more than 35 chains, balancing privacy with usability and appealing to institutional and enterprise users. Third, a new tokenomics mechanism is providing buy-side pressure. Following the full unlocking of its initial supply in late 2025, NEAR now employs a fee-burn model. All protocol fees generated by the NEAR Intents layer are used to buy back and effectively remove NEAR tokens from circulation. With NEAR Intents TVL exceeding $80 million, this creates consistent monthly buybacks estimated around $3 million, reducing sell pressure. Additional technical upgrades planned for mid-2026, including dynamic re-sharding and post-quantum security, aim to further strengthen the network's scalability and robustness.

marsbitHace 3 min(s)

NEAR Doubles: 3 Major Trends Become the 'Engine' for Token Price Surge

marsbitHace 3 min(s)

After $HYPE Hits a New High, Is It Worth Considering the Stock of "HYPE Version MicroStrategy" $PURR?

**HYPE Hits New Highs: Is $PURR, the "HYPE Version of MicroStrategy," Worth Considering?** The stock of Hyperliquid Strategies (NASDAQ: $PURR), a publicly-traded company that exclusively buys and holds the cryptocurrency HYPE, has gained over 100% year-to-date, mirroring HYPE's own 150% surge to new all-time highs. This has sparked discussions about PURR being a more "capital-efficient" play than MicroStrategy's bitcoin strategy, given its reported ~$1 billion unrealized gain on a ~$220 million investment. The article clarifies that PURR is essentially a pure-play wrapper for HYPE, with no other business. It resulted from a 2025 SPAC merger led by firms like Paradigm and Atlas Merchant Capital, bringing traditional finance veterans to its board. Its value is entirely derived from the price of HYPE. While PURR offers a crucial compliance bridge for US-based institutional and retirement accounts unable to access HYPE directly, the analysis questions the "capital efficiency" narrative. The outsized gains are attributed to HYPE's exceptional performance, not superior corporate strategy. For investors who can buy HYPE directly, holding PURR introduces unnecessary risks: potential shareholder dilution from future stock offerings, incomplete passthrough of staking rewards, market hour mismatches, and counterparty risk via its single custodian. A key metric is its mNAV (modified net asset value). Current calculations show PURR trades at a discount to its HYPE holdings, but this could flip to a premium depending on the execution of registered share issuances. The article concludes that PURR is primarily a "conduit product." The investment thesis hinges entirely on one's bullishness on HYPE itself, not on the PURR wrapper, which adds friction and risk for those with direct crypto access.

marsbitHace 32 min(s)

After $HYPE Hits a New High, Is It Worth Considering the Stock of "HYPE Version MicroStrategy" $PURR?

marsbitHace 32 min(s)

The Real Progress and Investment Opportunities of Decentralized AI Computing Power Networks in 2026

In 2026, the AI compute market is marked by centralized GPU consolidation and a significant GPU shortage for smaller players. In this context, Decentralized Physical Infrastructure Networks (DePIN), valued at $9.4B+, have emerged as a viable, revenue-generating alternative. Leading protocols like Aethir ($150M ARR), io.net (130k+ GPUs), Akash, Bittensor, and Render are carving out distinct niches, moving beyond hype to deliver verifiable income primarily from non-crypto-native clients. The key advantage of decentralized GPU networks lies in serving latency-tolerant, cost-sensitive workloads like AI inference, fine-tuning, data preprocessing, and agent operations, offering substantial cost savings (45-80%) compared to major cloud providers. However, reliability variance, lack of robust SLAs, and fragmented tech stacks remain significant adoption hurdles. The sector is maturing with critical 2026 shifts: 1) Evolution of tokenomics towards demand-driven, revenue-linked models (e.g., Render's BME, io.net's IDE), and 2) Clearer enterprise adoption pathways, with traditional firms integrating decentralized compute. For new entrants, opportunities are now concentrated in specialized tooling layers (orchestration, verification, SLA management), vertical applications (e.g., bio-med, content generation), and innovative token designs tied to real usage, rather than generic GPU aggregation. The convergence with the emerging AI Agent economy presents a significant future growth vector.

marsbitHace 33 min(s)

The Real Progress and Investment Opportunities of Decentralized AI Computing Power Networks in 2026

marsbitHace 33 min(s)

We Captured Thousands of Job Postings and Discovered ByteDance is Reviving Smartphone R&D

This article analyzes ByteDance's recent hiring activities, revealing a potential restart of smartphone hardware development. By scraping and analyzing thousands of ByteDance job postings, the authors identify three key categories: roles for the "Doubao Phone Assistant" (an AI agent), for a "Mobile OS" (system-level development), and for hardware/engineering positions in Shenzhen (a manufacturing hub). The piece traces the context to the 2025 launch of the "Doubao Phone," a concept device that integrated an AI agent directly into a smartphone, allowing it to see the screen, operate apps, and perform tasks like shopping or booking tickets. While innovative as an early AI Agent prototype, it faced operational restrictions from major platforms like WeChat and Alipay. The new hiring signals a deeper commitment. "Doubao Phone Assistant" roles focus on core Agent capabilities (task execution, memory, cross-app operation). "Mobile OS" positions involve deep system work (kernel, chip adaptation, power/thermal management) necessary for a responsive, always-on AI. Shenzhen-based hardware roles (structure design, testing, production) suggest preparation for physical device manufacturing. The article concludes that in the AI era, where phones may become an Agent's "body," controlling the operating system and hardware is critical. For a company like ByteDance, being merely an app within others' ecosystems is no longer sustainable if it aims to own the next-generation user interface. Therefore, while a consumer phone brand isn't confirmed, ByteDance is decisively moving beyond app development into the complex domain of system-level and hardware-integrated AI.

marsbitHace 1 hora(s)

We Captured Thousands of Job Postings and Discovered ByteDance is Reviving Smartphone R&D

marsbitHace 1 hora(s)

Trading

Spot
Futuros
活动图片