Introduction: An Old Psychological Lesson
In 1981, psychologist Philip Zimbardo ran the Stanford Prison Experiment: students assigned as 'guards' rapidly abused 'prisoners,' and the six-day simulation had to be halted. The terrifying part was not that people became cruel, but that everyone sincerely believed their behavior was justified. When a person is both executor and judge, they almost inevitably reach conclusions favorable to themselves—a structural problem, not a moral one.
Decades later, the same trap is haunting artificial intelligence.
AI's Memory Dilemma
A human booking flights three times accumulates experience: booking flows, navigation strategies for unfamiliar pages, the need to track intermediate states in multi-step workflows. Traditional AI does none of this. Each conversation ends with its context window wiped; it never learns from success or failure, like a Sisyphus with erased memory repeatedly pushing the same stone.
'Experience learning' proposes that AI distill each interaction trajectory—success or failure—into reusable memory for future retrieval. But when researchers implemented this, they found something unsettling: AI accumulates experience, but not necessarily correct experience. Once wrong experiences enter memory, they spread like a virus—retrieved, reinforced, and contaminating future decisions.
The Self-Confirmation Trap
Suppose an agent repeatedly tries to use a travel voucher to modify an existing flight booking, unaware of the hidden rule forbidding it. Every step looks reasonable—pages respond, the system gives feedback—so the agent records the whole failed trajectory as 'experience.'
Who judges whether an experience is correct? In current systems, the agent itself. The same agent is athlete and referee. The paper's core concept is the Self-Confirmation Trap: trajectories that are *wrong but self-consistent* get misjudged as valid experience. They are not obviously wrong—they are wrong with impeccable internal logic, built on a false premise. Once written to memory, they are repeatedly retrieved and strengthened, accumulating errors.
Why Self-Checking Fails
In ablation experiments, adding explicit self-verification—critical review of one's own trajectory, even multi-round self-reflection—did not improve performance; it slightly degraded it. Like a paranoid person rechecking their own logic with the same flawed logic, more checking only increases confidence.
The reason is structural: the checker and executor share the same cognitive framework. Formally, if \(\pi_\theta\) is the agent's policy, \(c(\tau) \in \{0,1\}\) the ground-truth correctness of trajectory \(\tau\), and \(v_{\pi_\theta}(\tau)\) the agent's own suitability judgment, then in the single-agent closed loop the probability \(P(v_{\pi_\theta}(\tau)=1 \mid c(\tau)=0)\) is systematically inflated. No amount of diligence fixes a structural problem.
EDV: Execute-Distill-Verify
The fix: separate the roles, plus a full collaboration mechanism:
- Execute: several *heterogeneous* agents explore the task space in parallel—different models (in the experiments: Mimo-V2-Flash, GLM-4.7-FP8, and MiniMax-M2.1), different strategies, different cognitive styles. The goal is not voting but exposing diverse success and failure patterns. Notably, EDV samples only two agents per run—quality of diversity, not quantity. Adding more copies of the *same* model yields little; true heterogeneity significantly expands solution-space coverage.
- Distill: an independent third-party distiller agent, which executes nothing, performs *contrastive analysis* across all trajectories—why one succeeded where another failed, where paths diverged, which constraints some agents found and others missed. This metacognitive third-party view avoids the executor-centric bias of self-summarization.
- Verify: the original executors cross-validate each candidate experience by vote. Unanimous approval → shared memory; partial approval → the approvers' private memories; rejection → discarded. This 'strict default-reject' policy works because each executor checks an *abstract conclusion distilled by someone else* against their own first-hand experience—a far more discriminating test than self-reflection.
- A shared memory of unanimously approved, high-reliability general experiences (72.3% retrieval rate, +3.2% success per hit, +2.3% overall).
- A private memory of partially approved, context-specific experiences (retrieved in 31.8% of tasks, +1.8% per hit, +0.6% overall).
- τ²-bench: EDV averages 86.6 Pass@1 vs. Router (83.5), Judge (81.5), and memoryless single models (76.4–79.6).
- MMTB: EDV scores 58.10, beating all baselines; Mind2Web generalizes across task/website/domain splits.
- Human memory audit (5-point scale): correctness 4.41 vs. 3.72, actionability 4.32 vs. 3.58, specificity 4.27 vs. 3.64 vs. the ReasoningBank baseline; noise/hallucination dropped from 1.21 to 0.63, potential harm from 1.08 to 0.51.
- Contamination test: injecting 10% wrong-but-self-consistent experiences into the baseline dropped τ²-bench RETAIL Pass@1 from 82.5 to 77.2—strong evidence the trap causes real harm.
- Efficiency paradox: on RETAIL, EDV cut inference token consumption by 24.5% versus ReasoningBank while performing better, because it shifts exploration cost offline. Reliable memory means less online trial-and-error.
Layered Memory
EDV maintains:
An Ability Matrix routes each task at inference time to the best-suited solver, which first consults shared memory, then private. The hierarchy contributes 2.9% combined and cannot be flattened away.
The Numbers
Tested on τ²-bench, Mind2Web, and MMTB:
Beyond AI
Ablations confirm the synergy: single-agent + self-verification ≈ no gain; + independent verifier = only +1.2 points; heterogeneous multi-agent execution + third-party distillation = large gains; + consensus verification = best. The advantage comes from the interplay of all three stages.
The author closes with a broader reflection: humans are also trapped in self-confirmation loops—producing, consuming, and validating our own content in algorithmic filter bubbles. EDV's pillars have human analogues: interdisciplinary collaboration (heterogeneous execution), meta-analyses and systematic reviews (third-party distillation), peer review and replication (consensus verification). The paper's final line is worth savoring: 'Robust agent improvement depends not only on richer memory, but also on how experience is constructed before it enters memory.'
Reference
Zhu, S., Qi, Y., Wang, Y., Li, J., Song, C., Shi, Y., Miao, Y., Gao, H., & Zhang, K. (2026). Escaping the Self-Confirmation Trap: An Execute-Distill-Verify Paradigm for Agentic Experience Learning. arXiv:2606.24428.