Ravi Rali Enterprise AI & Data

Perspectives

Defining autonomy boundaries for AI agents

Agentic systems carry a different risk profile from static models because they write as well as read. The design question is what an agent may do without supervision.

Enterprise AI Architect · Director, AI & Data Management Point of view

The requirement this answers

“Architect agentic AI solutions with appropriate guardrails and human oversight”

Define, per workflow, what the agent does unattended, what requires approval, and what stays manual.

Three tiers of authority

For every agentic workflow I document three lists. Unattended: retries, schema re-inference, enrichment, and classification proposals. Requires approval: any logic change, any policy change, and anything that alters a published number. Never automated: deletion, policy override, access grants, and anything irreversible without a recovery path.

This is straightforward to produce, and it is the difference between an agent program that survives its first incident and one that does not.

Earning autonomy

Every agent starts in propose-only mode and moves to bounded auto-apply after a clean proposal record over a meaningful sample, against a documented threshold. Confidence thresholds are risk-tiered. The bar for merging two records in a marketing database differs from the bar for merging them in a regulated safety database.

Logging, oversight, and audit capability go in before agents touch production systems.

Where agents contribute most

Multi-step transactional work that requires tool-calling and write access. Autonomous incident response, where the agent detects a failure, correlates across lineage, forms a hypothesis, validates a fix in a sandbox, and presents it for approval. Legacy logic archaeology, parsing old ETL metadata to recover undocumented business rules. In each case the constraint was analysis and verification rather than authoring.

How I apply it

  • Document the autonomy boundary per pipeline before the agent is built
  • Run propose-only first and graduate on evidence against a documented threshold
  • Give every agent an audit trail a compliance officer can read
  • Keep people on the loop for policy and edge cases, and off the loop for routine work

What good looks like

  • The autonomy matrix can be produced for any agent in production
  • Steward queues shrink over time as the system learns
  • Incidents produce retrievable context as well as resolved tickets
  • Agent behavior matches what the team expects