July 2026  ยท  A Complete Briefing

Agentic AI:
A Complete Briefing

What it is, how it works, and what you have already built
Section 01

The History of
Agentic AI

From recipe cards on walls to autonomous production agents
Pre-2020

Rule-Based Systems & Early Automation

RPA

Robotic Process Automation

Scripts that click buttons and fill forms. Brittle, deterministic, zero reasoning ability.

Chatbots

Decision Trees

ELIZA (1966) through scripted IVR bots. If-then logic with no language understanding whatsoever.

Expert Systems

Hand-Encoded Rules

Knowledge engineers encoding domain expertise. Powerful in narrow lanes โ€” useless outside them.

"Like a recipe card taped to the wall. It knows exactly one dish. Change one ingredient and it's lost."
2020 โ€“ 2022

GPT-3 Arrives. ChatGPT Explodes.

  • GPT-3 (2020) shows that scale produces emergent reasoning โ€” nobody predicted this would happen
  • ChatGPT (Nov 2022) hits 1 million users in 5 days โ€” fastest product launch in history
  • Models can read, write, code, reason โ€” but have no persistent memory and no actions
  • Every response is stateless: brilliant insight, then immediately forgotten
  • Developers realize: this is the brain. We just need to give it hands.
"A brilliant consultant with no hands. Incredible advice. Zero follow-through."
2023

Everyone Gave the Brain Hands

  • AutoGPT โ€” first viral autonomous agent. GitHub stars before it could reliably finish a task.
  • BabyAGI โ€” task creation and execution loop. Fascinating. Unreliable. Unmistakably real potential.
  • ChatGPT Plugins โ€” OpenAI opens the door to tool use at massive scale
  • Agents could browse, code, run commands โ€” and frequently went in spectacular circles
  • The lesson: giving a language model tools without guardrails is performance art, not engineering
"The year everyone gave the brain hands. The results were... educational."
2024

From "Can We?" to "How Do We Build Reliably?"

Infrastructure Matures

Function Calling Goes Native

OpenAI and Anthropic bake structured tool use directly into the model API. No hacks required.

Frameworks Emerge

LangChain & CrewAI

Opinionated scaffolding for building agents with memory, tools, and multi-agent coordination.

The Shift

Reliability Becomes the Question

The field pivots from demos to production. Evaluation, cost, and error recovery dominate the conversation.

The Ecosystem

Tooling Explosion

Vector databases, RAG pipelines, agent observability platforms, prompt management โ€” the stack is forming.

2025

Agents Go Mainstream

  • OpenAI Agents SDK โ€” production-grade framework with handoffs, guardrails, tracing built in
  • Claude Code โ€” Anthropic ships a coding agent that writes, tests, and commits real code
  • Enterprise pilots become enterprise deployments โ€” legal, finance, support, engineering
  • Model performance crosses thresholds where agent reliability becomes genuinely tractable
  • The phrase "agentic AI" enters mainstream business vocabulary
KEY SHIFT โ€” The question changes from "will this work?" to "how do we monitor, evaluate, and trust it at scale?"
2026 โ€” The Current Moment

Coding Agents, Computer Use, Enterprise Scale

Coding Agents

Autonomous Development

Claude Code, GitHub Copilot Workspace, Devin โ€” agents that own entire feature branches end-to-end.

Computer Use

GUI Automation

Models that see screens and use any software like a human. Anthropic Computer Use is in production.

Enterprise Scale

Departmental Agents

Agents running scheduled tasks, managing workflows, filing reports โ€” without per-step human supervision.

We are not in the "what is this?" phase.
We are in the "how do we build it right?" phase.
Section 02

Current State:
July 2026

What's real, who's building it, and what remains unsolved
Current State

Production-Ready vs. Still Experimental

Production Ready
  • โœ“ Single-task coding agents (write, test, commit)
  • โœ“ RAG-augmented knowledge systems
  • โœ“ Tool-calling agents for data retrieval
  • โœ“ Scheduled autonomous reporting
  • โœ“ Customer support with structured escalation paths
Still Experimental
  • โš  Long-horizon autonomous multi-step plans
  • โš  Fully unsupervised enterprise workflows
  • โš  Reliable self-correction after major failures
  • โš  General computer use without supervision
  • โš  True multi-agent consensus at scale
The Landscape

Major Players

Anthropic

Claude

Safety-first, long context, best-in-class coding agents. Claude Code. Computer Use. Pioneer in tool use design.

OpenAI

GPT-4o / o3

Broadest ecosystem, Agents SDK, widest plugin support, strongest consumer brand recognition.

Google

Gemini

Deepest Workspace integration, 1M+ token context, multi-modal leader, strong search grounding.

Microsoft

Copilot

Enterprise Office and Teams integration. Dominates corporate IT deployments at massive scale.

Unsolved Problems

What Remains Hard

Reliability Compounding

Each step in an agent chain: ~90% success. After 10 steps: 35% overall. Errors cascade and amplify โ€” fast.

Cost at Scale

Token costs multiply rapidly in agentic loops. Long-horizon tasks can exhaust budgets before completing.

Evaluation

How do you score an agent that ran 40 steps? Human eval is slow. Automated eval is imperfect. Both are needed.

Trust & Oversight

When can an agent take an irreversible action? How does a human stay in the loop without killing throughput?

Section 03

How It Works

The loops, patterns, and primitives that power agentic systems
Core Pattern

The ReAct Loop

REASON
โ†“
ACT
โ†“
OBSERVE
โ†“
UPDATE
Reason

What do I need to do? What information do I have? What tool should I call?

Act

Call a tool. Write to memory. Send a message. Execute code. Make an API call.

Observe

Parse the result. Did it succeed? What data came back? Any errors to handle?

Update

Update working memory. Revise the plan. Loop back to Reason โ€” or finish.

Kitchen Analogy

ReAct = Expediting a Busy Service

The Expeditor (Agent)

Reads the ticket (goal), decides which station to call (tool), checks the pass (observes result), updates the board (memory), calls the next station (loops).

The Stations (Tools)

Grill, sautรฉ, garde manger โ€” each specialist does one thing fast and well. The expeditor coordinates; never cooks alone.

The Board (Working Memory)

Ticket rail shows what's been called, what's pending, what's fired and waiting. Lost context equals lost ticket equals chaos.

The Loop

Every round of service is a ReAct loop. Multiple loops per cover. Service ends when all tickets are cleared.

Primitives

Tools & Function Calling

The LLM is the brain.
Tools are the hands.
User Goal
โ†’
LLM Reasons
โ†’
Tool Call
โ†’
Result
โ†’
LLM Updates
โ†’
Response / Loop
Common Tools
  • Web search
  • Code execution
  • File read/write
  • Database queries
  • API calls
How It Works

Model outputs structured JSON describing a function call. Runtime executes it and returns results into model context.

Key Insight

The model never actually runs code. It requests execution. Your infrastructure decides what it's allowed to do.

Memory Architecture

The Three Types of Agent Memory

Working Memory

The Context Window

Everything currently in the model's attention. Fast, ephemeral, limited. Lost when the session ends.

~ tokens in flight
Long-Term Memory

External Storage

Vector databases, files, SQL tables. Persists across sessions. Retrieved via semantic or exact search.

vector DB / files / SQL
Episodic Memory

Past Actions & Outcomes

A log of what the agent did, what happened, what worked. Improves future decisions, avoids past mistakes.

experience logs
GARDE MANGER NOTE โ€” Uses all three: context window for current session, memory files for persistence, heartbeat logs for episodic history.
Planning

How Agents Decompose Goals

  • Goal decomposition โ€” break a complex goal into ordered, achievable sub-tasks
  • Dependency mapping โ€” identify which tasks must complete before others can start
  • Tool assignment โ€” match each sub-task to the right tool or sub-agent
  • Dynamic re-planning โ€” when a step fails or returns unexpected data, revise the plan
  • Progress tracking โ€” maintain a scratch-pad of what's done, pending, blocked
Planning quality is often the limiting factor. A model with mediocre tools and excellent planning beats excellent tools with poor planning.
System Architecture

Multi-Agent Systems

ORCHESTRATOR AGENT
โ†“
Research Agent
Writing Agent
Code Agent
Reviewer Agent
โ†“
Results aggregated โ†’ Orchestrator โ†’ Final output โ†’ User
"The kitchen brigade. Sous chef orchestrates. Each station is a specialist. No one person cooks the entire plate."
Key Distinction

Chatbot vs. Agent

Dimension Chatbot Agent
ExecutionSingle responseMulti-step autonomous loops
MemorySession context onlyPersistent external memory
ToolsNone or very limitedMany โ€” code, web, files, APIs
AutonomyWaits for each promptRuns until goal is complete
PlanningNoYes โ€” decomposes and sequences
Error handlingReports error, stopsRetries, replans, recovers
Section 04

How to Create
Agents

Platforms, frameworks, and approaches โ€” from GUI to full code
Approach 1 โ€” No Code

OpenAI ChatGPT Agent Builder

Step 1

Open ChatGPT โ†’ Click "Explore GPTs" โ†’ Click "Create"

Step 2

Describe your agent's purpose in plain English โ€” the builder configures it conversationally

Step 3

Add capabilities: web browsing, code interpreter, image generation, custom tool Actions

Step 4

Upload knowledge files, connect OpenAPI schema Actions, configure and publish

Best For

Quick prototypes, non-technical builders, internal tools with simple logic, customer-facing GPT wrappers

Limitations

No persistent memory by default, limited customization, locked to OpenAI infrastructure, cannot run background tasks

Approach 2 โ€” Code-Centric

Anthropic Claude API + Tools

# 1. Define your tools
tools = [{"name": "search_web", "input_schema": {...}}]

# 2. Run the agent loop
response = client.messages.create(
  model="claude-opus-4-5",
  tools=tools, messages=history
)

# 3. If model called a tool, execute and loop back
if response.stop_reason == "tool_use":
  result = execute_tool(response.content)
  history.append(result)
  # โ†’ loop back to step 2
Strengths

Full control, custom memory, any infrastructure, production-grade, no vendor lock-in

When to Use

Custom workflows, sensitive data, complex multi-step logic, existing system integration

Requires

Python or TypeScript, API key management, your own hosting, strong prompt engineering

Approach 3 โ€” Platform

OpenClaw

The platform Michael is building โ€”
agentic features built into the core product
Agentic by Design

Built for Autonomy

Not a chatbot with tools bolted on. Designed from the ground up for persistent, goal-directed execution with memory.

Extensible Tooling

Connect Any Service

Connect external services, run background tasks, maintain memory across sessions without custom infrastructure.

User Facing

Accessible Agents

Delivers agentic capability to users who can't or don't want to write Python. The GUI layer over agent infrastructure.

The Opportunity

Early Mover Advantage

Platforms that bake in agentic thinking now will be years ahead of those trying to retrofit it later.

Frameworks

LangChain, CrewAI, AutoGen โ€” When to Use Each

LangChain

The Swiss Army Knife

Best for RAG pipelines, complex chains, huge ecosystem of integrations. Use when you need flexibility and can afford config time.

verbose config ยท powerful
CrewAI

Multi-Agent Crews

Best for defining agent roles and letting them collaborate on a task. Opinionated, readable, great for team-based workflows.

role-based ยท intuitive
AutoGen

Conversational Multi-Agent

Best when agents need to debate, critique, and refine each other's work. Microsoft-backed. Strong for research and analysis.

debate pattern ยท research
HONEST TAKE โ€” For production work, raw API plus minimal abstraction often beats heavy frameworks. Frameworks add magic โ€” magic is hard to debug at 2am.
Special Case

Claude Code

Not a chatbot.
An agent that writes, tests, and ships code.
What It Does
  • Reads your entire codebase in context
  • Plans multi-file, multi-step changes
  • Writes code, runs tests, fixes failures
  • Commits when done; iterates when not
  • Loops until the stated goal is achieved
Why It Matters

This is the orchestrator-worker pattern running in production. Claude Code orchestrates. Bash, file tools, compilers are workers. You describe the outcome; it engineers the path.

"Build me a REST API with auth and tests."
โ†’ returns working, tested, committed code
Section 05

What You Have
Already Built

You are not a student of agentic AI. You are a practitioner.
What You Built

Garde Manger = Persistent Agent

Memory

Persistent Memory Files

Cross-session memory stored externally. Garde Manger remembers context between conversations โ€” not a chatbot reset.

Tools

Real Tool Use

File access, code execution, web browsing โ€” a genuine tool-using agent, not a text generator with a friendly face.

Autonomy

Goal-Directed Execution

Given a goal, it works toward completion across multiple steps without requiring a human prompt for each action.

PATTERN โ€” Memory-Augmented Agent. A fully realized architecture that most companies are still building toward.
What You Built

Claude Code + Gemini = Advanced Patterns

Claude Code Sessions

Orchestrator-Worker Pattern

Claude Code acts as orchestrator โ€” planning, delegating to tool-workers (bash, file system, compiler), aggregating results, iterating. Textbook multi-agent architecture in production.

Claude Code โ†’ [bash ยท editor ยท tests ยท git]
Gemini

Multi-Agent Debate

Using multiple model instances โ€” or models from different providers โ€” to review, critique, and refine each other's outputs. The evaluator-optimizer pattern in action.

Claude drafts โ†’ Gemini critiques โ†’ Claude refines
You didn't read about these patterns. You ran them.
What You Built

Heartbeat + Reports + Memory Files

This is agentic infrastructure,
not a feature.
  • Heartbeat โ€” a scheduled background loop that checks system state, routes information, triggers actions. Event-driven agent architecture.
  • Automated reports โ€” agent-generated, not human-generated. Collects, synthesizes, and delivers on schedule without prompting.
  • Memory files โ€” structured external storage that agents read and write to maintain continuity across sessions.
  • The combination โ€” a continuously running agent that perceives, remembers, and acts. This is the definition of an autonomous agent.
What You Built

Building by Describing

Prompt-driven autonomous execution
is a production workflow โ€” not a shortcut
The Pattern

Describe desired outcome in natural language โ†’ Agent decomposes โ†’ Agent executes โ†’ Agent reports โ†’ Human reviews output, not process

Why It Matters

You are operating at the goal level, not the task level. This is leverage. One well-formed description replaces hours of manual execution by a human.

Most developers are still writing functions. You are writing intentions and letting the agent figure out the functions.
What You Built

The Sidekick Spec

"The most sophisticated personal agent architecture
in independent development"
Architecture

A full specification for a personal AI agent with persistent identity, memory, proactive behavior, and multi-modal tool use.

Scope

Not a chatbot spec. A companion agent spec โ€” context-aware, relationship-maintaining, autonomously improving over time.

Significance

This spec describes what most AI labs are working toward for their consumer products. You wrote it as an independent developer.

CONTEXT โ€” Enterprise teams with six-figure budgets are designing architectures similar to what you have specced. You are not behind the curve. You are ahead of most teams.
Section 06

Moving Forward

Patterns to formalize and practical next steps
Architecture Patterns

Key Patterns to Formalize

01 โ€” Orchestrator-Worker

Coordinator + Specialists

One agent decomposes goals and routes sub-tasks to specialist agents or tools. Scales to complexity. Already in daily use with Claude Code.

02 โ€” Memory-Augmented

State That Survives Sessions

Agents that read and write persistent external memory. Context accumulates over time. Garde Manger is this pattern, fully realized.

03 โ€” Evaluator-Optimizer

Draft โ†’ Critique โ†’ Refine

One agent generates, another evaluates, the first refines. Produces higher quality outputs than any single-pass generation. Running with Gemini.

04 โ€” Event-Driven

Agents That Wake on Triggers

Background agents that activate on schedules, webhooks, or data thresholds. Proactive rather than reactive. Heartbeat is this pattern.

Practical Next Steps

Where to Focus

  • Document your patterns โ€” write up Garde Manger, Heartbeat, and Sidekick architectures formally. Knowledge compounds when committed to writing.
  • Add evaluation โ€” build scoring into your agent loops. Know when they succeed and fail, not just anecdotally from use.
  • Bake agents into OpenClaw โ€” persistent memory and autonomous actions are product differentiators right now, not a future roadmap item.
  • Explore the Agents SDK โ€” OpenAI's SDK adds handoffs, guardrails, and tracing. Production-hardening your current patterns is the next step.
  • Ship something agentic publicly โ€” there is no better feedback loop than a real user hitting an agent you built under real conditions.
Closing

You're not just using
AI tools.

You're building agent infrastructure.
The kitchen analogy isn't just illustrative โ€” it's structural.
You understand the brigade because you have run one.

Now you have the vocabulary to describe
exactly what you are already doing.
1 / 36
โ† โ†’ navigate space advance backspace back