@GitHub_Daily: Claude Brain adds persistent memory to Claude Code with a single file, automatically storing decisions made, bugs fixed, and plans set. No database, no cloud service — just one file that can be git-committed and shared with teammates. GitHub: http://github…

X AI KOLs Timeline Tools

Summary

Claude Brain is an open-source tool that adds persistent memory to Claude Code with a single file, automatically recording decisions, bugs, and plans, with local search support and no need for a database or cloud service.

Claude Brain gives Claude Code persistent memory with a single file, automatically saving decisions made, bugs fixed, and plans set. No database or cloud service needed — just one file that can be git-committed and shared with teammates. GitHub: http://github.com/memvid/claude-brain… Search runs on a native Rust engine, with sub-millisecond response time across tens of thousands of memories. If you've been using Claude Code for projects long-term, adding this memory is quite handy.
Original Article
View Cached Full Text

Cached at: 08/14/26, 03:35 PM

Claude Brain gives Claude Code persistent memory with a single file. Decisions made, bugs fixed, plans settled—all stored automatically. No database, no cloud service, just one file that can be git-committed and shared with teammates. GitHub: http://github.com/memvid/claude-brain… Search runs on a native Rust engine, responding in milliseconds across tens of thousands of memories. For anyone using Claude Code on long-term projects, adding memory is pretty practical.


memvid/claude-brain

Source: https://github.com/memvid/claude-brain

Give Claude Code photographic memory.

GitHub stars (https://github.com/memvid/claude-brain) License: MIT (https://opensource.org/licenses/MIT)

https://github.com/user-attachments/assets/b57cb3db-576b-4c1f-af92-95796ba3fb5b

Install in 30 seconds · How it Works · Commands · Full Demo (https://youtu.be/uRT0CMdK0yg)

The Problem

You: "Remember that auth bug we fixed?" Claude: "I don't have memory of previous conversations." You: "We spent 3 hours on it yesterday" Claude: "I'd be happy to help debug from scratch!"

200K context window. Zero memory between sessions. You’re paying for a goldfish with a PhD.

The Fix

You: "What did we decide about auth?" Claude: "We chose JWT over sessions for your microservices. The refresh token issue - here's exactly what we fixed..."

One file. Claude remembers everything.

Installation

``bash

One-time setup (if you haven’t used GitHub plugins before)

git config –global url.“https://github.com/”.insteadOf “[email protected]:” ``

``bash

In Claude Code

/plugin add marketplace memvid/claude-brain ``

Then: /plugins → Installed → mind Enable Plugin → Restart. Done.

How it Works

After install, Claude’s memory lives in one file:

your-project/ └── .claude/ └── mind.mv2 # Claude's brain. That's it.

No database. No cloud. No API keys.

What gets captured:

  • Session context, decisions, bugs, solutions
  • Auto-injected at session start
  • Searchable anytime

Why one file?

  • git commit → version control Claude’s brain
  • scp → transfer anywhere
  • Send to teammate → instant onboarding

Commands

In Claude Code:

bash /mind stats # memory statistics /mind search "authentication" # find past context /mind ask "why did we choose X?" # ask your memory /mind recent # what happened lately

Or just ask naturally: “mind stats”, “search my memory for auth bugs”, etc.

CLI (Optional)

For power users who want direct access to their memory file:

bash npm install -g memvid-cli

bash memvid stats .claude/mind.mv2 # view memory stats memvid find .claude/mind.mv2 "auth" # search memories memvid ask .claude/mind.mv2 "why JWT?" # ask questions memvid timeline .claude/mind.mv2 # view timeline

Full CLI reference → (https://docs.memvid.com/cli/cheat-sheet)

FAQ

How big is the file? Empty: ~70KB. Grows ~1KB per memory. A year of use stays under 5MB.

Is it private? 100% local. Nothing leaves your machine. Ever.

How fast? Sub-millisecond. Native Rust core. Searches 10K+ memories in <1ms.

Reset memory? rm .claude/mind.mv2


Built on memvid (https://github.com/memvid/memvid) - the single-file memory engine

If this saved you time, star the repo (https://github.com/memvid/claude-brain)

Send me your .mv2 file and I’ll tell you what’s wrong with your code. No context needed - I already know everything.

Similar Articles

@GitHub_Daily: When developing a project with Claude Code, if the codebase is large, every exploration of the code structure requires scanning a bunch of files, resulting in many tool calls, slow speed, and heavy token usage. So I found CodeGraph, an open-source tool that pre-builds a semantic knowledge graph for the codebase, allowing Claude Code to query the graph directly instead of scanning files one by one...

X AI KOLs Timeline

CodeGraph is an open-source tool that pre-builds a semantic knowledge graph for codebases, allowing Claude Code to query the graph instead of scanning files one by one, thereby significantly reducing tool calls (by 92%) and improving exploration speed (by 71%). It supports 19 programming languages and 13 frameworks.

@GitHub_Daily: I increasingly feel that the biggest issue with Claude Code or Codex is no longer its inability to write code. Rather, it can't remember the solutions we discussed in conversations, the pitfalls we encountered, or the project development progress. I stumbled upon an open-source Claude Code plugin from EverOS that gives AI…

X AI KOLs Timeline

This article introduces the open-source EverOS project, which provides long-term memory capabilities for AI coding assistants like Claude Code. It automatically saves conversation history and retrieves memories in new conversations. Additionally, it includes multiple application examples.

@billtheinvestor: Give Claude Code and Codex infinite memory, programming efficiency improved by 92%! The Agentmemory tool has quickly gained 4000+ stars on GitHub and is completely free. It saves all information from your coding sessions through smart compression, and automatically extracts relevant context in future sessions, avoiding re...

X AI KOLs Timeline

Agentmemory is an open-source tool that provides infinite memory for Claude Code and Codex, reducing token usage through intelligent compression, improving programming efficiency, and has gained 4000+ stars on GitHub.

@queen_nunaa: Someone set up a repo on GitHub that lets you use Claude Code for free, forever. It works by routing Claude Code requests to 10 free providers like DeepSeek, Kimi, etc. Setup takes about five minutes, and already...

X AI KOLs Timeline

Someone created a repository on GitHub that forwards Claude Code requests to 10 free providers such as DeepSeek and Kimi, allowing users to use Claude Code for free and permanently. Setup takes only five minutes, and over 20,000 developers are already using it.

@axichuhai: Found an open-source tool that makes Claude even better — just a 65-line Markdown file, already reached 130k+ stars on GitHub. Inspired by Karpathy's observation that models like to guess when uncertain, write overly complex code, and quietly change things they shouldn't touch...

X AI KOLs Timeline

An open-source 65-line Markdown file that summarizes 4 programming rules for Claude to improve code quality and save tokens. It has garnered 130k+ stars on GitHub, inspired by Karpathy.