Most AI memory systems retrieve information by similarity.
But similarity is not the same as sequence.
The same facts presented in a different order can produce a different interpretation, a different risk assessment, and a different decision.
That matters in:
-
autonomous systems
-
legal and investigative reasoning
-
cybersecurity
-
financial markets
-
robotics
-
long-running AI agents
I have been developing the Analog Recall Engine, or ARE, as an external chronological memory layer for AI systems.
The core principle is simple:
Preserve what happened, in the order it happened, before reducing events to semantic categories.
ARE keeps the historical record outside the language model. The model may reason through that record, but it does not own or silently rewrite it.
A recent Termux benchmark of the deterministic SQLite/HMAC branch produced:
-
50,000 capsules: recall p99 0.160 ms
-
200,000 capsules: recall p99 0.234 ms
-
1,000,000 capsules: recall p99 0.182 ms
-
end-to-end recall plus integrity verification remained below 0.7 ms p99 across all three scale tests
-
mutated payload verification failed as intended: TAMPER DETECTED
The broader architectural question is this:
What changes when AI memory is treated not as a bag of semantically similar facts, but as a navigable path through time?
My current working thesis is:
ARE preserves where the system has been.
A directional orientation layer can determine where the system is now.
A recognition layer can detect when the current trajectory resembles a prior one.
A forward evaluation layer can test where the trajectory may lead.
I would value serious technical criticism from NVIDIA engineers working in NeMo, agentic systems, edge AI, robotics, and governed inference.
The original ARE implementation is deliberately small. Every attempt to “improve” it by pushing semantic interpretation into the memory core has weakened the behavior that makes it useful.
The question is not whether the code is large.
The question is whether chronology itself should be treated as a first-class computational structure for AI cognition.