Studio Matrx Monthly · Volume 1 · Issue 4 · September 2026
Amogh N P
 In loving memory of Amogh N P — Architect · Designer · Visionary 
What an AI Agent Actually IsLesson 0.2
AI Agents & Autonomous Design Systems/Module 0 · Why AI Agents Change Design

Lesson 0.2 · Why AI Agents Change Design

What an AI Agent Actually Is

Open the box and an agent is five parts working together - a goal, a model for a brain, tools to act with, memory to hold the job, and a loop that plans, acts, observes and adjusts - which is exactly what separates it from a single answer to a single prompt

12 min Interactive lessonFree · open lessonByAmogh N P· Architect & interior designer
The hook

A goal, a brain, some tools, a memory and a loop - name the five parts of an agent and you can direct it, trust it rightly, and fix it when it breaks.

The last lesson made a promise about what agents do: take a goal, plan, use tools, work through multiple steps, report back. This lesson pays it off by opening the box. Because an agent is not magic and it is not a mind - it is an arrangement of a few understandable parts, and once you can see them, the whole rest of the course clicks into place. You will know why an agent can do things a chatbot cannot, where its powers come from, and - just as important - where its failures come from, so that when one disappoints you, you can name the broken part instead of shrugging at a black box.

Here is the whole picture in one line, to be unpacked across this lesson: an AI agent is a goal, handed to a model that acts as its brain, given tools to take action and a memory to hold the job, all wired into a loop that plans, acts, observes and adjusts until the goal is met. That loop - not the model alone - is what makes it an agent rather than a very good autocomplete. And running alongside all five parts is a sixth thing that is not inside the machine at all: you, the designer, who sets the goal, chooses the tools, decides what the loop may do unwatched, and judges and answers for the result. Learn the anatomy so you can be that operator well.

Five parts inside the box: goal, brain, tools, memory, loop. One director outside: you.

The five parts of an agent

If the last lesson said an agent takes a goal, plans, uses tools and does multi-step work, this lesson opens the box and names the parts, because you cannot direct - or trust, or debug - a thing you cannot picture. An AI agent, stripped to essentials, is five parts working together, and every agentic system you will ever meet is a variation on them.

One - a goal. The agent starts not from a single question but from an objective you hand it: 'assemble the precedents for a mid-size clinic and tell me what makes them work', 'draft the door schedule from this plan', 'check this layout against these rules'. The goal is the whole job, not one step of it, and how well you frame it largely decides how well the agent does - a vague goal produces confident wandering.

Two - a model, the brain. At the centre sits a large language model (and sometimes more than one): the reasoning engine that reads the situation, decides what to do next, writes the plan, interprets what came back, and forms the words of the result. It is the part that 'thinks', in the loose sense - and, crucially, the part that can be fluently, confidently wrong, which is why nothing downstream escapes verification.

Three - tools. A brain that can only talk is an assistant; a brain that can act is an agent. Tools are the hands: the ability to search the web, read and write files, run a calculation or a script, query a database, call another program or an external service through an interface. Tools are how the agent reaches out of the chat window and changes something in the world - and the set of tools you give it defines the outer edge of what it can possibly do.

Four - memory and context. A multi-step job needs a working memory: what the goal was, what has been tried, what each tool returned, what was learned two steps ago and still matters now. Some of this is the running context of the task; some is longer-term memory the agent can store and retrieve. Without it, an agent forgets its own trail and repeats or contradicts itself.

Five - a loop. The four parts above are wired into a cycle: the agent plans, acts with a tool, observes the result, adjusts, and goes round again until the goal is met or it gives up. That loop is the single feature that separates an agent from everything that came before, and it is worth a section of its own.

THE ANATOMY OF AN AGENTthe agent (a machine you can name the parts of)1 GOAL in2 MODELthe brain / reasoning3 TOOLSact4 MEMORYhold the jobWORK out5 LOOP: plan - act - observe - adjust6 YOU (outside the box)set the goal - choose the tools - decide what the loop may do unwatched - verify the work
Zoom
The anatomy of an agent. A GOAL enters a system whose centre is a MODEL (the brain); the model reaches out through TOOLS to act in the world and draws on MEMORY to hold the job, all wired into a LOOP that repeats until the WORK is produced. Outside the box stands the human, who sets the goal, chooses the tools, and verifies the result.

Goal + brain (model) + tools + memory + loop = agent. Plus YOU, outside the box, directing it.

The loop is the heart: plan, act, observe, adjust

The loop is the heart of an agent, so it repays a close look. A plain AI answer is one pass: text in, text out, done. An agent runs a cycle - most usefully described as plan, act, observe, adjust - and it is the repetition of that cycle that turns a language model into something that gets multi-step work done.

Plan. Given the goal and what it knows so far, the model decides the next move: which sub-task to tackle, which tool to reach for, what to ask that tool. Early in a job this is a rough sketch of the whole route; later it is the single next step, revised in light of what has happened. Good agents plan lightly and often rather than committing to one long plan made blind at the start.

Act. The agent uses a tool - it runs the search, opens the file, executes the calculation, calls the service. This is the step that reaches into the world, and it is also where real consequences and real errors live: an action can fail, return garbage, or change something it should not have. Which is exactly why sensitive actions deserve a human gate, a theme the whole course returns to.

Observe. The tool returns something - search results, a file's contents, an error message, a number - and the model reads it. This closing of the feedback loop is what makes an agent adaptive rather than blind: it is not executing a fixed script, it is reacting to what actually came back, which may be nothing like what it expected.

Adjust. In light of the observation, the agent updates its plan: the search was empty, so try different terms; the file had the dimension after all, so move on; the calculation failed, so fix the input and retry. Then it loops - plans the next move, acts, observes, adjusts - again and again.

Two properties of the loop matter for you as its director. First, it terminates - by reaching the goal, hitting a limit you set, or getting stuck - and a well-built agent knows when to stop and hand back rather than spin. Second, it can compound errors: a wrong observation early can send the whole chain astray, plausibly and invisibly. Seeing the loop clearly is what lets you place your checks where they count - on the goal going in, and on the work coming out.

THE LOOP: PLAN - ACT - OBSERVE - ADJUSTPLANdecide next moveACTuse a toolOBSERVEread the resultADJUSTupdate the plangoal met? -> STOP & report
Zoom
The agent loop. The model PLANS the next move, ACTS with a tool, OBSERVES what came back, and ADJUSTS its plan - then goes round again until the goal is met or a limit is hit. Closing this feedback cycle is what makes an agent adaptive rather than a fixed script; it is also where early errors can quietly compound, so a good loop knows when to stop and hand back.

Agent versus a plain LLM call

Now the distinction the whole course turns on: the difference between an agent and a plain LLM call. It is easy to blur, because an agent is built around an LLM and often talks to you in the same chat box - but the difference is real and it changes how you must treat the output.

A plain LLM call is a single transformation: you send text (a prompt), the model predicts and returns text (an answer), and that is the entire event. It has no memory of anything beyond what you pasted in, it cannot look anything up, it cannot check its own claim, and it cannot take any action in the world. It is astonishing at what it does - drafting, explaining, rephrasing, brainstorming - but it does exactly one thing: produce a plausible next stretch of text. When it does not know, it does not go and find out; it produces plausible text anyway, which is the root of hallucination.

An agent wraps that same model in the loop and the tools from the last two sections. The consequences are qualitative, not cosmetic. An agent can act, not just describe - it can actually open the file and read the real dimension rather than guessing it. It can take several steps, carrying what it learns forward, so it handles jobs no single prompt could. It can ground itself in reality by using tools to fetch real information instead of relying only on what it absorbed in training. And it can self-correct within limits, noticing a failed step and trying again.

But notice what does not change. The brain is still a language model, so the agent can still be confidently wrong - now with the added reach to act on that wrongness, and to produce a large, polished, multi-part deliverable that is subtly mistaken throughout. A plain wrong answer is easy to catch; a wrong answer buried in fifty pages of correct-looking schedule is not. So the agent's extra power raises the stakes of verification rather than lowering them.

The practical test to keep in your head: did the system just generate text, or did it go and do something and come back? If you asked one question and got one answer, that is an assistant call, and you judge it as a claim. If you handed over a goal and it planned, used tools and returned completed work, that is an agent, and you judge it as work - which means checking not just the conclusion but the steps and sources it took to get there.

PLAIN LLM CALL vs AGENTPLAIN CALL - one passprompt inMODEL predictstext outno memory - no lookup - no actionAGENT - the model in a loopgoal inMODEL (same brain)tools + memoryloop / adjustwork out (multi-step)
Zoom
Same brain, different machine. A plain LLM call is one pass - a prompt in, text out, with no memory, no lookup and no action. An agent wraps that same model in a loop with tools and memory, so it can take several steps, act in the world, ground itself in fetched information and self-correct. Judge the first as a claim; judge the second as work - checking the steps and sources, not just the conclusion.

Plain call = text in, text out. Agent = the same model, wrapped in a loop with tools + memory.

Reading an agent so you can direct it

Knowing the anatomy is not trivia; it is what lets you direct an agent well and diagnose it when it fails, which it will. Almost every disappointing agent result traces back to one of the five parts, and naming the part turns a vague 'the AI is bad' into a fixable problem.

A bad goal is the commonest failure and the one entirely in your hands. If the objective is vague, contradictory, or missing a constraint that mattered, the agent will pursue the wrong thing with total confidence. The fix is upstream: state the goal, the constraints, the format you want, and what 'done' looks like - Module 2.1 is devoted to this. A missing or wrong tool shows up as an agent that talks about doing something instead of doing it, or that guesses a fact it could have looked up; the fix is to give it the right tool, or to stop asking for what it has no way to reach. Lost context shows up as an agent that forgets an instruction, contradicts an earlier step, or repeats work; the fix is to manage what stays in its memory (Module 1.3). A runaway or stalled loop shows up as an agent that spins, repeats the same failing action, or stops too early; the fix is clearer stopping conditions and checkpoints.

And running through all of it is the model's fallibility, which no amount of good wiring removes. The brain can misread, invent, and reason wrongly, so the anatomy always has a sixth part that lives outside the machine: you. The human is not a component of the agent; the human is the one who sets the goal, chooses the tools, decides what the loop is allowed to do unwatched, and - above all - judges the result and answers for it. An agent is a powerful arrangement of goal, brain, tools, memory and loop; a professional outcome is that arrangement plus a designer who directs it and verifies its work.

Carry this picture into every lesson that follows. When an agent delights you, it is these five parts working; when it fails you, it is one of these five parts - or your direction of them - that broke. Either way, you are never at the mercy of a black box. You are the operator of a machine whose parts you can name.

The parts, and what each one asks of you

The goal (your job to frame)

The objective you hand the agent

A vague goal produces confident wandering. State the objective, constraints, output format and what 'done' means. Module 2.1.

The model / brain

The reasoning engine at the centre

A language model - fluent and sometimes confidently wrong. Everything it produces is a draft to verify, never a fact to trust. Module 8.1.

Tools

How the agent acts in the world

The set of tools defines the edge of what it can do - and where real consequences live. Give the right tools; gate the risky actions. Module 1.2.

The loop

Plan, act, observe, adjust - repeated

The feature that makes it an agent. It must terminate, and it can compound early errors invisibly. Place your checks on goal-in and work-out. Module 1.4.

Hands-on workshop

Workshop — dissect one agent run into its five parts

The fastest way to make the anatomy stick is to map it onto a real (or realistic) agent run. You will take one bounded design task, describe how an agent would do it, and label every part - which is exactly the thinking that lets you direct and debug agents later.

Just a real task and a notebook - no AI tool required. This is about seeing the anatomy clearly before wiring it up.

Given & goal
Goal: see the five parts in a concrete run, and locate where you would verify
Inputs: one bounded task from a real project + this lesson + a notebook
Time: ~35 minutes
  1. 1Pick one bounded, multi-step task from a real project (e.g. 'compile and compare three precedent projects', 'draft a window schedule from this plan', 'check this layout against these three rules').
  2. 2Write the GOAL exactly as you would hand it to an agent - one sentence with the objective, the key constraints, and the output format you want.
  3. 3List the TOOLS the agent would need to actually do it (web search, file read, a calculation, a specific piece of software) - and note any it would NOT have.
  4. 4Sketch the LOOP as 4-6 plan/act/observe/adjust steps: what it plans, what tool it uses, what it might observe, how it would adjust - including one step that could plausibly go wrong.
  5. 5Mark the two or three points where the MODEL could be confidently wrong, and write the one verification you would run on the finished work before relying on it - flagging anything touching safety, code, cost or a client commitment.

You’ll walk away with
A one-page dissection of a single agent run labelled with goal, tools, memory, loop and model-risk points, plus your verification step. Keep it beside the Lesson 0.1 map - together they are the start of a real agentic workflow.

The worked example

Three altitudes on the same idea

Read the band that fits you — or all three.

For the architectAgentic tools across practice — you stay the architect of record

Knowing the anatomy is a practice skill, not a technical curiosity. When an agent misfires on a project - misses a code clause, invents a product, forgets a constraint - the five parts tell you where to look: a loose goal you must tighten, a tool it was never given, context it lost, a loop with no stopping rule, or simply the model being confidently wrong. You are the operator: you set the goal, choose the tools, decide what the loop may do without you, and remain the architect of record who verifies the output. Treat the agent as a machine whose parts you can name and control, never as an oracle to trust.

For the interior designerAgents for research, concept, docs & the studio workflow

The same five parts explain both the wins and the letdowns in studio work. An agent that pulls a beautiful, wrong specification did so because its brain is a language model (fallible), it may have lacked the tool to check a real product, or you handed it a fuzzy goal. Frame goals tightly ('from this room list, draft an FF&E schedule in this format, flag anything you could not verify'), give it the tools to ground its answers, and read the output as work to check - especially anything that becomes a cost, a commitment or a claim to a client. Understanding the loop is what turns an unpredictable helper into a directable one.

For the studentWhat AI agents are and how to work with them well

This is the mental model to lock in early: goal, brain, tools, memory, loop - and you outside, directing. It will make every later lesson easier, and it inoculates you against the two rookie errors - treating an agent like a search box (under-using it) or like an infallible expert (over-trusting it). Practise naming the parts when you use any agent: what goal did I give, what tools can it reach, what is it remembering, is the loop converging, and is the brain possibly just making this up? A student who can debug an agent by its anatomy is already ahead of most practitioners.

Misconception check

An AI agent is basically just a smarter chatbot - a better version of the same thing, so if I know how to prompt a chatbot I already know how to use an agent.

The brain is indeed a language model, so the family resemblance is real - but an agent is a different kind of thing in use. A chatbot does one transformation: text in, text out, no memory beyond the prompt, no ability to look anything up or take any action. An agent wraps that same model in tools and a loop, so it can act in the world, take many steps, ground itself in real information it fetches, and self-correct - handling goals no single prompt could. That extra power changes how you must treat it: you judge a chatbot answer as a claim, but you judge an agent's output as work, checking the steps and sources, not just the conclusion. And because the fallible model can now act on its mistakes and bury them in large, polished deliverables, an agent raises the stakes of verification rather than lowering them. Same brain, genuinely different machine - and a genuinely different discipline for using it responsibly.
Try it

Do it yourself

No tools needed - reason it through against the anatomy.

  1. 1Name the five parts of an agent in one line each, and say what each contributes.
  2. 2In your own words, what does the loop (plan-act-observe-adjust) add that a single answer cannot?
  3. 3Give the practical test for telling an agent apart from a plain LLM call.
  4. 4Why does an agent's extra power raise the stakes of verification rather than lower them?
  5. 5An agent forgot a constraint you gave it earlier and contradicted itself. Which part probably failed, and how would you fix it?
Take this with you

The one line to carry out

An AI agent is a goal handed to a model that acts as its brain, given tools to act and a memory to hold the job, wired into a loop that plans, acts, observes and adjusts - and the loop, not the model alone, is what makes it an agent; you stay outside it, setting the goal, choosing the tools and verifying the work.
Take it further
References & further reading

Peer-reviewed journals & authoritative standards

  1. 01Intelligent agentWikipedia — Intelligent agent, 2026.
  2. 02Large language modelWikipedia — Large language model, 2026.
  3. 03Software agentWikipedia — Software agent, 2026.
  4. 04Automated planning and schedulingWikipedia — Automated planning and scheduling, 2026.
Related lessons
Recap
An AI agent has five parts: a goal (the whole job you hand over), a model that serves as its brain (a fallible language model), tools that let it act in the world, memory to hold a multi-step job, and a loop - plan, act, observe, adjust - that repeats until the goal is met. That loop is what makes it an agent rather than a very good autocomplete. A plain LLM call is a single text-in, text-out transformation with no memory, no lookup and no action; an agent wraps the same model so it can act, take many steps, ground itself in fetched information and self-correct - which means you judge its output as work, not as a claim. The extra power raises, not lowers, the stakes of verification, because a fallible brain can now act on its mistakes and bury them in polished deliverables. Knowing the anatomy lets you direct an agent and diagnose it: most failures trace to a loose goal, a missing tool, lost context, a runaway loop, or the model simply being wrong. And the sixth part lives outside the machine - you, who set the goal, choose the tools, decide what the loop may do unwatched, and answer for the result.
Carry forward →

Now that we can name the parts, one part deserves a spectrum of its own: how much the loop is allowed to do without you. Next we map the levels of autonomy - from assistant to copilot to supervised agent to more autonomous system - and how to match the level to the risk of the task.

A

The author

Amogh N P

Architect, interior designer, and creative polymath. Studio Matrx began in his notebooks — his vision of design made honest, useful, and open to everyone. Its Academy is written and taught in his memory, and free, forever.

More about Amogh →