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

OpenClaw .NET: NativeAOT Port with JSON-RPC Bridge for Existing Plugins
OpenClaw .NET is a C# port of OpenClaw that compiles to a ~23MB NativeAOT binary, eliminating JIT warmup and Node runtime overhead while maintaining compatibility with existing TypeScript/JavaScript plugins through a built-in JSON-RPC bridge.

GlycemicGPT: Self-Hosted AI Diabetes Monitor with BYOAI and Plugin SDK
GlycemicGPT is an open-source, self-hosted platform that connects Dexcom G7 and Tandem pumps to an AI analysis layer. It provides daily briefs, meal analysis, conversational chat, and configurable alerts, all on your own hardware.

CtxSnap VS Code Extension Tracks File Changes for Claude Sessions
CtxSnap is a VS Code extension that tracks which files changed since your last Claude session and packages them into a ready-to-paste handoff block with file contents and a token budget bar calibrated to Claude's 200k context window.

HomeButler: Zero-token homelab management for OpenClaw agents
HomeButler is a single Go binary that lets OpenClaw agents manage homelab infrastructure without API keys or tokens. It runs locally and keeps all operations on your network.