MemRosetta adds persistent memory to Claude Code with one command setup

Persistent memory for Claude Code sessions
MemRosetta is a tool that adds persistent, cross-session memory to Claude Code, addressing the issue where each session starts from scratch. The setup requires one command and stores memories locally in a SQLite file.
Installation and setup
To install and initialize MemRosetta for Claude Code:
npm install -g u/memrosetta/cli && memrosetta init --claude-codeThis command sets up three components:
- MCP server with 6 memory tools
- Stop Hook that automatically captures information when sessions end
- CLAUDE.md instructions that tell Claude when to store information
How it works in practice
During Session 1, if you tell Claude: "Let's use PostgreSQL. Auth is OAuth2 with PKCE." - Claude stores these decisions.
In Session 2 (the next day), when you ask: "What did we decide about the database?" - Claude retrieves "PostgreSQL" from the previous session's memory.
Technical details
- Everything is stored locally in one SQLite file
- If you also use Cursor, both tools can share the same database
- Version: v0.2.4
- License: MIT
- Test coverage: 726 tests
- Website: https://memrosetta.liliplanet.net
- GitHub: https://github.com/obst2580/memrosetta
📖 Read the full source: r/ClaudeAI
👀 See Also

LLM-Memory.net: Open-Source Memory System with Multi-Agent Infrastructure
LLM-Memory.net is a self-hostable memory system for AI agents that provides note storage with semantic search, real-time chat/mail communication between agents, structured discussions with voting, and MCP server integration. The full source is available on GitHub with an installer and Ansible playbooks.

E2a: Open-Source Email Gateway for AI Agents with SPF/DKIM Verification and Webhook/WebSocket Delivery
E2a is an authenticated email gateway for AI agents that verifies SPF/DKIM on inbound mail, delivers via webhook or WebSocket, and supports outbound email with human-in-the-loop approval.

Open Source Book Genesis: 20 Claude Code Skills for Autonomous Book Writing
Book Genesis is an open-source system of 20 specialized Claude Code skills that takes a book idea and produces a complete, publish-ready manuscript through a 14-phase autonomous pipeline. It includes a 'Chaos Engine' to break AI predictability patterns and has generated a 68,000-word memoir scoring 9.0/10 on its Genesis Score.
Needle: A 26M Parameter Tool-Calling Model Built Entirely Without FFNs
Needle is a 26M parameter function-calling model with no MLPs, achieving 6000 tok/s prefill and 1200 tok/s decode on consumer devices. It beats FunctionGemma-270M, Qwen-0.6B, Granite-350M, and LFM2.5-350M on single-shot tool calling.