Foundations · The shift

What an AI agent actually is

A chatbot answers. An agent acts. The difference is not a smarter model, it is what the model is given: tools that touch real software, memory that survives the session, and permission to pursue a goal without step-by-step supervision. This page is the conceptual foundation behind slides 2, 3 and 6.

The chatbot and the agent

A chatbot is a conversation. You ask, it answers, and the exchange ends there. If the answer implies work, the work is still yours: open the spreadsheet, send the email, chase the supplier. An agent takes the goal instead of the question, and keeps going after you stop typing.

Chatbot Agent
Waits for the next prompt Works towards a goal between prompts
Forgets when the window closes Remembers you, your projects and past sessions
Describes what you should do Does it: opens the file, runs the task, sends the update
The one-line definition An agent is a model given tools, memory and permission to pursue a goal on your behalf, checking its own work as it goes.

The six shifts that made it real

None of this is a single breakthrough. Six changes landed close together, and each removed a reason agents used to fail.

The loop

Under the hood, every agent runs a version of the same cycle. It takes a goal, drafts a plan, picks the tools the plan needs, acts, checks the result against the goal, and remembers what it learned. Then it loops: if the check fails, it revises the plan and tries again, without waiting for a human to notice.

For an executive, the useful mental model is a capable junior with a to-do list, not an oracle. It is diligent, fast and tireless. It is also literal: it will pursue the goal you actually gave it, not the one you meant.

The double edge The same autonomy that finishes the job unattended also makes mistakes at speed. An agent that can send fifty emails overnight can send fifty wrong ones. This is why the loop matters as much as the model, and why the later pages on governance exist.

How big is this already?

One marker of scale: OpenRouter, a routing layer that serves many models, reports on its official blog that machine-originated agentic traffic passed human traffic on its platform around 1 February 2026, at roughly 15 times the tokens per request. Software talking to software is now the majority of what these models do there.

29
Channels OpenClaw answers on (openclaw.ai)
15×
Tokens per request, agentic vs human traffic (OpenRouter)
$0.14
DeepSeek v4 Flash, per million input tokens
1 Feb 2026
Agentic traffic passes human on OpenRouter

Sources

Source Supports Link
OpenClaw official site Tool use, 29 channels, platforms, local state quote openclaw.ai
Hermes Agent official docs MEMORY.md and USER.md memory files, SQLite recall, self-improvement loop github.com/NousResearch/hermes-agent
OpenAI pricing docs GPT-5.6 Sol at $5.00 and $30.00 per million tokens developers.openai.com/api/docs/pricing
DeepSeek pricing docs DeepSeek v4 Flash at $0.14 and $0.28 per million tokens api-docs.deepseek.com/quick_start/pricing
OpenRouter official blog Agentic traffic crossover, tokens per request openrouter.ai/blog/insights/deepseek-v4-adoption

BASIC · Agentic AI Workshop · aiagent.research.my