agents
Glossary ↗Escalation Path
An escalation path is the defined route by which an automated system stops and hands work to a human: who receives it, what they receive with it, what they are empowered to do, and how the resolution gets back to the original requester. It is the part of an automation design that decides what happens in the cases the automation was never going to handle, and those cases are not exceptions — they are a permanent share of the traffic. The trigger conditions should be written down rather than discovered. Low confidence in the output, a request outside the defined scope, an action above a value or risk limit, a user who explicitly asks for a person, repeated failed attempts at the same task, and any policy-sensitive category the business has decided not to automate. Each of those is a different condition with a different urgency, and treating them as one queue means the refund dispute waits behind the password reset. What travels with the escalation determines whether it saves time or costs it. The receiving person needs the conversation so far, what the system already tried, what it retrieved or looked at, why it stopped, and what it believes the answer might be. An escalation that arrives as a bare ticket forces the human to redo the work the machine already did, which is how a well-intentioned handoff makes a process slower than having no automation at all. Capacity is the constraint that quietly decides everything. An escalation path with no staffed destination is a queue, and a queue with no capacity is an unacknowledged failure with a friendly message attached. Size the human side against the expected escalation rate before launch, and treat a rising escalation volume as a demand signal rather than a nuisance. Alongside capacity comes authority: the receiver must be able to resolve what they were sent, or the path is not one hop but three, and the customer experiences all of them. The return route is the half most often left out. When the person resolves the case, the answer should come back through the same channel, the requester should not have to explain anything twice, and the resolution should be captured — because escalations are the highest-value training and evaluation data the system will ever produce. Every one of them is a labelled example of something the automation could not do, along with the correct outcome. Autonomous agents raise the stakes on all of this. An agent that takes actions rather than answering questions needs escalation defined per action rather than per conversation, with a hard stop before anything irreversible and a named approver for the categories that require one. The useful test of a design is simple: if the agent encountered something unexpected right now, could you say exactly where it would stop, who would hear about it, and how long they would take to answer?
Related terms