Article

Forgetting is a decision, not an accident

David Faith 2026-06-054 min read

In most systems, information disappears by accident: a file is overwritten, a cache expires, a record is lost. That is not forgetting, it is data loss. Real forgetting is intentional: a deliberate act on a record that is still fully there, chosen by the owner, never the silent side effect of a system losing track of what it held.

Accidental loss is not forgetting

Most software loses information by accident. A field gets overwritten, a cache times out, a log rotates away, a laptop dies. The data is simply gone, and usually you find out only when you reach for it. None of that is forgetting in any useful sense. It is the system losing track of what it was holding, and it happens whether the information mattered or not.

A memory you can trust has to invert that. The default is that nothing is lost: the journal is append-only, so every fact your agents wrote is still on record. Disappearance from the working view is never a side effect of a crash or an overwrite. It is a thing that happened on purpose.

A deliberate act on a record that survives

When a fact stops surfacing here, one of two deliberate things happened. Either it faded because nothing renewed it, which is automatic but still a designed behavior rather than a leak, or someone chose to erase it. In both cases the underlying record is intact and the change is explainable.

That distinction is what makes forgetting safe to rely on. You are not hoping the system happened to keep the right thing. You know it kept everything, and that anything missing from the view left for a reason you could name. The hard erasures, the ones that actually pull something out, stay a decision the owner makes, not an accident any single agent can cause.

This is also how you stay out of the loop without losing control. The memory runs itself, accumulating and fading on its own across your own machines, and your data stays with you. The one thing it never does on its own is decide that something should be gone for good.

Frequently asked

Isn't expiring old data the same as forgetting?

No. An expiry is a blind rule that fires whether the data mattered or not. Forgetting is a decision made against a record you can still see, so you choose what goes and keep the rest. One is loss, the other is curation.

How can forgetting be intentional if I never want to babysit the memory?

Two ways. Stale knowledge fades on its own so you never touch it, and that fading is reversible. The intentional part is reserved for the rare case of erasing something wrong, which the owner decides. You are out of the loop until a decision is actually required.

Related

Take yourself out of the loop.

Let your agents do the lifting while you keep the judgment.

Get the Playbook