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

Dual-model architecture reduces token consumption by half for long conversations
A developer built a dual-model system where a small 'subconscious' model compresses conversation history in the background, allowing the main model to work with a curated ~35K context instead of 120K tokens of raw history. This architecture cuts token consumption roughly in half for sustained project work.

Testreel: Programmatic Demo Video Generation with Claude Code
Testreel is an npm package that generates polished product demo videos from JSON, YAML, or Playwright interaction descriptions. It creates webm/mp4/gif videos with cursor overlays, click ripples, and gradient backgrounds.

Data Analyst Builds Prompt Calibrator Tool with Claude, No Prior Frontend Experience
A data analyst with no HTML, CSS, or JavaScript experience built Prompt Calibrator, a client-side web tool that structures AI prompts through a form with four fields and four modes. The tool was developed using Claude as a code review partner and is hosted on GitHub Pages.

docvault: Generate Local API Docs to Reduce AI Hallucinations
docvault is a tool that generates markdown API references from source code to help Claude and other LLMs stop hallucinating function signatures. It works for Rust crates and Python packages, outputs a two-tier markdown file, and includes a Claude Code plugin for hands-free operation.