This site is still being prepared. Orders are not processed yet and nothing is charged.
← Back to overview
Module 1 · From tool to assistant

What is an AI agent?

🕑 3 min read
Goal of this lesson: You understand what an agent is and how it differs from an ordinary app or a loose chat.

In 101 you built your first app. In 201 you turned it into a real tool: one that remembers data, recognises users and talks to a database. Impressive work. But in everything that tool does so far, you're still at the wheel. You click, you fill in, you start every step.

In this course we go beyond that step. We move from a tool that waits for you to software that gets to work by itself: an AI agent.

Before you build anything, it's important that you understand exactly what makes an agent different. That's what this lesson is about.

Three kinds of help, one big difference

The difference isn't in how clever the software seems, but in how much it does by itself. Compare these three:

  • An ordinary app waits for you and does exactly one thing when you click. Your calculator from 101 adds up the moment you press the button, and not a second sooner.
  • A chat with Claude gives answers and thinks along, but carries nothing out. You ask how to sort invoices, and you get a fine explanation back. You still do the sorting yourself afterwards.
  • An agent is given a goal and works towards that goal by itself. It decides which steps are needed, uses tools, and keeps going until the task is done.

The recipe book and the cook

Picture a dinner. A recipe book tells you step by step what to do, but no meal appears on the table unless you go and chop and cook yourself. That's a chat: it knows everything, but carries nothing out.

A cook is only given the instruction 'make a dinner for four'. They decide themselves what to make, grab the pans themselves, taste along the way and adjust, and finally put a plate in front of you. That's an agent: you give a goal, not a list of clicks.

So an agent can take multiple steps in a row, make decisions along the way, and use tools (for example open a file or draft an email) without you steering each step separately.

Remember this: A chat tells you what to do; an agent does it itself. The key word is goal: you give an agent a goal, not a single click.
Try it yourself
  1. Think of something you did at work this week in several small steps in a row (for example: open a file, retype data, save, email).
  2. Write down in one sentence what the end goal of that task was.
  3. Underneath, write in keywords the loose steps you took to get there.
  4. Ask yourself: did you do each step yourself, or did something take over along the way? Keep this, you'll use it in lesson 1.2.
Check yourself
  • What is the most important difference between a chat with Claude and an AI agent?
  • Why do we say you give an agent a goal and not a click?
  • Which task from the past week could you describe as a series of steps towards one end goal?