Memory Plugin
FreeNot checkedPersistent memory management for Claude Code, allowing agents to store and retrieve user preferences, environment notes, and skills across sessions.
About
Persistent memory management for Claude Code, allowing agents to store and retrieve user preferences, environment notes, and skills across sessions.
README
Hermes-style bounded, curated persistent memory for Claude Code.
Two files persist across sessions and are injected into context at session start:
File (~/.claude/memory-plugin/) |
Purpose | Limit |
|---|---|---|
MEMORY.md |
Agent notes — environment, conventions, completed work | 2,200 chars |
USER.md |
User profile — preferences, style, habits | 1,375 chars |
How it maps to Claude Code
| Hermes feature | Here |
|---|---|
| Inject memory at session start (frozen snapshot) | SessionStart hook → additionalContext (scripts/inject-memory.mjs) |
memory tool: add / replace / remove |
MCP server mcp/memory-server.mjs → memory_add / memory_replace / memory_remove (+ memory_list) |
| Char limits + "memory full" error | Enforced in the MCP server |
| Substring matching for replace/remove | matchOne() — short unique substring, errors if ambiguous |
| Duplicate prevention | Exact-match no-op on add |
| Security scanning | lib/security.mjs — injection/exfil/backdoor patterns + invisible Unicode |
| Background self-improvement review (memory only) | Stop hook → detached claude -p review (scripts/review.mjs, opt-in) |
| Correction detector | UserPromptSubmit hook → regex (lib/correction.mjs, scripts/detect-correction.mjs) |
| Skill capture (procedural memory) | Always-on policy injected at session start — agent writes SKILL.md inline |
The model decides what to save via skills/memory/SKILL.md; the server enforces how.
Three learning loops
Modeled on the real pi-hermes-memory implementation (which splits learning into separate loops on purpose):
- Background review (memory) —
Stophook fires a detachedclaude -pthat mines the finished turn for durable facts/preferences/corrections and saves them via the memory tools. It is explicitly forbidden from writing skills — a stale subprocess with only a transcript snapshot would author bad procedures. Opt-in (token cost). - Correction detector —
UserPromptSubmithook runs a free, two-pass regex over each prompt (strong patterns always fire; weak patterns need a following directive word; negative patterns suppress). On a hit it nudges the agent to persist the lesson before answering. Detection is pure regex — no LLM call. - Skill capture (procedural) — done inline by the main agent, never in a subprocess.
The session-start policy tells it to write a structured
SKILL.md(## When to Use / ## Procedure / ## Pitfalls / ## Verification) to~/.claude/skills/(portable) or.claude/skills/(repo-specific) the moment it finishes a complex, reusable workflow — while it still has full context. Claude Code's native skill discovery then handles progressive disclosure.
The Curator (skill lifecycle)
Ports Hermes' active → stale (30d) → archived (90d) aging so captured skills don't
pile up forever.
- Use signal — a
PostToolUsehook on theSkilltool records real invocations into a.last-usedsidecar (scripts/track-skill-use.mjs). "Last used" ismax(.last-used, SKILL.md mtime, dir mtime), so a skill that's invoked but never edited isn't falsely aged out, and a fresh skill is never stale. - Weekly sweep — a
SessionStarthook (scripts/curate.mjs) throttled to once per 7 days via a sentinel. Approximates Hermes' "every 7 days after idle" without a daemon. - Safety — notify-only by default: it reports stale/archivable skills in the
session context and only moves files when
MEMORY_CURATOR_ARCHIVE=1.pinned: truein frontmatter is never touched. Archiving moves (never deletes) into~/.claude/skills/.archive/and is fully reversible.
Install (as a Claude Code plugin)
This repo is also a single-plugin marketplace (.claude-plugin/marketplace.json),
so installation is two slash commands inside Claude Code. There is no build or
npm install step — the MCP server is zero-dependency.
/plugin marketplace add alexanderop/claude-code-memory
/plugin install memory@memory
marketplace add <owner>/<repo>registers this GitHub repo as a marketplace.install <plugin>@<marketplace>— both are namedmemoryhere (plugin namememory, marketplace namememory).
Claude Code copies the plugin into ~/.claude/plugins/cache and resolves
${CLAUDE_PLUGIN_ROOT} automatically, so the bundled MCP server and hooks just
work. They activate on the next turn — run /reload-plugins to pick them up
without restarting. Verify with /plugin (shows memory enabled) and /mcp
(shows the memory server with its memory_* tools).
Non-interactive / team install
Declare it in .claude/settings.json (project) or ~/.claude/settings.json (global):
{
"extraKnownMarketplaces": {
"memory": { "source": { "source": "github", "repo": "alexanderop/claude-code-memory" } }
},
"enabledPlugins": { "memory@memory": true }
}
Local development
Point the marketplace at a local checkout instead of GitHub:
/plugin marketplace add ~/Projects/memory-plugin
/plugin install memory@memory
Background review (optional)
Off by default — it spawns a headless claude -p after each turn and costs tokens.
Enable by exporting MEMORY_REVIEW_ENABLED=1 in the environment Claude Code runs in.
It is recursion-guarded (MEMORY_REVIEW=1 on the child) and never blocks the turn.
Config (env vars)
| Var | Default | Effect |
|---|---|---|
MEMORY_PLUGIN_DIR |
~/.claude/memory-plugin |
Where the two files live |
MEMORY_CHAR_LIMIT |
2200 |
MEMORY.md limit |
MEMORY_USER_CHAR_LIMIT |
1375 |
USER.md limit |
MEMORY_REVIEW_ENABLED |
unset | 1 enables the Stop-hook review |
MEMORY_SKILLS_DIR |
~/.claude/skills |
Skills dir the Curator manages |
MEMORY_CURATOR_ARCHIVE |
unset | 1 lets the Curator move (not just report) stale skills |
MEMORY_CURATOR_STALE_DAYS |
30 |
Unused-days before a skill is "stale" |
MEMORY_CURATOR_ARCHIVE_DAYS |
90 |
Unused-days before a skill is archivable |
MEMORY_CURATOR_INTERVAL_DAYS |
7 |
Min days between Curator sweeps |
Testing
Layered by cost, zero dev dependencies (plain Node — no Bun, no npm install):
npm test # unit + integration — zero token, ~1s, run on every edit
npm run test:unit # manifests, skill frontmatter, and the store/security/correction/curator modules
npm run test:integration # version consistency, hook wiring, MCP path, markdown links, real MCP stdio round-trip
npm run test:e2e # model-backed: loads the plugin via `claude --plugin-dir` (~$0.01, needs auth)
The unit suite exercises the real logic modules against temp dirs (never your
~/.claude); the integration suite spawns the actual MCP server and drives it
over JSON-RPC. See docs/testing-strategy.md for the
full layout and CI policy.
Not included (vs Hermes)
- Write-approval gating — add a
PreToolUsehook matchingmcp__memory__memory_*that returns{"permissionDecision":"ask"}(or stages to a pending file). - Session search — Claude Code already ships a
conversation-searchskill over~/.claude/projects/*/*.jsonl; no FTS5 server needed.
Installing Memory Plugin
This server has no published package — it is built from source. Open the repository and follow its README.
▸ github.com/alexanderop/claude-code-memoryFAQ
Is Memory Plugin MCP free?
Yes, Memory Plugin MCP is free — one-click install via Unyly at no cost.
Does Memory Plugin need an API key?
No, Memory Plugin runs without API keys or environment variables.
Is Memory Plugin hosted or self-hosted?
Self-hosted: the server runs locally on your machine via the install command above.
How do I install Memory Plugin in Claude Desktop, Claude Code or Cursor?
Open Memory Plugin on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.
Related MCPs
GitHub
PRs, issues, code search, CI status
by GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
by mcpdotdirectCompare Memory Plugin with
Not sure what to pick?
Find your stack in 60 seconds
Author?
Embed badge for your README
Browse similar
All development MCPs
