克劳德大脑
Claude Brain

原始链接: https://github.com/memvid/claude-brain

## 具有记忆的 Claude:推出 Claude Brain Claude 传统上缺乏会话记忆,即使拥有很大的上下文窗口——本质上是一条“拥有博士学位的金鱼”。然而,“Claude Brain”插件使用 **memvid**,一种单文件内存引擎来解决这个问题。 该插件将您的整个 Claude 交互历史(决策、错误、解决方案)存储在本地的 `.claude/mind.mv2` 文件中——无需云、数据库或 API 密钥。它速度极快(亚毫秒级搜索)并且完全私密。 您可以通过 Claude Code 中的简单命令(/mind stats、/mind search、/mind ask)或通过命令行界面 (memvid-cli) 访问此内存。文件大小保持可控,即使使用一年也保持在 5MB 以下。 本质上,Claude Brain 赋予 Claude 持久记忆,使其能够基于过去的对话进行构建,并提供真正知情的回复——最终让它*记住*您修复的那个认证错误!

对不起。
相关文章

原文

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.


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.


# One-time setup (if you haven't used GitHub plugins before)
git config --global url."https://github.com/".insteadOf "[email protected]:"
# In Claude Code
/plugin add marketplace memvid/claude-brain

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

Done.

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

In Claude Code:

/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.

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

npm install -g memvid-cli
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 →


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 - the single-file memory engine

If this saved you time, star the repo

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

联系我们 contact @ memedata.com