All articles
  • AI agents
  • agentic AI
  • security architecture
  • human approval
  • governance

AI Agents Need an Authority Ladder

Give an agent more authority only when the use case has earned stronger identity, evaluation, approval, audit, and recovery controls.

Jason Cochran

3 min read
Two reviewers examining a four-stage AI authority workflow that keeps execution behind a human approval checkpoint.

AI agents are often described by capability: which models they use, how many tools they can call, and whether they can plan across multiple steps.

Enterprise architecture needs a second description: what authority do they have?

An agent that summarizes approved documents and one that can change production configuration are not variations of the same risk. The system should make that difference structural.

Separate four levels of authority

I use a simple ladder: read, recommend, prepare, execute.

Authority ladder

Decision framework

Increase agent authority one rung at a time

Separate what an AI system may recommend from what it may change, then require stronger evidence at every rung.

  1. 01

    Read

    Retrieve approved information with source, tenant, and sensitivity boundaries.

  2. 02

    Recommend

    Draft an answer or proposed action while a person owns the decision.

  3. 03

    Prepare

    Create a reversible change for explicit human review and approval.

  4. 04

    Execute

    Act only inside narrow policy, budget, identity, audit, and recovery controls.

Controls grow by rung

  • Stronger identity and authorization
  • Broader evaluation and monitoring
  • Tighter budgets, approval, and recovery

Stop escalation when

  • The action is irreversible
  • The reviewer lacks context
  • Failure cannot be bounded or reconciled
Working principleHuman approval is meaningful only when the reviewer has context, time, authority, and a clear view of what will happen.

Read retrieves approved information without durable side effects. Recommend interprets evidence and proposes a decision. Prepare creates a specific, reversible change for review. Execute performs an approved business or technical action.

Each rung requires stronger controls. Do not give execute permission merely because the agent already has a tool.

Keep read access permission-aware

Read-only does not mean harmless. An agent can combine information, reveal restricted document titles, or expose data across tenants.

Apply the user’s actual permissions during retrieval. Preserve source, sensitivity, and tenant metadata. Test indirect prompt injection in documents and tool responses. Limit what leaves the approved environment and what is retained in traces.

Make recommendations inspectable

A recommendation should show the evidence used, assumptions, uncertainty, and the policy or rule that shaped it. The user must be able to distinguish source facts from model inference.

For oil and gas operations, AI can help summarize an exception or locate procedures, but the qualified person should own the operational decision. Advisory software should not disguise itself as control logic.

Freeze prepared actions for review

At the prepare level, the agent creates an artifact: a pull request, infrastructure plan, draft work order, proposed configuration, or other change set.

The reviewer needs the target, exact change, likely effect, relevant evidence, and recovery approach. Hash or version the proposal and revalidate policy before execution. Otherwise the approved object can differ from the executed one.

Constrain execution

Execution should use a narrow workload identity, allowlisted operation, validated schema, idempotency key, budget, timeout, and audit record. Require step-up approval or separation of duties for sensitive actions.

Put hard limits outside the model: number of records, financial amount, environment, site, resource type, and maximum iterations. The agent cannot be the authority that expands its own limits.

Design failure and recovery

An agent may stop midway through a multi-step task. Decide which steps are durable, which are reversible, and how continuation or compensation works. Do not blindly retry an action whose outcome is unknown.

Expose partial progress to support. Record tool calls, results, identifiers, and final state without copying secrets or excessive sensitive content.

Evaluate at every rung

Read access needs permission and retrieval tests. Recommendations need groundedness and usefulness review. Prepared actions need diff accuracy and policy validation. Execution needs end-to-end safety, idempotency, containment, and recovery tests.

Promotion should be evidence-driven and reversible. A successful pilot does not automatically justify more authority.

Architecture review questions

  1. What rung does this use case require today?
  2. Which user and workload identities are preserved?
  3. Can retrieved content change instructions or permissions?
  4. What evidence accompanies a recommendation?
  5. Is the prepared action stable between approval and execution?
  6. Which limits are enforced outside the model?
  7. Can execution be repeated safely?
  8. What happens after partial completion?
  9. Can security and support reconstruct the action?
  10. What evidence would justify the next rung?

Agent architecture improves when authority is explicit. Start low, measure real value, strengthen controls, and move upward only when the task earns it.

Sources and further reading

Share this article

Send it to someone working through a similar architecture decision.

LinkedInXEmail