The next article initially appeared on Hugo Bowne-Anderson’s publication, Vanishing Gradients, and is being republished right here with the creator’s permission.
On this publish, we’ll construct two AI brokers from scratch in Python. One will probably be a coding agent, the opposite a search agent.
Why have I known as this publish “The way to Construct a Normal-Goal AI Agent in 131 Traces of Python” then? Properly, because it seems now, coding brokers are literally general-purpose brokers in some fairly stunning methods.
What I imply by that is after getting an agent that may write code, it will possibly:
- Do an enormous variety of belongings you don’t typically consider as involving code, and
- Lengthen itself to do much more issues.
It’s extra applicable to think about coding brokers as “computer-using brokers” that occur to be nice at writing code. That doesn’t imply you must at all times construct a general-purpose agent, but it surely’s value understanding what you’re truly constructing if you give an LLM shell entry. That’s additionally why we’ll construct a search agent on this publish: to indicate the sample works no matter what you’re constructing.
For instance, the coding agent we’ll construct beneath has 4 instruments: learn, write, edit, and bash.
It may well do
- File/life group: Clear your desktop, type downloads by kind, rename trip pictures with dates, discover and delete duplicates, manage receipts into folders. . .
- Private productiveness: Search all of your notes for one thing you half-remember, compile a packing checklist from previous journeys, discover all PDFs containing “tax” from final yr. . .
- Media administration: Rename a season of TV episodes correctly, convert pictures to completely different codecs, extract audio from movies, resize pictures for social media. . .
- Writing and content material: Mix a number of docs into one, convert between codecs, find-and-replace throughout many recordsdata. . .
- Information wrangling: Flip a messy CSV right into a clear handle e book, extract emails from a pile of recordsdata, merge spreadsheets from completely different sources. . .
This can be a small subset of what’s doable. It’s additionally the rationale Claude Cowork appeared promising and why OpenClaw has taken off in the way in which it did.
So how will you construct this? On this publish, I’ll present you learn how to construct a minimal model.
Brokers are simply LLMs with instruments in a loop
Brokers are simply LLMs with instruments in a dialog loop and as soon as you recognize the sample, you’ll be capable of construct all sorts of brokers with it:
As Ivan Leo wrote,
The barrier to entry is remarkably low: half-hour and you’ve got an AI that may perceive your codebase and make edits simply by speaking to it.
The objective right here is to indicate that the sample is similar no matter what you’re constructing an agent for. Coding agent, search agent, browser agent, e mail agent, database agent: all of them comply with the identical construction. The one distinction is the instruments you give them.
Half 1: The coding agent
We’ll begin with a coding agent that may learn, write, and execute code. As acknowledged, the flexibility to put in writing and execute code with bash additionally turns a “coding agent” right into a “general-purpose agent.” With shell entry, it will possibly do something you are able to do from a terminal:
- Kind and manage your native filesystem
- Clear up your desktop
- Batch rename pictures
- Convert file codecs
- Handle Git repos throughout a number of initiatives
- Set up and configure software program
You will discover the code right here.
Try Ivan Leo’s publish for a way to do that in JavaScript and Thorsten Ball’s publish for learn how to do it in Go.
Setup
Begin by creating our venture:

We’ll be utilizing Anthropic right here. Be at liberty to make use of your LLM of alternative. For bonus factors, use Pydantic AI (or an analogous library) and have a constant interface for the assorted completely different LLM suppliers. That means you need to use the identical agentic framework for each Claude and Gemini!
Ensure you’ve acquired an Anthropic API key set as ANTHROPIC_API_KEY atmosphere variable.
We’ll construct our agent in 4 steps:
- Hook up our LLM
- Add a instrument that reads recordsdata
- Add extra instruments:
write,edit, andbash
- Add extra instruments:
- Construct the agentic loop
- Construct the conversational loop
1. Hook up our LLM


Textual content in, textual content out. Good! Now let’s give it a instrument.
2. Add a instrument (learn)
We’ll begin by implementing a instrument known as learn which is able to enable the agent to learn recordsdata from the filesystem. In Python, we are able to use Pydantic for schema validation, which additionally generates JSON schemas we are able to present to the API:



We wrap this right into a instrument definition that Claude understands:

Then we add instruments to the API name, deal with the instrument request, execute it, and ship the consequence again:

Let’s see what occurs once we run it:

This script calls the Claude API with a consumer question handed through command line. It sends the question, will get a response, and prints it.
Word that the LLM matched on the instrument description: Correct, particular descriptions are key! It’s additionally value mentioning that we’ve made two LLM calls right here:
- One wherein the instrument is named
- A second wherein we ship the results of the instrument name again to the LLM to get the ultimate consequence
This typically journeys up individuals constructing brokers for the primary time, and Google has made a pleasant visualization of what we’re truly doing:

2a. Add extra instruments (write, edit, bash)
Now we have a learn instrument, however a coding agent must do greater than learn. It must:
- Write new recordsdata
- Edit present ones
- Execute code to check it
That’s three extra instruments: write, edit, and bash.
Identical sample as learn. First the schemas:

Then the executors:

And the instrument definitions, together with the code that runs whichever one Claude picks:

The bash instrument is what makes this truly helpful: Claude can now write code, run it, see errors, and repair them. However it’s additionally harmful. This instrument might delete your complete filesystem! Proceed with warning: Run it in a sandbox, a container, or a VM.
Apparently, bash is what turns a “coding agent” right into a “general-purpose agent.” With shell entry, it will possibly do something you are able to do from a terminal:
- Kind and manage your native filesystem
- Clear up your desktop
- Batch rename pictures
- Convert file codecs
- Handle Git repos throughout a number of initiatives
- Set up and configure software program
It was truly “Pi: The Minimal Agent Inside OpenClaw” that impressed this instance.
Attempt asking Claude to edit a file: It typically desires to learn it first to see what’s there. However our present code solely handles one instrument name. That’s the place the agentic loop is available in.
3. Construct the agentic loop
Proper now Claude can solely name one instrument per request. However actual duties want a number of steps: learn a file, edit it, run it, see the error, repair it. We’d like a loop that lets Claude hold calling instruments till it’s executed.
We wrap the instrument dealing with in a whereas True loop:

Word that right here we’ve got despatched your complete previous historical past of gathered messages as we progress via loop iterations. When constructing this out extra, you’ll need to engineer and handle your context extra successfully. (See beneath for extra on this.)
Let’s strive a multistep process:

4. Construct the conversational loop
Proper now the agent handles one question and exits. However we wish a back-and-forth dialog: Ask a query, get a solution, ask a follow-up. We’d like an outer loop that retains asking for enter.
We wrap every thing in a whereas True:

The messages checklist persists throughout turns, so Claude remembers context. That’s the whole coding agent.
As soon as once more we’re merely appending all earlier messages, which suggests the context will develop fairly shortly!
A observe on agent harnesses
An agent harness is the scaffolding and infrastructure that wraps round an LLM to show it into an agent. It handles:
- The loop: prompting the mannequin, parsing its output, executing instruments, feeding outcomes again
- Software execution: truly working the code/instructions the mannequin asks for
- Context administration: what goes within the immediate, token limits, historical past
- Security/guardrails: affirmation prompts, sandboxing, disallowed actions
- State: maintaining observe of the dialog, recordsdata touched, and so on.
And extra.
Consider it like this: The LLM is the mind; the harness is every thing else that lets it truly do issues.
What we’ve constructed above is the howdy world of agent harnesses. It covers the loop, instrument execution, and fundamental context administration. What it doesn’t have: security guardrails, token limits, persistence, or perhaps a system immediate!
When constructing out from this foundation, I encourage you to comply with the paths of:
- The Pi coding agent, which provides context loading
AGENTS.mdfrom a number of directories, persistent classes you’ll be able to resume and department, and an extensibility system (abilities, extensions, prompts) - OpenClaw, which matches additional: a persistent daemon (always-on, not invoked), chat because the interface (Telegram, WhatsApp, and so on.), file-based continuity (
SOUL.md,MEMORY.md, every day logs), proactive conduct (heartbeats, cron), preintegrated instruments (browser, subagents, gadget management), and the flexibility to message you with out being prompted
Half 2: The search agent
With the intention to actually present you that the agentic loop is what powers any agent, we’ll now construct a search agent (impressed by a podcast I did with search legends John Berryman and Doug Turnbull). We’ll use Gemini for the LLM and Exa for net search. You will discover the code right here.
However first, the astute reader could have an fascinating query: If a coding agent actually is a general-purpose agent, why would anybody need to construct a search agent once we might simply get a coding agent to increase itself and switch itself right into a search agent? Properly, as a result of if you wish to construct a search agent for a enterprise, you’re not going to do it by constructing a coding agent first… So let’s construct it!
Setup
As earlier than, we’ll construct this step-by-step. Begin by creating our venture:

Set GEMINI_API_KEY (from Google AI Studio) and EXA_API_KEY (from exa.ai) as atmosphere variables.
We’ll construct our agent in 4 steps (the identical 4 steps as at all times):
- Hook up our LLM
- Add a instrument (web_search)
- Construct the agentic loop
- Construct the conversational loop
1. Hook up our LLM


2. Add a instrument (web_search)
Gemini can reply from its coaching knowledge, however we don’t need that, man! For present info, it wants to look the net. We’ll give it a web_search instrument that calls Exa.

The system instruction grounds the mannequin, (ideally) forcing it to look as a substitute of guessing. Word that you could configure Gemini to at all times use web_search, which is 100% reliable, however I wished to indicate the sample that you need to use with any LLM API.
We then ship the instrument name consequence again to Gemini:

3. Construct the agentic loop
Some questions want a number of searches. “Evaluate X and Y” requires trying to find X, then trying to find Y. We’d like a loop that lets Gemini hold looking out till it has sufficient info.


4. Construct the conversational loop
Identical as earlier than: We wish back-and-forth dialog, not one question and exit. Wrap every thing in an outer loop:

Messages persist throughout turns, so follow-up questions have context.
Lengthen it
The sample is similar for each brokers. Add any instrument:
web_searchto the coding agent: Look issues up whereas codingbashto the search agent: Act on what it findsbrowser: Navigate web sitessend_email: Talkdatabase_query: Run SQL
One factor we’ll be doing is exhibiting how common goal a coding agent actually could be. As Armin Ronacher wrote in “Pi: The Minimal Agent Inside OpenClaw”:
Pi’s complete thought is that if you would like the agent to do one thing that it doesn’t do but, you don’t go and obtain an extension or a ability or one thing like this. You ask the agent to increase itself. It celebrates the thought of code writing and working code.
Conclusion
Constructing brokers is easy. The magic isn’t advanced algorithms; it’s the dialog loop and well-designed instruments.
Each brokers comply with the identical sample:
- Hook up the LLM
- Add a instrument (or a number of instruments)
- Construct the agentic loop
- Construct the conversational loop
The one distinction is the instruments.
Thanks to Ivan Leo, Eleanor Berger, Mike Powers, Thomas Wiecki, and Mike Loukides for offering suggestions on drafts of this publish.

