What is Escalation Triggers in Agentforce architecture?
In Agentforce architecture, define low-confidence, unusual-value, and negative-sentiment triggers, and drill the handoff to a human on a real case. This guide explains the design decisions, controls, and implementation checks needed to apply the pattern in production.
Escalation is the safety valve for agent autonomy. Even a well-designed agent will hit cases it cannot resolve: requests with low model confidence, values that fall outside normal ranges, or conversations where customer sentiment turns negative. If those cases do not reach a human reliably, the agent converts recoverable errors into failed outcomes.
A trigger list on paper is not enough. The routing, context transfer, and ownership of the handoff must be tested on a real case, because the failures that matter usually live in the plumbing: lost conversation history, queues nobody monitors, or agents that stop mid-turn and leave the customer waiting. Only a drill on a real case proves the whole path works.

Escalate the unusual
- Low-confidence answers are guesses with extra steps; route them to a human instead of shipping them.
- Unusual values, such as refunds above a threshold or atypical account changes, deserve review even when the agent is confident.
- Negative sentiment signals a deteriorating customer relationship that automation should not compound.
- The handoff must carry context, so the human sees what the agent tried and why it stopped.
Define and drill the handoff
- Document explicit triggers during agent planning: confidence thresholds, value limits, topic exclusions, and sentiment conditions.
- Implement routing with an Omni-Channel flow so conversations transfer to the right queue with the transcript attached, and confirm the queue has monitored coverage.
- Define what the human receives: full history, the trigger that fired, and any actions already taken.
- Drill the path end to end on a real case, then verify the transfer, queue monitoring, and response time in production.
Resources
This Tucario article is based on the following Salesforce learning and product documentation.