S5.1.2 Task 5.1

28% of Issues Dropped Without a Tracker. 3% With One.

A customer raises three issues in one conversation. Without structured tracking, 28% of issues are mentioned but never resolved or followed up on. The agent resolves 2.1 issues on average. With a structured Issue Tracker, the drop rate falls to 3% and resolution throughput rises to 3.8 issues per conversation.

The Cross-Issue Confusion Problem

After 20 turns covering two orders, the agent tells the customer: “The refund for order #456 has been processed.” The customer asked for a refund on order #123 and a delivery inquiry on #456. The agent mixed the order number from one issue with the action from another.

Without structured tracking, details from different issues exist as unstructured text in a growing conversation. The model cross-associates details as context grows — order numbers and actions from different issues blend together.

The Issue Tracker Pattern

=== ISSUE TRACKER ===
#1: Damaged item refund (order #123) — IN_PROGRESS, awaiting photo
#2: Shipping delay (order #456) — RESOLVED, $20 credit applied
#3: Email update — WAITING, verification email sent
#4: Warranty question — PENDING
=====================

Each issue has: number, description, associated identifiers, status, and next action. The tracker is:

  • Initialized immediately when the customer lists issues
  • Updated after each action — status changes reflect real-time progress
  • Confirmed with the customer — “I see four issues. Is this correct?”

Status Lifecycle

PENDINGIN_PROGRESSWAITING (async) → RESOLVED

Explicit status enables safe context-switching between issues. While waiting for a photo upload on issue 1, the agent addresses issues 2 and 3. The tracker shows which issues need attention and which are blocked.

For pause/resume continuity, the tracker persists with conversation state. When the customer returns hours later, the agent knows exactly where each issue stands.

Even 2-Issue Conversations Need Tracking

A team lead proposes skipping the tracker for 2-issue conversations to save 50-100 tokens. The data disagrees: 2-issue conversations without tracking have a 15% drop rate. That is 1 in 7 conversations where an issue is forgotten.

50-100 tokens is negligible compared to the customer impact of a dropped issue. Structured tracking should apply to all multi-issue conversations — not just complex ones.

End-of-Conversation Summary

Before closing, the agent should summarize all issue resolutions:

“Here’s where we stand:

  1. Damaged item refund — refund of $49.99 processed, expect 3-5 business days
  2. Shipping delay — $20 credit applied to your account
  3. Email update — verification sent, please check your inbox
  4. Warranty question — covered until Dec 2026, no action needed”

This catch-all verification ensures nothing was missed before the conversation ends.


One-liner: Initialize a structured Issue Tracker when the customer lists issues, update it after each action, and verify at close — this drops the issue loss rate from 28% to 3% and raises resolution throughput from 2.1 to 3.8 issues per conversation.