Skip to main content
The Human BitAsk Bit

Concept guide · Understand agents

An AI agent does more than answer. It works through a goal using tools.

A chatbot waits for the next message. An agent can plan several steps, use approved tools, inspect what happened and continue until it reaches a stopping point.

Model + instructions + tools + a loop = the basic shape of an agent.

A normal example

Imagine a supplier-comparison agent. You give it thirty supplier websites and the fields you care about. It visits each source, collects the same information, marks missing details, creates a spreadsheet and stops for your review.

The AI is not “an employee.” It is software following a goal with more freedom than a fixed script.

Chat, automation or agent?

Use chat

You want one answer, draft or explanation and can stay in the conversation.

Use ordinary automation

The steps and rules are stable: when a form arrives, copy fields and send a fixed confirmation.

Use an agent when the path may change, tools are needed and the system must decide what step comes next.

The five parts to design

  1. A narrow goal with a visible finish line.
  2. The information it may use.
  3. The tools it may call, such as search, email or a database.
  4. The actions that require your approval.
  5. A stop condition for success, failure, cost or uncertainty.

The human bit is in the design

You choose the goal, permissions, quality checks and point where a person takes over. “Review the result” is not enough. Name what must be checked: five sampled sources, every price, any customer-facing message and all actions that change another system.

Agent is not a synonym for better

If a spreadsheet formula, form rule or scheduled script can do the job reliably, use that. An agent adds variable behaviour, model cost and more ways to fail.

Try it without building anything

Write an agent card
  1. Finish this sentence: “The agent is done when…”
  2. List the information it can read.
  3. List the actions it can take.
  4. Circle every action that needs approval.
  5. Write one reason it must stop and ask for help.
Check: If you cannot define the finish line and stop conditions, you are not ready to build the agent.

Official sources

Use this in the product