EverOS: The Open-Source AI Memory Runtime That Never Forgets

EverOS Is Like a Brain for AI Agents — and It Actually Remembers Where It Put Its Keys

Ever asked an AI chatbot something you told it last week, only to watch it stare back at you like a goldfish seeing its bowl for the first time? Yeah, AI memory has been a bit of a disaster. Enter EverOS, an open-source memory runtime from EverMind that gives AI agents something remarkably close to a working long-term memory — stored in plain, readable Markdown files. No mysterious black boxes. No disappearing act. Just good old text files your gran could theoretically read.

So What Exactly Is EverOS?

Think of EverOS as the organised friend who actually labels their leftovers in the fridge. It’s a local-first memory runtime — meaning everything runs on your own machine — that stores an AI agent’s memories as plain Markdown documents. These documents are then indexed using two powerful databases: SQLite and LanceDB.

Why does this matter? Because most AI agents today have the memory of someone who pulled an all-nighter three days running. EverOS is specifically designed to fix that, and it’s released under the Apache 2.0 licence, meaning it’s completely free to use, modify, and share.

The Secret Sauce: Hybrid BM25 + Vector Retrieval

Here’s where things get genuinely clever. EverOS uses a hybrid retrieval system that combines two different ways of searching memory:

  • BM25 (keyword search): Think of this as Google circa 2003 — it finds documents that contain the exact words you searched for. Fast, reliable, great for specific terms.
  • Vector search: This is the modern magic. Instead of matching exact words, it understands meaning. So searching “I’m feeling tired” might also surface memories about “exhaustion” or “low energy” — because a vector understands they’re related concepts.

Combining both approaches is like having a detective who checks both the literal evidence AND reads the room. You get precision and understanding working together, rather than arguing at the back of the class.

Self-Evolving Skills — Yes, It Learns New Tricks

Perhaps the most exciting feature is what EverOS calls self-evolving Skills. This means the system doesn’t just passively store memories — it actively learns reusable procedures from past experience.

Imagine teaching someone to make pasta once, and then they can apply those steps whenever noodles are involved, adapting as needed. EverOS does something similar for AI agents. Over time, the agent gets better at recurring tasks without needing to be explicitly retrained from scratch. It’s basically levelling up automatically.

Multimodal Ingestion — More Than Just Text

EverOS doesn’t just gobble up text. Its multimodal ingestion system means it can process different types of content — text, images, and more — converting them all into that tidy Markdown format for storage and retrieval. It’s like having a very organised scrapbook rather than a chaotic junk drawer.

Where EverOS Shines (And Where It’s Still Growing)

Let’s be honest — no technology is perfect straight out of the box. Here’s a quick reality check:

  • Strengths: Local-first privacy (your data stays on your machine), human-readable storage, hybrid retrieval that genuinely improves accuracy, open-source transparency, and self-improving capabilities.
  • Current limitations: Benchmark performance, while promising, still has room to grow compared to commercial alternatives. Scaling to very large memory stores may need further optimisation. The project is early-stage, so some rough edges exist.

Why Should You Care?

AI agents are quickly moving from novelty to necessity — helping with research, writing, coding, and planning. But an agent without reliable memory is like hiring an assistant who forgets every conversation the moment they leave the room.

EverOS represents a serious, practical step toward AI agents that actually remember, learn, and improve — all while keeping your data local and your code open. For developers, researchers, and curious tinkerers alike, this is a project worth watching and experimenting with.

The future of AI memory might just be written in Markdown. And honestly? That’s pretty cool.

Source: Meet EverOS: An Open Source Markdown-First Agent Memory Runtime With Hybrid BM25 + Vector Retrieval and Self-Evolving Skills

Leave a Comment