The Curator

The Capability Ladder: How to Design AI Features That Earn Autonomy

Last updated: 8/11/2026

Back to blog
Daniel Rosenthal avatarDaniel Rosenthal 7 min read
Cover image for The Capability Ladder: How to Design AI Features That Earn Autonomy
AI-assisted, human-reviewed. Drafted with AI research tools from public sources and edited by our team. How we build these →

The most consequential decision in an AI product is not which model to use. It is how much authority the system should receive.

A summarizer may read sensitive material but cannot change it. A drafting assistant can create work but not publish it. An agent that sends messages, edits records, or moves money crosses a more serious boundary: its output becomes an event in the world.

The Capability Ladder is a practical way to cross that boundary deliberately. Instead of asking whether an AI should be autonomous, you define successive levels of authority. The system advances only when observed evidence justifies the next level.

Why capability and authority must be separated

A model can be capable of performing a task without being ready to perform it unsupervised. This distinction matters because benchmark accuracy does not capture the full cost of action.

Consider an AI that handles supplier invoices. It may extract payment details correctly in most ordinary cases yet fail on a duplicated invoice, an unusual tax treatment, or a compromised email account. The problem is not merely that an answer can be wrong. The answer may initiate an irreversible transfer.

Authority should therefore depend on more than apparent intelligence. It should reflect four properties of the action:

  • Impact: What changes if the action succeeds?
  • Reversibility: Can the change be undone completely and promptly?
  • Observability: Can a reviewer see what happened and why?
  • Uncertainty: Can the system recognize when the case differs from familiar ones?

A low-impact, reversible, visible action can tolerate more autonomy than a high-impact, irreversible, opaque one—even when both use the same model.

The five levels of the Capability Ladder

The ladder begins with observation and ends with bounded execution. These levels are product states, not claims about general intelligence.

LevelSystem roleHuman roleExample
1. ObserveCollects and organizes informationInterprets and actsGroups incoming invoices by supplier
2. RecommendProposes a decision with evidenceChooses the actionFlags a likely duplicate and explains the match
3. PrepareCreates an executable draftReviews and confirmsFills a payment form without submitting it
4. Execute with approvalActs after an explicit gateApproves consequential actionsSubmits a reviewed payment batch
5. Execute within boundsActs automatically inside defined limitsMonitors exceptions and policyPays approved suppliers under a set threshold

The crucial design principle is that each level should create evidence for the next. Recommendations reveal whether the system understands the task. Prepared drafts reveal whether its outputs survive review. Approval-gated execution reveals whether actions complete correctly in the real environment.

Skipping levels removes the opportunity to learn cheaply.

Define the action boundary before building the agent

Teams often begin with a broad instruction such as “manage accounts payable.” That is not a usable boundary. It combines document reading, fraud detection, coding, approval, payment, and reconciliation—tasks with different risks.

Start by describing one action as a contract:

  1. Trigger: What event starts the workflow?
  2. Inputs: Which records may the system inspect?
  3. Permitted actions: Which tools and fields may it change?
  4. Constraints: Which amounts, counterparties, or conditions are allowed?
  5. Evidence: What must accompany its decision?
  6. Escalation: Which conditions require a human?
  7. Recovery: How is a mistaken action reversed or contained?

For an invoice assistant, a precise contract might be: when an invoice arrives from a supplier already in the accounting system, compare it with the purchase order and receipt; prepare an entry if the fields agree; attach source references for every extracted value; escalate any bank-detail change, duplicate candidate, missing receipt, or mismatch.

This contract constrains the problem before prompts or tools are selected. It also makes evaluation possible: every clause can become a test.

Use reversibility as the promotion rule

Not all errors deserve equal treatment. A mistaken label can be corrected. A sent payment may require cooperation from a bank and recipient. The ladder should rise faster where mistakes are easy to detect and reverse.

Classify actions into three practical groups:

  • Fully reversible: The original state can be restored without external dependency. Examples include moving an internal file or changing a draft status.
  • Operationally reversible: Correction is possible, but it consumes time or creates confusion. Examples include sending an internal notification or modifying a shared schedule.
  • Effectively irreversible: Recall is uncertain or the consequence persists. Examples include publishing externally, disclosing private data, deleting an unrecoverable record, or transferring funds.

For fully reversible actions, automatic execution may be reasonable after modest validation. Operationally reversible actions need stronger monitoring and rapid correction. Effectively irreversible actions should retain approval gates unless the permitted scope is exceptionally narrow and supported by compelling operational evidence.

Reversibility is not an excuse for weak quality. It is a way to decide where real-world learning can occur safely.

A worked example: promoting an invoice assistant

Imagine a small manufacturer receiving invoices by email. Staff compare each invoice with a purchase order and proof of receipt, then enter approved items into an accounting system.

Stage one: observe

The assistant reads attachments, identifies the supplier, and extracts invoice number, amount, currency, dates, line items, and bank details. It does not write to the accounting system.

The team compares extracted fields with human-entered records. More importantly, it records failure categories: poor scans, unfamiliar layouts, tax ambiguity, multiple purchase orders, and inconsistent supplier names. These categories reveal where confidence scores are meaningful and where they are not.

Stage two: recommend

The assistant matches each invoice to a purchase order and receipt. Its recommendation includes citations to the relevant fields and a list of discrepancies.

A useful recommendation is not “approve this invoice.” It is: “The supplier identity, purchase-order total, received quantity, and invoice amount agree; the payment account matches the existing supplier record; no invoice with this number is present.” This structure lets a reviewer inspect the basis rather than trust a verdict.

Stage three: prepare

The assistant creates a draft accounting entry. Staff review changes before saving. Every correction is captured as structured feedback: wrong tax code, incorrect ledger account, mismatched quantity, or missing reference.

The promotion question is not simply whether reviewers usually accept drafts. The team should ask whether rejected drafts cluster around recognizable conditions. If they do, those conditions can become escalation rules. If failures remain unpredictable, broader authority is premature.

Stage four: execute with approval

The system writes an entry only after a named approver confirms it. The approval screen shows source documents, extracted values, detected exceptions, and the exact proposed change. Approval must apply to a specific action, not grant vague permission for subsequent steps.

Stage five: execute within bounds

Automatic posting is allowed only for established suppliers, unchanged payment details, exact three-way matches, familiar tax treatments, and ordinary ledger categories. Everything else is routed to review.

Notice what earned autonomy: not a persuasive demonstration, but accumulated evidence inside a narrow operating envelope.

Measure interventions, not just accuracy

Aggregate accuracy can conceal dangerous patterns. A system may perform well overall while failing disproportionately on rare, consequential cases. Operational metrics should expose how the system behaves at its boundaries.

  • Intervention rate: How often does a human change or reject the proposed action?
  • Silent correction rate: How often is an error discovered after approval or execution?
  • Escalation precision: Do escalated cases genuinely require judgment, or is the system creating noise?
  • Boundary violation count: Does the system ever attempt a forbidden tool, field, counterparty, or amount?
  • Recovery burden: How much work is required to repair an incorrect action?
  • Exception coverage: Are known failure classes represented in tests and monitoring?

Promotion should depend on stable performance by case type, not a single average. New suppliers, new document formats, policy changes, and tool updates can all move a workflow outside its proven envelope. When that happens, the system should step down the ladder automatically.

Design demotion before promotion

Authority should never be permanent. A dependable system includes mechanisms that reduce autonomy when conditions change.

Demotion triggers can include a new data format, a changed integration, repeated reviewer corrections, unusual transaction patterns, unavailable evidence, or disagreement between independent checks. The response may be to restore approval gates, limit available tools, or return the system to recommendation mode.

This is more than a kill switch. A kill switch stops everything after danger is recognized. Graceful demotion preserves useful assistance while removing the authority that has become unsafe.

The mature question is not whether an AI can perform the task. It is whether the product can recognize the precise conditions under which the AI should not perform it.

The Capability Ladder turns autonomy from a theatrical feature into an earned operating privilege. Begin with visibility. Add recommendation, preparation, and gated execution. Expand authority only where actions are bounded, evidence is inspectable, failures are understood, and recovery is credible. The result may appear less dramatic than an unrestricted agent. It will be far more capable of surviving contact with reality.

This post was drafted with AI assistance and reviewed against our editorial policy before publication. Corrections are made at the source, on the page, with the date shown.

AI agentsproduct strategyhuman oversighttrustworkflow design
Share this post

Rate this article

No ratings yet

Discussion

Comments are moderated. Read our editorial policy.