Sistava

What is Handoff?

Also called agent handoff, escalation, transfer.

A handoff is the transfer of an in-progress task or conversation from one agent to another, or from an agent to a person, along with the context needed to continue. Unlike delegation, responsibility moves and typically does not return. Handoffs are common in support routing, escalation, and specialist agent designs.

The defining question is what travels with the task. Options range from the full conversation history, which preserves everything but imports irrelevant material and confusion, to a written summary, which is compact but loses whatever the summary omitted. Many systems send a structured briefing: the objective, what has been established, what was attempted, and the open question.

Handoffs to people have extra requirements. The person needs to know why the transfer happened, what the agent already told the customer, and what remains unresolved, all without reading the whole transcript. A handoff that dumps a raw log and stops is why escalation often feels like starting over. Clear triggers, such as an expressed complaint or a policy boundary, should decide when it fires.

Handoff loops are a known failure. Two agents can each decide the request belongs to the other, passing it back and forth until a limit stops it. Context can also silently degrade across successive transfers, each summary dropping a little more, until the final holder is working from a description that no longer matches the original request.

The distinction from delegation matters for accountability. In a delegation the original agent still owns the outcome and checks the result. In a handoff ownership moves, so the record must make clear who holds it now. Related concepts are the supervisor pattern, where a coordinator routes instead of transferring, and human review, where a person receives the handoff.

Key points

In practice

A billing question reaches a general support agent that cannot access invoices. It hands off to a billing agent with a short briefing: the customer's account, the invoice number in question, the two things already checked, and the unresolved discrepancy. The customer sees one continuous conversation. The second agent starts from the briefing instead of re-reading forty messages.

Related terms

Back to the AI Glossary