← Research
Field Notes27 July 2026

Knowing When to Hand Off: Designing the Escalation Path in an AI System

The hardest decision in an AI product isn't what the system does — it's when it should stop and get a human. Designing that escalation path well is where trust is built.

Dylan Marchingo6 minProduct DesignAI SystemsEscalationTrust

Most conversations about AI products focus on what the system can do. The harder and more important design question is the opposite: when should it stop doing, and hand the problem to a person? An AI system that never escalates is not confident, it is dangerous. Getting the handoff right is one of the quieter marks of a system built by people who have shipped one before.

This is a field note on designing that boundary — where it sits, how the system knows it has reached it, and how to cross it without the user feeling dropped.

The cost of being wrong is not uniform

The first thing to accept is that not all mistakes cost the same. An AI that gives a slightly clumsy answer to a general question has done little harm. An AI that gives a wrong answer about someone's money, their legal position, or their health has done real damage, and no amount of fluency compensates for it. The escalation boundary should be drawn according to the cost of being wrong, not the difficulty of the question.

This means the line is a business decision as much as a technical one. You are deciding, deliberately, which categories of request the system is allowed to handle end to end and which it must route to a human no matter how confident it is. That decision belongs to the people who understand the stakes of the domain, not to a default setting.

Confidence is a signal, not a verdict

A natural instinct is to escalate when the model is unsure. That is part of the answer, but a naive version of it fails, because language models are not reliably calibrated — they can be confidently wrong and hesitantly right. Treating raw model confidence as the trigger will let some serious errors through while escalating harmless ones.

A better approach treats confidence as one input among several. What is the risk category of the request? Is the user showing signs of frustration or distress? Has the conversation looped without progress? Is this the kind of action that is hard to reverse? The escalation decision is a small piece of judgement assembled from these signals, and building it well means resisting the temptation to reduce it to a single number.

The handoff itself is a design surface

Deciding to escalate is only half the work. How the system hands off determines whether the user experiences it as care or as failure.

A bad handoff dead-ends the user — "I can't help with that" — and leaves them to start over. A good handoff carries context across the boundary: it tells the human what the user was trying to do, what has already been tried, and why it escalated, so the person picks up mid-stream instead of from zero. From the user's side it should feel like being introduced to someone who can help, not like hitting a wall. That continuity is engineering work, and it is almost always underestimated, because it sits in the unglamorous seam between the AI and the humans behind it.

Escalation is a feature, not an admission

There is a mindset trap worth naming. Teams sometimes treat escalation as evidence the AI has failed — a gap to be engineered away over time. That framing produces systems that try too hard to handle everything, which is exactly how you get confident wrong answers in situations that demanded a human.

The mature view is the reverse. A system that knows its own limits and hands off cleanly at the right moment is more valuable, not less, than one that attempts everything. It is trusted precisely because it doesn't overreach. In the domains we work in — finance, property, professional services — that trust is the entire product. The AI's job is not to replace the human at the hard moments; it is to handle the volume competently and to recognise, reliably, the moment that belongs to a person.

Designing that recognition well is quiet work. Users never notice a good escalation boundary — they just notice that the system has never once given them a confident answer it had no business giving. That absence of harm is the feature. It is just an invisible one.