Agentic AI

What AI Agents Actually Change In Operations

A Workflow Against An Agent

A Workflow

  • You decide the steps
  • It follows them in order
  • Same route every time

You Choose The Route

An Agent

  • It decides the steps
  • The order changes as it goes
  • A different route each time

It Chooses The Route

Anthropic's distinction, quoted on this page. A workflow runs through steps someone wrote down. An agent picks its own next move.

By Graham O'Shea, Founder and Lead Developer  ·  1 August 2026

An AI agent for business operations is software that chooses its own next step. It reads the context, picks a tool, acts, then checks what came back. That is the break from ordinary automation, which follows a path you drew in advance.

A lot of operations work does not need one. Anthropic's engineering guidance is to find the simplest solution possible and only add complexity when needed, which it says may mean not building an agentic system at all. Agents earn their keep on work where the next step genuinely depends on the last result.

This page sets out where that line sits, and what it costs to cross it.

When Should You Use An AI Agent?

The working test I use is this. Reach for an agent when the path cannot be drawn in advance. Use a scripted workflow when it can.

That is my rule of thumb, not a standard. It is worth stating plainly because most of the rest is detail about how to build the thing once you have answered it.

Anthropic's engineering team draws the same line in plainer terms. Workflows are systems where models and tools are orchestrated through predefined code paths. Agents are systems where models dynamically direct their own processes and tool usage, keeping control over how they finish the task.

The advice attached to that distinction is worth more than the distinction itself. Anthropic recommends finding the simplest solution possible, and only increasing complexity when needed. It adds that this might mean not building agentic systems at all.

Agents And Workflows Are Not The Same Purchase

The two look alike in a demo. They diverge the moment something goes wrong.

A scripted workflow tends to fail at a step you can name. You read the log, see which call returned a 500, and fix that call. In my experience that makes the fault easier to locate, though a bad step can still cause damage downstream.

An agent can fail by choosing badly. It picks the wrong tool, gets a plausible but wrong result, and carries on. Anthropic names this risk directly, warning that agents carry higher costs and the potential for compounding errors.

There is a price attached too. Anthropic states that agentic systems often trade latency and cost for better task performance, and that you should consider when that trade makes sense.

For a lot of back office work, my view is that it does not. As a rough sort, I would treat invoice routing across four known suppliers as a workflow, and triaging an inbox where the sender decides what arrives as closer to an agent.

Diagram comparing a fixed four step workflow with an agent loop that selects its own next action

Where The Money Actually Goes

Not on the model. Rarely on the prompt.

On the builds I have worked on, it goes on the parts nobody demos. What happens when a tool times out. Which systems the agent may write to, as opposed to read. How you reconstruct what it did three weeks later when someone asks. Which actions stop and wait for a person.

AWS groups its own agentic offering into five categories: agent powered applications, frontier agents, tools to build AI agents, models, and agentic infrastructure. Three of those five are the model, the tooling and the infrastructure underneath it.

My own view, from building these, is that the order is the wrong way round for most buyers. The model is the easy part to swap. The connections and the governance are where the build time goes.

What Human Oversight Really Means

"Human in the loop" is used loosely enough to mean nothing. It should mean a named action that stops and waits.

Anthropic's guidance is specific. It recommends extensive testing in sandboxed environments with appropriate guardrails, and says human review remains crucial even when automated testing confirms the thing works. It also describes agents that pause for human feedback at checkpoints, or when they hit a blocker.

The practical version I use is a short list. Write down every action the agent can take. Mark the ones that move money, contact a customer, or delete anything. Those are the checkpoint candidates. Everything else is a candidate for running unattended, once you have tested it.

On the projects I have worked on, this list is usually written after the first bad email goes out rather than before.

Three Questions Before You Build An Agent

Three questions, in the order most people hit them. Which steps deserve automation at all, whether to build the thing or buy it, and how to make an agent survive contact with real use.

All three are written up. Which Steps Actually Deserve Automating covers the first, working from the five patterns Anthropic names and the situation each one suits. What Changes When An Agent Leaves The Demo covers the third, on the tool interface, stopping conditions, guardrails and where a person signs off.

The second is not an AI question, so it does not live here. How To Decide Whether To Build Or Buy sits in The Development Guide, because Fowler's differentiator test and the integration line most comparisons leave off apply to any custom software decision, not only to an agent.

Diagram of the decision sequence from automation choice to production readiness

Signs Your Business Needs An AI Agent

Four signals, drawn from the projects I have worked on. The more of them you recognise, the more likely an agent is the right shape.

  1. A person reads something, decides, then types the decision into another system. That is the shape agents fit.
  2. Your existing automation breaks whenever the input format changes slightly. Rules cannot cover the variation.
  3. The same judgement gets made over and over, and the rule for it has never been written down.
  4. You have a process nobody will document because the exceptions outnumber the norms.

One signal on its own usually points at a simpler fix. If your only problem is that step four is manual, script step four.

If you are unsure which side of the line you are on, that is exactly what The Free Scoping Audit is for. The wider build capability sits under Agentic AI and What We Build.

Common Questions About AI Agents

What Is An AI Agent For Business Operations?

Software that decides its own next step rather than following a fixed path. It reads context, selects a tool, acts, then checks the result before continuing. That is Anthropic's description of the loop. The useful distinction is control: an agent directs its own process, a workflow follows yours.

How Is An Agent Different From Workflow Automation?

Anthropic defines workflows as models and tools orchestrated through predefined code paths, and agents as models dynamically directing their own processes and tool usage. In practice, a workflow fails at a step you can point at. An agent fails by choosing badly, which is harder to spot and harder to unwind.

Do AI Agents Replace Operations Staff?

Not in the way the question implies. The pattern I build to is to automate the typing and the routing, and leave judgement where a person signs off. Anthropic describes agents that pause for human feedback at checkpoints or when they hit a blocker. Treat that checkpoint as a design decision, not a limitation.

What Does An Agent Cost To Run?

Usually more than a script, and the gap is not only the model bill. Anthropic states that agentic systems often trade latency and cost for better task performance. Add the engineering for retries, access control and logging. Cheap to demo, and considerably more work to operate safely.

When Should I Not Build One?

When the path can be drawn in advance. Anthropic recommends the simplest solution possible and only adding complexity when needed, which may mean not building an agentic system at all. If your process has four known inputs and one known route, a scripted workflow will be cheaper, faster and easier to fix.

Start With One Process

If you are weighing an agent against a simpler fix, the free scoping audit is the cheapest way to settle it.

Send over one process you are thinking of automating. The scoping audit is deliberately a light first step and it costs nothing. Where the answer is that a deeper look at the whole workflow is warranted, that is a separate chargeable piece of work, and I will say so rather than widen the scope quietly.

There is a redacted sample on The Audits Section, if you want to see the deliverable before asking for one.

Request The Free Scoping Audit