Two years ago, most agents were stateless. Today, every major platform ships cross-session memory, dedicated memory startups are raising serious rounds, and the field has its own benchmark suite. Memory went from research curiosity to production feature in record time.

Here's what didn't keep up: almost nobody treats the contents of that memory as what it actually is — a dataset. One that your agent writes to itself, without review, and then trains its future behavior on.

If you fine-tuned a model on unreviewed, self-generated text, your team would rightly call that malpractice. But that is, functionally, what an agent memory system does on every write. The memory store is a dataset that grows in production, gets no QA pass, and silently becomes the highest-authority context your agent sees. When it goes wrong, it goes wrong in ways that are worse than having no memory at all.

Three ways memory quietly rots

1. Consolidation manufactures confidence. Most memory systems don't store raw transcripts forever — they consolidate. Summarize, deduplicate, compress. The problem is what compression throws away first: hedges and provenance. A recent paper on this failure mode, aptly titled "Manufactured Confidence," shows how consolidation de-hedges a remark into a confident fact. "The user mentioned they might switch the billing to annual" becomes "User billing: annual." The value survived; the uncertainty didn't. And downstream, the agent obeys the confidence, not the source.