MuninnDB adds Dream Engine for LLM memory consolidation with vault isolation

MuninnDB has added a Dream Engine feature for LLM memory consolidation, modeled after sleep consolidation in the brain. The open-source tool is written in Go and includes Ebbinghaus decay, Hebbian association learning, and vector search capabilities.
How the Dream Engine works
The consolidation pipeline runs between sessions and performs several operations:
- Lowers the deduplication cosine threshold from 0.95 to 0.85
- Flags near-duplicate clusters
- Passes ambiguous cases to an LLM for semantic review
- Automatically merges clear duplicates
You can run it with a dry-run option: muninn dream --dry-run. Sample output shows: "No changes were written. Dream completed in 0s default scanned 107 engrams (merged 9) legal-docs 1 engrams (protected, skipped)"
Vault trust tiers for data isolation
The system implements data protection through vault trust tiers:
- Legal vaults: Skipped entirely, never sent to any LLM
- Work/personal: Ollama or Anthropic only
- Global/projects: Any configured provider
Development status and architecture
The author has shipped Phase 0 with configurable deduplication and dry-run CLI. The next phase (PR #2) will add LLM consolidation, bidirectional stability, and a dream journal feature.
The tool runs locally on consumer hardware - the author mentions using an RTX 5070 Ti with Ollama. The architecture is detailed in a technical writeup that explores neuroscience parallels.
📖 Read the full source: r/LocalLLaMA
👀 See Also

Tredict MCP Server Enables Claude to Create and Push Training Plans to Sports Watches
A developer built a Tredict MCP Server for Claude.ai and Claude Code that creates complex endurance training plans via prompts and automatically uploads structured workouts to Garmin, Coros, Suunto, and Wahoo watches. The server includes an MCP App for visual feedback within Claude chat.

Free pharmacovigilance signal detection tool built with Claude Code
A developer used Claude Code to build a free pharmacovigilance platform that analyzes 2.9 million FDA adverse event reports, running statistical signal detection that commercial platforms charge $50K-500K/year for. The tool is hosted for free on HuggingFace.

Drop-in OAuth Provider for Personal FastMCP Servers on All Claude Platforms
A developer created a single-file Python OAuth provider that enables personal FastMCP servers to work on Claude.ai web, mobile, and Desktop platforms without requiring external identity services like Auth0 or Google.

How to Move or Rename Claude Code Project Folders Without Losing Session History
Claude Code stores session history using absolute project paths, so moving or renaming folders with mv breaks session access. The clamp tool fixes this by migrating session data to match new paths.