WZ VaultWriting

What is an AI coding agent, and how is it different?

An agent reads, edits and runs files by itself; a chat window hands you code to paste. That difference decides cost, capability and risk.

Wessel van Zandvoort · updated 2026-09-23 · 5 min read

On this page

An AI coding agent is a program that reads, edits and runs files in your project by itself. A chat assistant hands you code to paste; an agent makes the change, runs it, reads the error and tries again. That loop is the whole difference, and it decides what you can build, what it costs and where it goes wrong.

How is an agent different from a chat window?

Put them side by side on the same task — "the login page breaks on mobile".

Chat assistantCoding agent
What it seesonly what you pastethe project
What it producestext for you to copychanges to files
Can it check its worknoyes, by running it
Who finds the relevant fileyouit does
Who notices it broke something elseyou, latersometimes it does, first

The practical effect is not that the agent writes better code. On a single snippet, the quality is roughly the same — it is the same model underneath. The effect is that the ten steps around the code disappear: finding the file, understanding the surrounding code, making a matching change in three places, running the build, reading the error.

That is where the hours were. It is also why people who try an agent after a year of chat assistants describe it as a different category rather than a better version.

What can an agent do that a chat window cannot?

Four things, and each one is a different kind of work:

What does it need access to?

More than people expect, and this is worth thinking about once rather than never.

An agent needs to read your project, write to it, and run commands. That means the same access you have: your source code, your configuration, and anything a command it runs can reach. If your project holds secrets in a file, the agent can read them. If a command can deploy to production, the agent can run it.

None of that is an argument against using one. It is an argument for three habits:

  1. Everything in version control (GitHub is free), so any change can be undone with one command.
  2. Secrets in environment variables, never in the code.
  3. Read the diff before you accept it. Not every line forever — but especially at the start, and always for anything touching payments, authentication or data.

The whole list

68 tools, what each costs and when you actually need it. Updated twice a year.

See the list

Where do agents go wrong?

Three failure modes account for most of it, and all three are measured rather than anecdotal.

The short version: generated code runs far more reliably than it is correct. It invents software libraries that do not exist, and it invents the same names repeatedly, which is a supply-chain problem rather than a typo. And it will follow instructions it finds inside files it reads, because it cannot reliably tell your instruction from text that is shaped like one.

I have written those up with the numbers and the sources in what AI coding agents get wrong, measured. If you plan to put anything an agent wrote in front of real users, read that one next.

Do you need a terminal?

No, but it splits the tools into two families that suit different people.

Terminal agentsClaude Code is the one I use — run alongside your project. Most capable, least hand-holding, and they assume you are comfortable with a command line.

Editor agentsCursor — put the same capability inside a code editor. Gentler, and still expects you to be reading code.

Browser buildersLovable, Bolt, v0, Replit, Base44, Emergent — take a description and produce a working app in a browser tab. No installation, no terminal. They are not the same category: they are excellent at getting to something that works and much weaker once you need a specific change in a specific place.

There is a full side-by-side of the first two in Claude Code vs Cursor vs chat, and of the builders in which AI app builder.

What does it cost?

ToolPrice
Claude Code~€17–20/mo
Cursor~€20/mo
Claude (chat only)~€20/mo
Browser buildersfree tier, then ~$20–25/mo

One subscription is enough. The most common mistake is paying for an agent, an editor agent and two chat subscriptions at once — about €80 a month for four ways to ask the same question. There is more on that in what AI tools actually cost per month.

Should you start with an agent or a builder?

Honest answer: it depends on whether you can read code.

If you can read code but write it slowly, start with an agent. That is the largest single gain available to you right now, and it arrives in the first afternoon.

If you cannot read code at all, start with a browser builder. Not because agents are too hard to operate — they are not — but because you cannot supervise what you cannot read, and an unsupervised agent is how people end up publishing something with a security hole they never saw. Build two or three small things in a builder, learn to read what it produced, then move.

If you are not building software at all and came here to find out what the term means: an agent is only worth it if you have a project. Without one, a chat subscription does everything you need.

Where the word "agent" gets stretched

Worth knowing, because the label is on a lot of things now. Broadly it means software that takes a goal, decides its own steps, and acts — rather than answering one question at a time. Coding agents are the version where the actions are file edits and commands.

You will also see the word on tools that automate work outside code — MuleRun and Creao sit in that space. Same idea, different actions. If a product calls itself an agent, the useful question is always: what is it allowed to do, and who checks it afterwards?

Claude Code Operator

Build and sell software with an AI agent. €20, PDF, instant download.

Read it

Tools in this piece

ToolWhat it doesPrice
Claude CodeAn AI agent in your terminal that reads your files, edits them, runs commands and deploys.~€17–20/mo
CursorA code editor with AI. The step between browser builder and terminal.~$20/mo
ClaudeThe assistant itself. Strong on long text, code, and following instructions exactly.~€20/mo
LovableBuilds complete apps from a prompt. The most finished output of the group.Free tier, then ~$25/mo
BoltFast full-stack prototypes, entirely in the browser.Free tier, Pro ~$25/mo
v0Strong on how individual screens look; now full apps too.Free tier, then ~$20/mo
ReplitBuilding and hosting in one place, agent included.Free tier, Core ~$20/mo
Base44The most guided, genuinely no-code experience of the group.~$20/mo
EmergentAI that builds and iterates on working software rather than snippets.Free tier, then ~$20/mo
GitHubVersion control. Your restore point when an hour of building goes wrong.Free
SupabaseDatabase, accounts and file storage in one, with no backend work.Free tier
VercelHosting. Puts a project live on a real address with one command.Free tier

Every tool has its own page with the price, who should skip it and what to check before paying. Some links are affiliate links.

Questions people ask

What is an AI coding agent?

A program that reads, edits and runs files in your project on its own. You describe a change; it finds the relevant files, makes the edit, runs the tests or the build, reads the error it gets back, and tries again. A chat assistant produces text you paste yourself — the agent closes that loop.

How is an AI coding agent different from ChatGPT?

A chat assistant sees only what you paste and hands back text. An agent has access to the project and to a terminal, so it can look things up, change several files at once, and check its own work by running it. That access is what makes it useful and what makes it risky.

Do you need to know how to code to use an AI coding agent?

You do not need to write code, but you need to be able to read it and to tell working from plausible. Without that, you cannot judge what it produced. People who cannot read code are usually better served by a browser-based builder until they can.

What does an AI coding agent cost?

Around €17-20 a month for a subscription-based agent like Claude Code, or roughly €20 for an editor-based one like Cursor. Some tools charge per usage instead, which is cheaper for occasional work and unpredictable for daily work.

Is an AI coding agent safe to let loose on a project?

Only with limits. Keep your work in version control so any change can be undone, give it a clearly bounded task rather than a vague one, and read what it changed before you trust it. The common failures are well documented and mostly preventable.

Who wrote this. I build software with AI agents, publish video about it, and sell eight playbooks on making money with these tools. Everything here comes from work I have actually done or from the worked examples in those books — and I say which one it is.

Some links are affiliate links: if you sign up through one I may earn a commission, at no extra cost to you. It never decides what is on the list or how it is ranked. Figures here come from the worked examples in the playbooks and from current market rates — they are arithmetic, not a promise.

Keep reading

What is vibe coding, and where does it leak?Bubble alternatives: describe it, or build itWhat is MCP, and do you actually need it?All 68 tools →