AIApr 2

ByteRover: Agent-Native Memory Through LLM-Curated Hierarchical Context

arXiv:2604.0159979.61 citationsh-index: 2
Predicted impact top 36% in AI · last 90 daysOriginality Incremental advance
AI Analysis

This addresses memory inefficiencies in AI agents, offering a more integrated and efficient solution, though it appears incremental as it builds on existing MAG approaches.

The paper tackles the problem of semantic drift and coordination issues in Memory-Augmented Generation by proposing ByteRover, an agent-native memory architecture that uses LLMs to curate and retrieve knowledge hierarchically, achieving state-of-the-art accuracy on LoCoMo and competitive results on LongMemEval with zero external infrastructure.

Memory-Augmented Generation (MAG) extends large language models with external memory to support long-context reasoning, but existing approaches universally treat memory as an external service that agents call into, delegating storage to separate pipelines of chunking, embedding, and graph extraction. This architectural separation means the system that stores knowledge does not understand it, leading to semantic drift between what the agent intended to remember and what the pipeline actually captured, loss of coordination context across agents, and fragile recovery after failures. In this paper, we propose ByteRover, an agent-native memory architecture that inverts the memory pipeline: the same LLM that reasons about a task also curates, structures, and retrieves knowledge. ByteRover represents knowledge in a hierarchical Context Tree, a file-based knowledge graph organized as Domain, Topic, Subtopic, and Entry, where each entry carries explicit relations, provenance, and an Adaptive Knowledge Lifecycle (AKL) with importance scoring, maturity tiers, and recency decay. Retrieval uses a 5-tier progressive strategy that resolves most queries at sub-100 ms latency without LLM calls, escalating to agentic reasoning only for novel questions. Experiments on LoCoMo and LongMemEval demonstrate that ByteRover achieves state-of-the-art accuracy on LoCoMo and competitive results on LongMemEval while requiring zero external infrastructure, no vector database, no graph database, no embedding service, with all knowledge stored as human-readable markdown files on the local filesystem.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes