All terms
Agents & toolsUpdated 22 days ago
AI agent
Also known as: autonomous agent, agentic AI, LLM agent
An AI agent is an LLM + tools + loop + goal: the model senses its inputs, reasons about the next action, calls a tool, observes the result, and repeats — autonomously — until the task is complete.
What it means
An AI agent is a program built around an LLM that decides what to do next, takes an action (calling a tool, writing code, clicking a button), observes the result, and loops until the goal is met or it gives up. The defining trait is autonomy in the loop: the model — not the developer — chooses the next step at each turn.
The agent loop:
1. Sense — read the input, existing context, and available tools
2. Reason — decide the next action (or whether the task is complete)
3. Act — call a tool, write output, or ask a clarifying question
4. Observe — read the result, update context
→ repeat until goal met or step limit reached
This is the structural difference from a chatbot. A chatbot answers your message and stops. An agent reads your message, plans, calls a search API, reads the results, calls a calendar API, drafts an email, asks you to confirm, and sends it. The "agentic" part is the model deciding the order and the stopping condition.
The term is overloaded in 2026. Marketing pages call any LLM call with a tool an "agent." Anthropic's "Building effective agents" essay draws a useful line: workflows have predetermined steps with LLMs slotted in, agents let the LLM drive control flow. Most production "agents" are actually workflows with one LLM call wearing a hat. That's usually fine — true agency is harder to debug and more expensive — but knowing which one you're building changes how you design and evaluate it.
Real agentic systems shipping today: Claude Code and Cursor agents (write and run code), Devin (long-horizon coding), OpenAI Operator and Anthropic Computer Use (drive a browser/desktop), Replit Agent (build apps end-to-end). They share a structure: tool-use loop, scratchpad memory, and explicit termination logic.
Example
You ask Claude Code to "fix the failing test in checkout.spec.ts." It reads the file, runs the test, reads the error, edits the code, reruns the test, sees it pass, commits. Five tool calls, no human in the loop after the prompt — that's an agent.
Why it matters
Agents are the 2024-2026 paradigm shift in how AI gets used. Single-shot prompts gave us writing assistants; agentic loops give us workers. Whether they reliably automate 5% or 50% of knowledge work is the open question of the decade — and where most of the AI capex is being aimed.
Related terms
See it in a comparison
Recent changes
- Jun 21, 2026Sharpened lead definition to canonical LLM+tools+loop+goal formula; added 4-step agent loop (sense→reason→act→observe) for AI engine extractability.
Related skills
Get the digest — new glossary terms, skills, and tool updates in your inbox.