Most AI memory systems use a vector store. Embeddings, similarity search, nearest neighbor lookup. It's the default architecture for agent memory in 2026.
Sibyl Memory, built by Sibyl Labs, took a different path. Hierarchical file based memory. Five storage tiers (hot, warm, cold, reference, archive, flagged), a graph structured schema, MIT licensed, three pip installs. The model reads structured files directly. No embeddings. No retrieval pipeline.
The benchmark result, 95.6% on LongMemEval Oracle, ranked #2. Only agentmemory V4 (96.2%) scored higher, and that system uses BM25 vector hybrid. SIBYL is the only file based system in the top tier. Sonnet baseline (93.6%) lands at #5.
For agents that handle long running tasks, identity continuity, or compliance heavy workloads, file based memory is now a real alternative to vector stacks. The same model, the same accuracy, less infrastructure to break.
When agent memory becomes the bottleneck, is file based the architecture that holds up?