retrieval-augmented agent-memory episodic-memory llms memory-consolidation arc-agi llm-overfitting schema-lessons
Abstract
Learning from past experience benefits from two complementary forms of memory: episodic traces -- raw trajectories of what happened -- and consolidated abstractions distilled across many episodes into reusable, schema-like lessons. Recent agentic-memory systems pursue the consolidated form: an LLM rewrites past trajectories into a textual memory bank that it continuously updates with new interactions, promising self-improving agents without parameter updates. Yet we find that such consolidated memories produced by today's LLMs are often faulty even when derived from useful experiences. As consolidation proceeds, memory utility first rises, then degrades, and can fall below the no-memory baseline. More surprisingly, even when consolidating from ground-truth solutions, GPT-5.4 fails on 54% of a set of ARC-AGI problems it had previously solved without memory. We trace the regression to the consolidation step rather than the underlying experience: the same trajectories yield qualitatively different memories under different update schedules, and an episodic-only control that simply retains those trajectories remains competitive with the consolidators we test. In a controlled ARC-AGI Stream environment that exposes Retain, Delete, and Consolidate actions, agents preserve raw episodes by default and double the accuracy of their forced-consolidation counterparts; disabling consolidation entirely (episodic management only) matches this auto regime. Practically, robust agent memory should treat raw episodes as first-class evidence and gate consolidation explicitly rather than firing it after every interaction. Looking forward, reliable agentic memory will require LLMs that can consolidate without overwriting the evidence they depend on.
한국어 요약
📋 한 줄 요약
**[에이전트 메모리 / LLM]** LLM이 과거 궤적을 텍스트 메모리 뱅크로 지속적으로 재작성·통합하는 consolidated 메모리는 의도와 달리 유용한 경험조차 손상시킨다는 점을 정량화하고, raw 에피소드 보존을 일급 증거로 두는 대안을 제시.
🎯 핵심 기여도
- consolidation이 진행될수록 메모리 효용이 처음에는 상승하지만 곧 저하되어 no-memory baseline 아래로 떨어질 수 있다는 현상을 실증.
- ground-truth 해법으로부터 consolidate해도 GPT-5.4가 메모리 없이 풀었던 ARC-AGI 문제의 54%에서 실패한다는 충격적 결과 보고.
- 동일 궤적도 업데이트 일정에 따라 질적으로 다른 메모리를 만들어내며, 단순히 궤적을 보존하는 episodic-only 컨트롤이 consolidator들과 경쟁력 있음을 입증.
- ARC-AGI Stream 환경에서 Retain/Delete/Consolidate 액션을 노출한 통제 실험을 통해, 기본적으로 raw 에피소드를 보존하는 에이전트가 강제 consolidation 대비 정확도가 2배라는 점, consolidation을 완전히 끄면 auto 정책과 동등하다는 점을 보임.
💡 핵심 아이디아
실패는 경험 자체에 있는 것이 아니라 **consolidation 단계**에 있다. LLM이 raw 경험을 요약·통합하는 과정에서 의존해야 할 증거를 덮어쓰기 때문에, 강건한 에이전트 메모리는 raw 에피소드를 일급 증거로 다루고 consolidation을 명시적으로 게이팅해야 한다.
🔬 기술적 접근법
- **모델/방법론**: ARC-AGI Stream이라는 통제 환경에서 Retain/Delete/Consolidate 액션을 가진 에이전트 메모리 관리 정책을 비교.
- **핵심 기법**: 다양한 업데이트 일정 하에서 동일 궤적의 consolidation 결과를 비교, episodic-only 컨트롤과 강제 consolidation 변형의 누적 효용을 측정, ground-truth 해법으로부터의 consolidation 실패 사례 분석.
📊 주요 결과
- 메모리 효용은 consolidation 진행에 따라 상승 후 하락, no-memory 베이스라인 아래로 떨어지는 경우 발생.
- ground-truth 해법으로부터 consolidate해도 GPT-5.4가 이전에 메모리 없이 풀었던 ARC-AGI 문제의 54%에서 실패.
- raw 에피소드 보존 정책이 forced-consolidation 대비 정확도 2배.
- consolidation을 끈 episodic-only 관리가 auto 정책과 동등.
💭 의의 및 한계
**의의**: 자가 개선 에이전트의 핵심 가정인 "지속적 텍스트 메모리 통합"이 현재 LLM으로는 위험하다는 점을 정량적으로 드러내며, 메모리 시스템 설계 원칙을 재정립. **한계**: ARC-AGI 환경 중심 평가로, 다른 도메인(웹·로보틱스 등)에서의 일반성은 후속 검증 필요.
🚀 실용적 활용
- 에이전트 메모리 시스템 설계 시 raw 에피소드 저장을 기본값으로 채택하는 가이드라인.
- consolidation 트리거 정책(빈도·조건)의 명시적 게이팅 메커니즘 설계.
- LLM 자기 개선 파이프라인에서 메모리 손상을 진단하는 회귀 테스트 셋.