Foundations

What is agentic AI?

What separates agentic AI from the generative tools that preceded it — the loop, the parts it is built from, and the moment it becomes an operational responsibility.

The clearest way to understand agentic AI is to follow a model's output and see where it lands. In a generative tool, the output lands in front of a person — a draft, an image, a block of code — and that person decides what happens next. In an agentic system, the output lands on your systems: it becomes a tool call, an API write, a decision the software executes and then builds on. Agentic AI is not a different kind of model. It is a different relationship between the model and consequence.

That relationship has a shape, and the shape is a loop. The system takes a goal, plans a step, acts through a tool it has been given, observes what happened, and decides what to do next — again and again until the goal is met or an exit condition stops it. Each pass through the loop is small; the behaviour that emerges across passes is what people mean when they call these systems autonomous. The autonomy is real but bounded: an agent can only act through the tools it holds, which is why the tool list — not the prompt — is the true description of what an agentic system can do.

What an agentic system is made of

Strip any agentic system to its frame and you find the same four parts. A model does the reasoning — proposing the next step given the goal and what has happened so far. Tools are the hands: named, scoped capabilities the system may invoke, from reading a database to filing a ticket, increasingly exposed through standard interfaces like the Model Context Protocol. State carries the task between steps — what has been tried, what came back, what remains. And an orchestration layer runs the loop itself: sequencing steps, enforcing budgets and step limits, deciding when the run is over. Frameworks such as LangGraph, CrewAI, and the model providers' own SDKs are competing implementations of this same frame; choosing between them matters less than understanding that the frame is what you are operating.

The same frame explains the terms that orbit this one. A coding assistant that suggests lines as you type is generative; the moment it can open a pull request on its own, it has crossed into agentic — the full contrast is laid out in agentic AI vs generative AI. "AI agent" and "agentic AI" are used near-interchangeably; where a distinction is drawn, *agent* names the running system and *agentic* describes the loop-driven quality of its behaviour. Nothing operational hangs on the vocabulary. A great deal hangs on what the system can write to.

Where the loop earns its keep

Agentic systems are worth their complexity where work is made of many small, judgment-laden steps that follow a recognisable pattern: working a support ticket from triage to resolution, taking a bug report to an opened pull request, assembling a research brief from a dozen sources, reconciling records across systems that almost agree. In each case the loop replaces not one human action but a sequence of them — which is exactly why the failure mode differs from generative AI's. A generative tool that is wrong produces a bad draft, and a person catches it. An agentic system that is wrong *acts* on the error, then takes the next step on top of it. Mistakes compound at machine speed, and they compound in your systems rather than in a document.

None of this is an argument against the loop. It is the reason the loop arrives with obligations attached.

The moment it becomes your problem

An agentic system in production is, operationally, a new kind of actor inside your organisation — one that holds credentials, touches systems of record, and works faster than the people who would notice it misbehaving. Getting ready for that actor is concrete work, and most of it exists before the first agent ships: giving each agent an identity of its own rather than a borrowed token, scoping its permissions to the task, keeping an audit trail that can answer *what did it do and why*, evaluating it against known-good tasks before widening its autonomy, and holding the consequential writes behind human approval until the evidence says otherwise — the full walkthrough is how to secure the AI agents you run, and deciding who may approve, widen, and retire agents is its own discipline: how to govern agentic AI. Teams that skip this work do not avoid it; they meet it later as shadow agents — systems with production access and side-project oversight, discovered during the incident that makes them visible.

Where to go from here

If you are about to build, How to build an agentic AI system you can put in production walks the path from task selection to handover, controls included. If agents are already running around you — sanctioned or otherwise — start by inventorying what exists. And to place your organisation on the readiness journey as a whole, the agent maturity curve describes the five stages organisations actually move through, with an assessment that tells you which one you are standing in.

The explainer pages on agentic AI design patterns and agentic AI orchestration go deeper on the building blocks.

Frequently asked questions

What is the difference between agentic AI and generative AI?

Generative AI produces content for a person to review — a draft, an image, code — and the person decides what happens next. Agentic AI acts: its output becomes a tool call or a write to your systems that the software executes and then builds on. Same models, different relationship to consequence.

What are the core components of an agentic AI system?

Four parts: a model that reasons and plans the next step, tools that let it act, state that carries the task between steps, and an orchestration layer that runs the loop and enforces limits. The tool list — not the prompt — is the true description of what an agentic system can do.

Is agentic AI the same as an AI agent?

The terms are used near-interchangeably. Where a distinction is drawn, "agent" names the running system and "agentic" describes the loop-driven, goal-pursuing quality of its behaviour. Nothing operational hangs on the vocabulary; what matters is what the system can write to.

What are common use cases for agentic AI?

Work made of many small, judgment-laden steps that follow a pattern: resolving a support ticket end to end, turning a bug report into a pull request, assembling a research brief from many sources, or reconciling records across systems. The loop replaces a sequence of human actions, not just one.

What are the risks of agentic AI in production?

An agent that is wrong acts on the error and then builds the next step on top of it, so mistakes compound at machine speed inside your systems. It also becomes a new actor holding credentials, which is why identity, scoped permissions, audit trails, evaluation, and human approval for consequential writes matter before you ship.

Is your organisation ready for AI agents?

Take the assessment →