npx claudepluginhub codenamev/claude_memoryLong-term memory for Claude Code. Recalls architecture, conventions, and decisions across sessions — so Claude explains your codebase without file traversal, follows your patterns, and never re-asks what it already learned.
No description available.
RuFlo Marketplace: Claude Code native agents, swarms, workers, and MCP tools for continuous software engineering
Code intelligence powered by a knowledge graph — execution flows, blast radius, and semantic search
Share bugs, ideas, or general feedback.
Long-term memory for Claude Code - automatic, intelligent, zero-configuration
ClaudeMemory gives Claude Code a persistent memory across all your conversations. It automatically:
No API keys. No configuration. Just works.
gem install claude_memory
From within Claude Code, add the marketplace and install the plugin:
# Add the marketplace (one-time setup)
/plugin marketplace add codenamev/claude_memory
# Install the plugin
/plugin install claude-memory
Initialize both global and project-specific memory:
claude-memory init
This creates:
~/.claude/memory.sqlite3) - User-wide preferences.claude/memory.sqlite3) - Project-specific knowledgeBootstrap memory with your project's tech stack:
/claude-memory:analyze
This reads your project files (Gemfile, package.json, etc.) and stores facts about languages, frameworks, tools, and conventions.
claude-memory doctor
Just talk naturally! Memory happens automatically.
You: "I'm building a Rails app with PostgreSQL, deploying to Heroku"
Claude: [helps with setup]
# Behind the scenes:
# - Session transcript ingested
# - Facts extracted automatically
# - No user action needed
Later:
You: "Help me add a background job"
Claude: "Based on my memory, you're using Rails with PostgreSQL..."
👉 See Getting Started Guide → 👉 View Example Conversations →
<private> tags exclude sensitive dataExclude sensitive data from memory using privacy tags:
You: "My API key is <private>sk-abc123</private>"
Claude: [uses it during session]
# Stored: "API endpoint configured with key"
# NOT stored: "sk-abc123"
Supported tags: <private>, <no-memory>, <secret>
Existing users can upgrade seamlessly:
gem update claude_memory
All database migrations happen automatically. Run claude-memory doctor to verify.
See CHANGELOG.md for detailed release notes.
If memory tools aren't working, check initialization status:
memory.check_setup
This returns:
Need help getting started? Run:
/setup-memory
This skill provides:
Verify your ClaudeMemory installation:
claude-memory doctor
This checks:
To remove ClaudeMemory configuration:
# Remove hooks and MCP configuration (keeps databases)
claude-memory uninstall
# Remove everything including databases
claude-memory uninstall --full
# For global uninstall
claude-memory uninstall --global
claude-memory uninstall --global --full