Sistava

What is Autonomous Agent?

Also called autonomous AI agent.

An autonomous agent is an AI agent that can start, continue, and finish work without a person approving every step. Autonomy is a spectrum rather than a switch, and it is usually bounded by explicit limits on which tools the agent may use, how much it may spend, and which actions require approval before they take effect.

Autonomy has two separate dimensions that are easy to conflate. The first is initiation: whether something other than a direct request can start the agent, such as a schedule, an incoming event, or another agent. The second is execution: how far the agent can proceed once running before it must pause for confirmation. A system can be highly autonomous on one dimension and tightly restricted on the other.

In practice autonomy is enforced outside the model, not inside it. The runtime holds an allowlist of tools, per-action approval rules, spending caps, and rate limits. This matters because a model can always be argued into wanting to do something it should not. Controls that live in code cannot be talked out of by clever input, so they are the layer that actually defines the boundary.

The common error is treating autonomy as a goal in itself. More autonomy raises both the value of a correct run and the cost of an incorrect one, so the right level depends on how reversible the action is. Reading data, drafting text, and preparing reports are cheap to get wrong. Sending messages, moving money, and deleting records are not, and they usually stay gated.

Autonomous agents are closely tied to the ideas of autonomy level, human review, and event-driven or scheduled triggering. Together these describe when an agent wakes, what it may do unattended, and where a person re-enters the loop. Most production deployments end up mixing them, running freely on low-risk steps and stopping at a named set of high-risk ones.

Key points

In practice

A reporting agent runs every Monday morning without anyone asking. It queries last week's sales figures, compares them to the prior week, writes a summary, and files it in a shared folder. Those steps are all reversible, so it proceeds unattended. When the same agent finds an anomaly and wants to email the finance team about it, the runtime stops and asks a person first.

Related terms

Back to the AI Glossary