Skip to content

The operating model

Agentic AI, explained.

Agentic AI is software that pursues a goal rather than following a script. It decides its own next step, uses tools to act on real systems, and keeps going until the task is done or it needs a person. This guide explains what that means in practice for an Australian business, how agent teams are structured, and how to tell a production system from a demonstration.

A goal, tools, guardrails, memory and evaluation. Only one of those is the model
Autonomy is a dial, set per action, earned on evidence
Built on frontier models, primarily Anthropic Claude

Key facts

Agentic AI
Software that pursues a goal rather than following a script: it decides its own next step, uses tools to act on real systems, and escalates to a person when it is unsure.
Agent vs workflow
A workflow follows a path someone drew in advance; an agent is handed the outcome and works out the route itself.
Where autonomy belongs
Reading, matching, drafting and routing. Consequential actions stay behind human approval gates, with an audit trail behind every run.
What ASCENTI builds
Agent teams and workflow automation designed around a business's existing systems, built by an Australian AI consultancy based in Helensvale on the Gold Coast.
Typical timeline
Discovery in days to a couple of weeks; where a build follows, commonly four to twelve weeks to production depending on scope and the systems it touches.

What agentic AI actually means

The word 'agent' has been applied to enough different things in the last two years to lose most of its meaning. Here is the definition worth holding: an AI agent is a system given a goal, a set of tools it may use, and permission to decide for itself which tool to reach for next, repeatedly, until it has finished or hit a boundary.

That is the whole distinction. A chatbot produces text. A workflow follows a path someone drew in advance. An agent is handed an outcome and works out the route.

A workflow follows a path you drew; an agent works out the path itself.

Consider a supplier invoice arriving that does not match its purchase order. A workflow routes it to an exceptions queue, because that was the path drawn for it. An agent can pull the original PO, check the delivery docket, find the partial delivery that explains the variance, check whether your policy tolerates that variance, and either resolve it or escalate with the explanation already written. Nobody drew that path in advance; it worked it out from the specifics.

The five parts of an agent

The model supplies judgement. Everything else is engineering, and the engineering decides whether the result is trustworthy.

The goal
What 'done' means, stated precisely enough to be checkable. Vague goals produce agents that stop too early, run too long, or optimise for something nobody wanted.
Tools
The specific scoped actions the agent may take: read this mailbox, query this table, draft this record, send this notification. Not system access. Each tool is a defined door with its own lock.
Memory
What the agent carries between steps and between runs. Also, and just as importantly, what it must forget: an agent that retains one client's details into another client's task is a privacy incident waiting for its moment.
Guardrails
The boundaries it cannot cross. Spend limits, data it may not read, actions that require sign-off, conditions that force an escalation. Enforced in code, outside the model, never asked for politely in a prompt.
Evaluation
A test set of real cases with known-good outcomes, run whenever the agent, the prompt or the underlying model changes. This is the difference between a system you can maintain and one you can only hope about.

Notice that only one of these is the AI. When a vendor says 'we use agents', the useful follow-up questions are all about the other four: which tools, what boundaries, what memory, and how do you know it still works.

Why agents work in teams

The instinct is to build one capable agent that handles everything. It degrades in a predictable way. Its instructions grow with every capability added. Its context fills with material irrelevant to the task at hand. Its tool list becomes broad enough that a mistake can reach anything. And its behaviour becomes progressively harder to reason about, right at the point where you most need to.

So agentic systems are structured the way a business structures a function: a coordinator and a set of specialists with narrow remits and narrow permissions.

The orchestrator

Takes the request, decides what needs doing, splits it across specialists, manages hand-offs and assembles the result. Like an operations manager, it does little of the work itself.

Research agents

Find relevant material across approved documents, systems and sources. Read-only by design, which makes them the safest agents in the system.

Analysis agents

Turn raw material into comparisons, summaries and recommendations. Also read-only. Judgement without the ability to act on it.

Drafting agents

Produce the email, the report, the response or the record. They generate text; they do not send it anywhere.

Action agents

The only agents that write to real systems, holding the narrowest permissions in the team and running under the tightest guardrails.

Quality agents

Check the others' output against your rules: coverage, accuracy, policy, consistency. A second pair of eyes that never gets tired at 5pm on a Friday.

The structure is not organisational theatre. Narrow scope makes each agent more accurate and cheaper to run, and it means a failure localises to one specialist rather than to one enormous prompt nobody can debug. Separating the agents that can act from the agents that can only read is the single most useful security decision in an agentic design.

How much autonomy to give it

The public debate treats autonomy as a philosophical position. In a real system it is a setting, chosen per action, on evidence.

Suggest only

The agent does the work and proposes the result; a person executes. Every agent should start here, and some should stay here permanently. That is a legitimate design outcome, not a failure of nerve.

Act with approval

The agent completes the task and holds it at a gate. The human decision shrinks from 'do this work' to 'yes or no'. This is where most of the time saving actually comes from, and it is the level most production systems settle at.

Act within bounds

The agent proceeds unsupervised inside limits you set (under a dollar value, within a policy, on a document type with a proven accuracy record) and escalates anything outside them.

The level can differ per action inside a single agent. Drafting a routine reply might run unsupervised while issuing a credit note always stops at a gate. Deciding which actions sit where is a business decision, and it should be made by the person who carries the consequence of getting it wrong.

The rule we design to

Autonomy is earned on evidence. Start at suggest-only, watch the evaluation results and the exception queue, and move the dial on the specific actions where the record supports it. Anything that commits money, makes a promise to a customer or notifies a regulator keeps its gate regardless of how good the numbers look.

What goes wrong, and what to do about it

Agentic systems fail in characteristic ways. None of them are mysterious, and all of them have known mitigations, but only if the mitigation is designed in rather than added after the incident.

Confident error

What it looks like
A wrong answer delivered with complete assurance
The mitigation
Confidence thresholds, quality agents, human gates on consequential actions

Scope creep

What it looks like
The agent does more than was asked, helpfully
The mitigation
Explicit stopping conditions and a tool set that has no door to the extra work

Silent drift

What it looks like
Accuracy degrades over weeks as inputs or the model shift
The mitigation
An evaluation suite run on a schedule and on every change

Runaway cost

What it looks like
A loop that keeps reasoning, or a job that fans out further than expected
The mitigation
Step limits, budget caps per run, cost monitoring with alerts

Prompt injection

What it looks like
Instructions hidden in a document the agent reads, redirecting it
The mitigation
Treat all retrieved content as untrusted, keep privileges minimal, gate every write

Context contamination

What it looks like
Material from one task leaking into another
The mitigation
Scoped memory, per-task isolation, explicit clearing between runs

Prompt injection deserves particular attention because it is specific to this class of system and widely underestimated. If an agent reads an incoming email and that email contains text instructing it to forward the mailbox contents, a naively built agent may comply. It cannot reliably distinguish your instructions from instructions embedded in data it was asked to read. The defence is architectural: content the agent reads is never treated as instruction, and any action with consequence passes a gate that does not.

How to tell a production system from a demo

Six questions. The answers separate the two reliably.

  1. What exactly can it do to our systems, and what can it not? A vendor who cannot list the tools has not scoped them.
  2. What happens when it is unsure? 'It is very accurate' is not an answer. 'Below this threshold it stops and escalates with context' is.
  3. Show me the log of a real run. Production systems have structured logs. Demonstrations have a chat transcript.
  4. How do you know it still works after a model update? If the answer is not an evaluation suite, the answer is that they find out from you.
  5. Which actions require human approval, and who configured that? If the vendor chose, rather than the client, the design has the wrong person carrying the risk.
  6. What does one run cost? A team that has not measured this has not run it at volume.

None of these questions require technical knowledge to ask, and the quality of the answers is usually obvious within a minute. A team that has shipped one of these will answer all six comfortably. A team that has only demonstrated one will reach for adjectives.

Where an agentic project should start

Not with the most impressive process. Start with one that has three properties: it happens often enough that a saving compounds, it currently consumes senior time on work that is not senior, and getting it wrong is recoverable.

That last one is the constraint people resist and should not. The first agentic system in a business is also the mechanism by which the organisation learns what these systems do well and badly. That education is much cheaper on a process where an error means a rework than one where it means a regulatory breach.

Once one is running, the second is dramatically easier. The integration work is done, the governance conversation has happened, and the team has a real sense of where the gates belong.

Frequently asked questions

What is agentic AI in simple terms?

Software that is given a goal rather than a set of instructions. It decides its own next step, uses tools to act on real systems, and keeps going until the task is finished or it hits a boundary you set. A chatbot answers questions; an agent completes work.

What is the difference between agentic AI and automation?

Automation follows a path someone drew in advance and is completely predictable. An agent works out the path from the specifics of the case, which makes it far better at variable inputs and harder to make predictable. Most good systems use both: deterministic automation for the spine of the process, agents at the two or three points where genuine interpretation is needed.

Are AI agents safe to use in a business?

They are as safe as their tool scope, guardrails and approval design make them. An agent with read-only access to one mailbox carries almost no risk. An agent with write access to your finance system and no gates is a serious one. The safety is in the engineering around the model, not in the model.

Do AI agents replace employees?

In the work we do they remove the administrative layer around jobs (re-keying, chasing, document assembly, status reporting) rather than the jobs themselves. The realistic outcome is a team handling materially more volume while spending its time on the parts that need a person.

How much does an agentic AI system cost to run?

Running cost is model usage plus hosting, and it scales with volume rather than headcount. The per-run economics should be measured during design, before you commit to a build, and the workflow should be structured so the expensive reasoning only happens at the steps that require it.

Which AI models are used for agents?

We are not locked to one model. Anthropic's Claude is the usual default, accessed through enterprise rather than consumer platforms, with OpenAI's GPT models, xAI's Grok and open-source models used where they are the better fit for a specific task, or where hosting the model yourself is the right answer. Systems should be designed so the model layer is replaceable. Capability, price and availability in this field have moved substantially every year it has existed.

More questions answered on the full FAQ.

Read next

See it mapped to one of your processes.

Bring a process that varies too much for a flowchart. We'll sketch what the agents would be, where the gates belong, and whether it's worth building.

Book a discovery callSend an enquiry

Gold Coast · Brisbane · Australia-wide

Book a discovery call