Skip to main content
This guide helps you decide where humans belong in the loop, choose the right approval shape, and design what happens when nobody responds — before you encounter an incident in production. For a reference on the mechanics of creating approval requests — how to write AOP instructions, respond via Slack, or manage Requests — see Human-in-the-Loop.

When to Add an Approval Step

Not every step needs human review. Use this risk framework to decide where approval gates add genuine value and where they only add friction.

Risk tier framework

A practical starting point: start with an approval gate on all Tier 1 and 2 actions. Remove gates only after you have observed that a branch never produces surprises.

Decision criteria by action category

Choosing the Right Approval Shape

The Human-in-the-Loop connection supports three request types. Picking the right one keeps operators efficient and prevents ambiguous responses.
Use when the agent has already determined what to do and just needs a go/no-go before acting.When it fits: The agent is about to send an email, submit a payment, or delete a batch of records.AOP pattern:
Use when the right next step depends on context the agent does not have, and the options are well-defined.When it fits: The agent needs to route a case, choose a tone, or decide between two valid policies.AOP pattern:
Design rules for good options:
  • Keep option labels short and action-oriented.
  • Make options mutually exclusive — if they overlap, the operator will guess.
  • Do not add an “Other” option unless you also tell the agent what to do with a free-text answer.
Free-text operator input makes sense when the operator needs to supply content, not just choose a path: dictating a reply, providing context about an anomaly, or overriding a specific field value.Risk: Free-text answers must be parsed by the agent in its next step. If the agent expects a decision but gets prose, it may misinterpret. Only use free-text when the agent’s AOP explicitly handles open-ended input.Common mistake: Using a free-text question where a structured Question would do. Structured options are faster for operators and produce more reliable downstream behavior.

Designing Fallback and Escalation Behavior

Every approval gate needs an explicit answer to “what happens if no one responds?” Without a defined fallback, the agent stalls indefinitely or makes an unsafe assumption.

There is no timeout — design for the wait

An unanswered approval does not expire: the Run stays in Needs Input until someone responds, and a paused agent cannot act, so time-based instructions (“if not approved within 4 hours, escalate”) have no effect. Decide up front whether an indefinite wait is acceptable for this action: Gate it when the action can wait as long as it needs to — the Run pauses, the approver answers when they answer, and the work resumes. Fail-safe instead of gating when the action is time-sensitive and the approver might be away — have the agent take the safe default up front and report it, rather than pausing:
The exception lands as a failed Case a human reviews on their own schedule, and the Run — and its Queue slot — is released instead of waiting.

Repeated rejection → halt

If the operator rejects the same action multiple times, the agent has likely misunderstood the requirement. Continuing to loop wastes operator time.

Know who the approver is — and cover their absence

An approval request goes to the Run’s author: the person who started the Run, the creator of the schedule, or — for Case-triggered Runs — the owner of the previous Run on that Case. There is no automatic escalation chain, so coverage is an operational habit, not an AOP instruction: make sure the approver has Slack or Teams request notifications on, agree who watches their Requests page during absences, and prefer the fail-safe pattern above for anything that cannot afford to wait.

Using Queue to Manage Exceptions at Scale

When an agent processes many cases, Requests becomes a bottleneck. The Queue is the right tool for managing exceptions across high-volume workflows.

Triage pattern

  1. Consumer agent processes cases automatically.
  2. Cases that need a human decision surface as Needs Input in the queue.
  3. An operator reviews the Needs Input filter, responds in the case detail panel, and the agent resumes.
  4. Cases the agent cannot resolve at all land as Failed — the operator reviews, updates the case data, and retries.
This separates routine processing from exception handling: the agent handles volume, the operator handles judgment calls.

Bulk delegation for surges

When a backlog of Needs Input cases accumulates, you can select multiple cases and delegate them to a specialist agent — one designed specifically for exception handling — rather than asking one person to respond to dozens of individual HITL requests.

Aging via postpone, not via paused Runs

A paused approval blocks its Run (and a Queue concurrency slot) until someone answers. For exceptions that can wait without blocking, have the agent postpone the Case instead of pausing — the time check happens at the start of the retry Run, which is the one place elapsed-time logic actually works:

Ramping Toward Safe Autonomy

The goal is not maximum oversight — it is the right level of oversight. As an agent matures, you should expect to remove approval gates where they no longer provide signal.

Start with gates on every risky branch

When you first deploy an agent, add approval gates on all Tier 1-2 actions and any branch where you are unsure what the agent will do.

Measure the approval rate

After a few weeks of production traffic, review the pattern of approvals and denials in Requests or the Runs list. Estimate the approval rate per gate.
  • Approval rate above ~95%: The agent is getting it right consistently. Consider removing the gate and trusting the output directly.
  • Approval rate below ~70%: The agent is frequently wrong. Refine the AOP before removing the gate.
  • High denial rate with a consistent pattern: The agent is doing the same wrong thing repeatedly. Update the AOP to correct the root behavior.

Remove gates selectively

Remove gates one at a time, in order of confidence. Monitor the next two weeks of output. If quality holds, the gate can stay removed.Do not remove a gate if:
  • The action is irreversible and errors are high-cost.
  • Volume is too low to measure a meaningful approval rate.
  • You have changed something in the connected systems recently.

Re-introduce gates when conditions change

Re-add approval gates when:
  • You modify the AOP in ways that could affect the gated branch.
  • The agent gains access to a new system.
  • Volume increases significantly (edge cases appear at scale that were rare before).
  • Approval rate drops during a quarterly review.
Quarterly cadence: Review approval rates for all agents in production. Prune gates with consistently high approval rates. Re-add gates on branches that have drifted.

Worked Examples

The agent auto-handles low-value expenses and escalates high-value ones through a structured flow.
See the full tutorial: Expense Report Approval
The agent drafts a reply and holds it for review before sending.
See a related example: Reviewing Drafts Before Sending
The agent gates routine follow-ups on approval, but switches to a fail-safe default when the item is too urgent to sit in a paused Run. The urgency check runs at the start of the Run — the one place time-based logic works.

Human-in-the-Loop

Reference for request types and responding via Slack, Teams, and Requests.

Requests

Managing and responding to pending approval requests.

Queue

Queue-based exception handling for high-volume workflows.

Guardrails for High-Risk Automations

Risk classification, hard caps, allow/deny lists, and kill switch procedures.

Refining Your Agent

Using HITL approval feedback to improve your AOP.

Expense Report Approval

Full tutorial showing threshold-based approvals.

Reviewing Drafts Before Sending

Full tutorial showing draft review before outbound communication.