Open-source markdown vault gives Claude persistent memory across sessions

✍️ OpenClawRadar📅 Published: April 20, 2026🔗 Source
Open-source markdown vault gives Claude persistent memory across sessions
Ad

What it is

My Portable Brain is an open-source tool that creates a persistent memory system for Claude AI sessions using a markdown vault structure with an agent runtime layer. It addresses the frustration of Claude starting each session with zero context about the user's identity, current work, or priorities.

Key details from the source

The system consists of:

  • A markdown vault structure that stores user context in plain text files
  • An agent runtime layer that manages the context loading and updating
  • Automatic context loading on startup including: identity, projects, goals, CRM data, and weekly plans
  • Background scripts that run nightly to keep context fresh and updated
  • No plugins or databases required - just plain markdown files owned by the user
  • Native compatibility with Claude Code and Claude Cowork
  • MIT licensed and completely free

The developer notes that the main challenge wasn't implementing AI functionality, but rather structuring context in a way that Claude can use consistently across sessions.

Ad

Technical approach

The solution uses a file-based approach rather than a database or plugin architecture. This makes it portable and gives users full ownership of their data. The nightly background scripts ensure that context remains current without manual intervention.

The project is hosted at myportablebrain.ai with source code available on GitHub at https://github.com/Bermanmt/My-Portable-Brain.

📖 Read the full source: r/ClaudeAI

Ad

👀 See Also

Open Swarm: Open-Source System for Running Thousands of Parallel AI Agents
Tools

Open Swarm: Open-Source System for Running Thousands of Parallel AI Agents

Open Swarm is an open-source system that spawns thousands of parallel AI agents with full access to 150+ internet tools including email, social media, Google Workspace, web search, code execution, and cron scheduling.

OpenClawRadar
Claude-switch CLI tool automates switching between Claude Max accounts when hitting usage caps
Tools

Claude-switch CLI tool automates switching between Claude Max accounts when hitting usage caps

A developer built claude-switch, a 250-line bash CLI tool that saves and restores Claude Code credentials from macOS Keychain to switch between accounts when one hits usage limits. The tool eliminates browser re-authentication and maintains workflow continuity.

OpenClawRadar
NLA Transforms Gemma 3’s Internal Activations into Readable Text for Any Token
Tools

NLA Transforms Gemma 3’s Internal Activations into Readable Text for Any Token

Anthropic released Natural Language Autoencoders (NLA) that decode a model’s internal state into text. Paired with Gemma 3, the Auto Verbalizer explains what the model was “thinking” for any generated token. Weights are on Hugging Face; demo on Neuronpedia.

OpenClawRadar
rawq: Local CLI Tool for AI Agent Semantic Code Search
Tools

rawq: Local CLI Tool for AI Agent Semantic Code Search

rawq is an open-source CLI tool that helps AI agents find relevant code using semantic search with a 33MB local model via ONNX runtime and BM25 lexical search via tantivy. In testing, AI agents using rawq consumed 4x fewer tokens and completed tasks 2x faster compared to blind read/grep tools.

OpenClawRadar