Shoggoth.db Self Organizing Database
LLM agents self-organize databases with persona-based fact extraction.
A memory layer for AI agents that organizes itself
Background decay loops keep agent memory from growing forever without manual cleanup.
AI agent developers building long-running autonomous systems
LangChain Memory · Mem0 · Zep
Memory just grows forever. Nothing gets cleaned up.
So I tried something different - treating memory like a system that maintains itself.
StixDB is a small experiment around that idea.
Instead of just storing facts, it runs a background loop that:
- merges similar entries - tracks which ones are actually used - gradually reduces the importance of unused ones
Over time, the memory graph reshapes itself.
One interesting constraint:
* The background process only touches a small batch each cycle (64 nodes), so the cost stays predictable even as memory grows.
It works fully local (no API key), and you can still layer an LLM on top if needed.
I’m not sure if this is genuinely useful or just an over-engineered idea.
Would love to hear how others are handling long-term memory in agents.
LLM agents self-organize databases with persona-based fact extraction.
Multi-vault isolation for agent memory when vector stores + filtering already exist.
20-agent company structure is fun, but CrewAI and AutoGen already do multi-agent code.
96.6% LongMemEval score using verbatim storage instead of AI summarization.
Auto-growing SOM that skips the cluster-count guesswork sklearn forces on you.
No LLM in the critical path — deterministic retrieval beats vector search latency.