Memento Vault: Local Tool for Persistent Context in Claude Code Sessions

Memento Vault addresses the issue of Claude Code forgetting context between sessions by automatically capturing and retrieving relevant information without manual maintenance.
How It Works
The tool uses hooks that plug into Claude Code's lifecycle:
- When a session ends: A hook reads the transcript, scores it, and decides what to keep. Substantial sessions get atomic notes written to a local git repo. Each note contains one idea with frontmatter including certainty scores and tags, plus wikilinks to related notes. Trivial sessions get a one-liner in a daily log.
- When a session starts: It injects a briefing showing your project's recent sessions and the most relevant vault notes for what you're about to work on.
- On every prompt: It searches your vault and surfaces matching notes before Claude processes your input.
- On every file read: It injects context about code areas you've touched before.
Technical Details
All retrieval uses local BM25 + vector search with no LLM calls. The system has 472ms average latency per prompt and costs nothing to run. Context overhead is approximately 149 input units per session. Retrieval quality scores NDCG@10 = 0.892 on LongMemEval (500 questions).
A background consolidation layer called Inception clusters notes by embedding similarity and writes pattern notes after sessions, identifying recurring issues across projects.
The entire system uses markdown files in a git repo, browsable in Obsidian, searchable with grep, and diffable with git log. There's no database, Docker, or cloud dependency.
Installation
git clone https://github.com/sandsower/memento-vault.git
cd memento-vault
./install.sh --experimentalRequirements: Python 3 and Claude Code. QMD adds semantic search (optional). Works on Linux and macOS.
The project includes 271 tests and is MIT licensed.
📖 Read the full source: r/ClaudeAI
👀 See Also

Session Inspector for Claude Code provides real-time visibility into AI agent operations
Vibeyard, an open-source terminal IDE that wraps Claude Code, has added a Session Inspector feature that provides real-time visibility into Claude Code sessions with timeline tracking, cost breakdowns, tool analytics, and context window monitoring.

Jan Adds One-Click OpenClaw Installation with Jan-v3-Base Model Integration
Jan now supports one-click installation of OpenClaw with direct integration to the Jan-v3-base model, keeping all operations local and private on your computer.

Claude Toolbox extension adds message-level bookmarks and full-text search
Claude Toolbox is a Chrome extension that lets you bookmark individual messages, full-text search across conversations, and export as TXT or JSON. Free tier covers 2 conversations; paid at $5/month or $49 lifetime.

Foreman: Open Source Slack Bot for Remote Control of Local Claude Code
Foreman is a free, open source Slack bot that provides remote control for locally running Claude Code instances. It allows developers to send tasks to Claude from their phone while maintaining full local access to filesystem, tools, and environment.