Mnemos: Open-Sourced Local-First Memory Layer for Coding Agents

What Mnemos Solves
Mnemos addresses three specific problems the creator observed in agent memory systems: repo-specific facts bleeding into unrelated work, old facts persisting alongside new facts indefinitely, and transcript storage growing without clean compaction.
Current Beta Features
- Local-first architecture
- SQLite starter profile
- MCP support for Claude Code, Claude Desktop, and generic stdio hosts
- Documented Codex setup through MCP +
AGENTS.md
Biomimetic Pipeline Components
- SurprisalGate: Filters noise to prevent low-signal interactions from becoming long-term memory
- MutableRAG: Rewrites stale facts instead of accumulating duplicates
- AffectiveRouter & SpreadingActivation: Make retrieval more contextual than plain vector lookup
- SleepDaemon: Consolidates raw episodic logs into durable facts and prunes the rest
Installation & Setup
Install with: pip install "mnemos-memory[mcp]"
Run diagnostics: mnemos-cli doctor
Feedback Focus Areas
The creator is specifically seeking feedback on: scope isolation in real repo workflows, retrieval quality during actual coding tasks, MCP host behavior, and Codex workflows.
Resources
- Website: https://mnemos.making-minds.ai
- GitHub: https://github.com/anthony-maio/mnemos
- Technical deep dive: https://anthonymaio.substack.com/p/your-agent-has-amnesia
📖 Read the full source: r/LocalLLaMA
👀 See Also

Claude Code + MCP generates test suites from source code
Claude Code analyzes source code to generate hierarchical test suites covering modules, features, scenarios, happy paths, edge cases, and error handling, then pushes them to test management systems via MCP.

Beagle SCM: A Source Code Management System That Stores AST Trees
Beagle is an experimental source code management system that stores abstract syntax trees instead of binary blobs, using a CRDT-ish data format called BASON and backing storage with key-value databases like RocksDB.

Wrangle: A Native macOS Editor for Managing Claude Code Sessions
Wrangle is a native macOS markdown editor built specifically for managing multiple Claude Code sessions, featuring embedded terminals and smart notifications. The developer created it after VS Code couldn't keep up with their daily workflow of running many Claude Code sessions.

Exploring AI with Tiny Bots: Understanding AI Agents Through Nanobot Tutor
OpenClaw community member shares insights with the 'Nanobot Tutor', a miniature framework aimed at demystifying AI agent functionality. Discover how diving into this compact learning environment unveils the workings of intelligent agents.