Thoughts

Context databases are just filesystems pretending to be revolutionary

AI companies are reinventing basic file operations and calling it breakthrough context technology.

We’re watching the AI industry rediscover filesystems and pretend it’s innovation. Context databases, memory layers, persistent state management. Call it what you want, but you’re just building a fancy way to store and retrieve files with some metadata sprinkled on top.

The filesystem cosplay

OpenViking organises agent memory through “filesystem paradigms”. LangChain builds “context isolation” for multi-step workflows. ServiceNow creates benchmarks for “persistent state changes”. Strip away the marketing speak and you’ve got directories, files, and search indexes. The same technology that’s been running your computer since the 1970s.

The difference is scale and the retrieval layer, sure. But calling this revolutionary context technology is like calling a database a “structured information paradigm”. We already solved the hard problems of hierarchical storage, permissions, and concurrent access decades ago.

Why the reinvention works

Here’s the thing though. It actually makes sense for AI systems. Agents need structured memory that persists across sessions. They need to organise context by task, user, and temporal scope. Traditional databases are overkill for most agent workflows, and flat file storage is too primitive.

The filesystem metaphor works because it’s familiar to developers and maps naturally to how agents actually operate. Folders for different conversation threads, files for individual memories, search indexes for retrieval. It’s not revolutionary, but it doesn’t need to be.

We’re not building the future of data storage. We’re just making it work for conversational AI.

Related