Agentic memory for coding agents.
One SQLite file. No Docker. No cloud required.
MeMesh — open-source agentic memory for Claude Code & MCP coding agents: captured from the agent's real work, injected at the moment it acts, kept honest when it contradicts itself. One SQLite file. No cloud.
In Claude Code — type these in the chat (hooks, memory tools and the /memesh skill are wired automatically):
/plugin marketplace add PCIRCLE-AI/memesh
/plugin install memesh@pcircle-memesh
Restart Claude Code. A ◉ MeMesh status line at the top of your next session means it is capturing.
In a terminal — the memesh CLI, the dashboard, and the memesh-mcp server for Codex / Gemini / Cursor (needs Node 22.13+):
npm install -g @pcircle/memesh
memesh doctor # verifies this install end to endMost Claude Code users eventually want both — they share one database and never conflict. Details, other agents, and upgrades: Get Started.
Installing via an AI agent? Point it at llms-install.md — deterministic steps with per-step verification. Once installed, AGENTS.md tells it how to use memesh well.
Your coding agent doesn't just forget facts between sessions — it repeats work. It re-proposes the approach you rejected last month, trips over the same failing test, re-discovers the constraint that broke production in March, and asks you to re-explain the architecture it helped design.
That's not a chat-history problem; it's an agent-memory problem. What needs to survive between sessions is the work: decisions with their reasons, failures with their fixes, and the links between them.
MeMesh is that memory. Hooks capture it from what the agent actually does (sessions, commits, failures — not manual notes), recall injects it at the moment the agent acts (session start, before file edits), and the knowledge-graph layer keeps it honest over time (supersession, LLM-judged conflict detection). Install with npm, memory lives in ~/.memesh/knowledge-graph.db, plug into Claude Code or any MCP-compatible client.
Important
Actively developed — features may change between releases. Open an issue for bugs or feature requests.
MeMesh has two install paths that coexist. Most users want both. They write to the same memory database (~/.memesh/knowledge-graph.db), so memories captured in Claude Code chat appear in your shell, and vice versa.
flowchart TB
classDef client fill:#1f2937,stroke:#4b5563,color:#f9fafb,stroke-width:1px
classDef pathA fill:#1e3a8a,stroke:#3b82f6,color:#eff6ff,stroke-width:2px
classDef pathB fill:#14532d,stroke:#22c55e,color:#f0fdf4,stroke-width:2px
classDef db fill:#7c2d12,stroke:#f97316,color:#fff7ed,stroke-width:2px
subgraph clients["Where you use memesh from"]
direction LR
CC["Claude Code<br/>(chat + agent)"]:::client
TERM["Terminal / other<br/>MCP clients<br/>(Cursor, Cline...)"]:::client
end
subgraph paths["Two install paths"]
direction LR
A["<b>Path A — /plugin install</b><br/>───────────────<br/>Lives in <code>~/.claude/plugins/</code><br/><br/>• MCP tools in chat<br/>• Auto-capture hooks<br/>• <code>/memesh</code> skill<br/>• Session-start banner"]:::pathA
B["<b>Path B — npm install -g</b><br/>───────────────<br/>Lives in <code>$(npm prefix -g)/bin/</code><br/><br/>• <code>memesh</code> shell command<br/>• <code>memesh-mcp</code>, <code>-http</code> bins<br/>• For Cursor / Cline / other MCP"]:::pathB
end
DB[("Shared memory DB<br/><code>~/.memesh/knowledge-graph.db</code><br/>Same data, both paths see it")]:::db
CC -->|uses| A
TERM -->|uses| B
A --> DB
B --> DB
Which one do you need?
| What you want to do | Install path |
|---|---|
Use the /memesh skill inside a Claude Code conversation |
Path A (plugin) |
| Get auto-capture (sessions → lessons → recall) in Claude Code | Path A (plugin) |
Run memesh remember / memesh recall / memesh doctor in any terminal |
Path B (npm-global) |
Open the local dashboard via memesh serve (no npx lookup delay) |
Path B (npm-global) |
Plug memesh-mcp into Codex CLI, Gemini CLI, Cursor, or another MCP client |
Path B (npm-global) |
| All of the above | Install both — they don't conflict |
This is the most common confusion. Read this once and you'll save yourself the loop:
/plugin install memesh@pcircle-memeshfrom inside Claude Code → installs Path A only. Gives you MCP tools, hooks, the/memeshskill. Does NOT putmemeshon your shellPATH.memesh reindex/memesh update/memesh doctortyped in a normal terminal → needs Path B (npm-global). Without it:zsh: command not found: memesh.- Recommended setup for Claude Code users: install both. They coexist, share the same database, never conflict.
# After /plugin install ..., also run this:
npm install -g @pcircle/memeshIf you only use memesh through Claude Code chat (never type memesh in a terminal), Path A alone is enough. Everyone else: install both.
If you use Claude Code, install MeMesh as a plugin from inside the CLI:
/plugin marketplace add PCIRCLE-AI/memesh
/plugin install memesh@pcircle-memesh
Claude Code wires hooks, skills, and the MCP server automatically. You get in-session auto-capture, proactive recall, the /memesh skill (remember / recall / learn / forget) inside the Claude Code conversation, and remember / recall / forget / learn available as MCP tools to the agent.
Verify it: restart Claude Code and start any session. A status line like ◉ MeMesh ready · no memories for "your-project" yet appears at the top — that line IS the plugin working; no separate command needed. (Once you have memories, it shows counts instead.)
The MCP server runs directly from the plugin's bundled compiled output — no npx lookup, no build step, and nothing to compile. memesh stores its data through node:sqlite, which is part of Node itself (22.13+), so a Node upgrade cannot leave it with a binary built for the wrong runtime.
This installs the plugin only. You can run CLI commands via
npx @pcircle/memesh <command>if you absolutely don't want a global install, but typing plainmemeshin a terminal will reportcommand not found. To get a real shellmemeshcommand, also run Option B below — both paths coexist and share the same memory database. The "Install paths at a glance" diagram above covers this.
If you want the binary directly on your shell PATH (so plain memesh, memesh-mcp, etc. work in any terminal without the per-call npx lookup), or you want to expose memesh-mcp as a fixed-path stdio command to non-Claude-Code MCP clients (Codex CLI, Gemini CLI, Cursor, Cline, terminal-only flows):
npm install -g @pcircle/memeshFirst-install notes (one-time):
- No compiler needed — the database engine is Node's own
node:sqlite.sqlite-vec, which adds meaning-based search, ships as a prebuilt file for macOS (arm64/x64), Linux (x64/arm64) and Windows x64; on any other platform it is simply absent and recall stays on keyword search. Nothing here runs an install script, sonpm install --ignore-scriptsinstalls a fully working memesh.- Semantic (meaning-based) search is optional — the default recall path is FTS5 keyword search, which needs no model and no download. Meaning-based search needs an embedder: run Ollama locally, or configure a cloud embedder (see "Bring-your-own embeddings" below). Without one, memesh uses keyword search only.
If you installed via Option A (/plugin install memesh@pcircle-memesh), skip this step — Claude Code wires plugin hooks automatically.
If you installed via Option B (npm install -g), the CLI is on your PATH — but nothing is wired into Claude Code yet: the npm package deliberately runs no install scripts, and the plugin (Option A) is what registers the MCP server and hooks inside Claude Code. What the npm path can wire by itself is the session hooks. Without them you can still use memesh remember / recall manually, but the auto-capture loop (sessions → lessons → recall on next session) is silent.
memesh setup # detects Claude Code / Codex / Gemini, offers to wire each, verifiesOr the individual steps by hand:
memesh install-hooks # adds memesh's hooks to ~/.claude/settings.json
memesh setup --check # machine-level verification: reads the hosts' own config, changes nothingThe hooks coexist with any custom hooks you already have under ~/.claude/hooks/ — install-hooks writes additive entries and never overwrites yours. To remove later: memesh uninstall-hooks.
memesh-mcp is a plain stdio MCP server, so any MCP-capable host can talk to it — not just Claude Code. With Option B installed (memesh-mcp on your PATH), register it once per host:
# OpenAI Codex CLI — writes [mcp_servers.memesh] into ~/.codex/config.toml
codex mcp add memesh -- memesh-mcp
# Google Gemini CLI — user scope, so it works in every folder
gemini mcp add -s user memesh memesh-mcpEvery host reads and writes the same ~/.memesh/knowledge-graph.db, so a memory stored from a Claude Code session is recallable from Codex or Gemini, and the other way around. Verify from either host by asking it to call the recall tool, or from a terminal:
codex mcp list # memesh should be listed as enabled
gemini mcp list # memesh should show "Connected"Use
memesh-mcp, notnpx -p @pcircle/memesh, as the configured command.npx -presolves to the local package whenever the host's working directory is inside a checkout of this repository, silently running whatever state that working tree is in instead of the installed release.
Hermes Agent (NousResearch) has a first-party MemoryProvider plugin system — MeMesh integrates at the same tier as Hermes's own built-in memory backends (honcho, mem0, hindsight), not as an HTTP bridge. Unlike MCP mode where you manually call tools, Hermes's provider system runs recall/remember automatically on every turn.
The integration maps Hermes's prefetch() and sync_turn() hooks directly onto MeMesh's HTTP API. Complete guide with provider code structure, config, and four real pitfalls from a live deployment: docs/platforms/hermes-agent.md
OpenClaw has a first-party memory-capability plugin system — MeMesh integrates as a native memory provider at the same tier as OpenClaw's own built-in backends (LanceDB), not as an HTTP bridge. The plugin registers via api.registerMemoryCapability() and exposes memory_recall/memory_store/memory_forget tools plus automatic recall on the before_prompt_build hook.
Key difference from Hermes: OpenClaw's auto-capture is threshold-gated (max 3 memories/turn when triggered), not every-turn. The integration maps onto MeMesh's HTTP API (/v1/recall, /v1/remember, /v1/forget). Full TypeScript plugin contract, config shape, and pitfalls: docs/platforms/openclaw.md
The bash examples below assume
memeshis on yourPATH(Option B). Option A (plugin-only) users have two equivalent paths: ask in the Claude Code conversation (the/memeshskill + MCP tools cover the same flows), or replacememeshwithnpx @pcircle/memeshin any shell — same flags, no global install needed.
memesh remember "Use OAuth 2.0 with PKCE for the new auth"Or use the explicit form when you want a stable name and type for later filtering:
memesh remember --name "auth-decision" --type "decision" --obs "Use OAuth 2.0 with PKCE"memesh recall "login security"
# → Finds "OAuth 2.0 with PKCE" even though you searched different wordsThat's it. MeMesh is now remembering and recalling across sessions.
If you want to verify the install and local wiring end to end:
memesh doctorOpen the dashboard to explore your memory:
memesh serveAt any moment, one command prints what your agent knows about the current project — where work was left off, decisions, lessons, recent activity (wrapped as reference data):
memesh briefingWhere "your-project" was left off (today):
- Goal: Ship the payment retry logic
- Next: Open the PR once CI is green
Decisions and direction for "your-project":
- [decision] Use FTS5 as the retrieval baseline
This same block is what Claude Code receives automatically at session start, and what any other MCP client gets from the briefing tool — the agent starts oriented instead of re-reading the repository, and you stop re-explaining last week. The dashboard (memesh serve) is the full visual view.
- One local file. Everything lives in
~/.memesh/knowledge-graph.db— SQLite, on your disk. No cloud account; nothing leaves your machine unless you configure a cloud embedder or LLM yourself. - Back up = copy that one file. Restore = copy it back.
- Pause capture anytime:
export MEMESH_AUTO_CAPTURE=false. - Delete everything: remove
~/.memesh/.
| If you are... | MeMesh helps you... |
|---|---|
| A developer using Claude Code | Auto-recall project decisions, file-specific lessons, and past failures as you work |
| A coding-agent power user | Share one local memory layer across MCP-compatible tools |
| A team experimenting with AI coding workflows | Export/import project knowledge without introducing hosted infrastructure |
| An agent developer | Add local memory through MCP, HTTP, or the CLI |
|
Claude Code / Desktop memesh-mcpMCP tools + Claude Code hooks |
Any HTTP Client curl localhost:3737/v1/recall \
-H "Content-Type: application/json" \
-d '{"query":"auth"}'
|
Any LLM (OpenAI format) memesh export-schema \
--format openaiPaste tools into any API call |
| MeMesh | OpenMemory | Cursor Memories | Mem0 | Zep / Graphiti | |
|---|---|---|---|---|---|
| Best fit | Local memory for coding agents | Local/cross-client MCP memory | Cursor-native project memory | Managed app/agent memory | Temporal knowledge graphs |
| Install shape | npm install -g @pcircle/memesh |
Local app/server flow | Built into Cursor | Cloud API / SDK / MCP | Service/framework setup |
| Storage | One local SQLite file | Local memory stack | Cursor-managed rules/memories | Hosted or self-hosted stack | Graph database |
| Cloud required | No | No for local mode | Depends on Cursor account/settings | Yes for platform | Usually yes/self-hosted |
| Claude Code hooks | First-class | MCP tools | No | MCP tools | Not Claude Code-specific |
| Dashboard | Built in | Built in | Cursor settings | Platform dashboard | Platform/graph tooling |
| Tradeoff | Simple local wedge, not enterprise scale | Broader local app footprint | Locked to Cursor | Strong managed platform, less local-first | Strong graph model, heavier setup |
MeMesh trades enterprise-scale managed infrastructure for instant local setup, inspectable storage, and coding-agent workflow hooks.
MeMesh's retrieval is FTS5 alone — no LLM, no embeddings on the hot path. Measured against the public LongMemEval-S benchmark (500 questions, MIT-licensed):
| System | R@5 | Source |
|---|---|---|
MeMesh (Mode A, via recallEnhanced()) |
95.60% | benchmarks/longmemeval/RESULTS.md |
| MemPalace | 96.6% | Vendor self-report |
| Supermemory | ~82% | Vendor estimate |
| Zep | 63.8% | LongMemEval paper |
| Mem0 | 49.0% | LongMemEval paper |
Re-runnable in ~10 seconds. Full instructions, dataset SHA256, raw per-question results, and known-failure analysis: benchmarks/longmemeval/REPRODUCE.md.
You don't need to manually remember everything. MeMesh has 7 hooks that capture and inject knowledge while you work:
| When | What MeMesh does |
|---|---|
| Every session start | Loads your most relevant memories + proactive warnings from past lessons |
| Before editing files | Recalls memories tied to the file or project before Claude writes code |
| When you ask to remember | Detects "remember this" / "guardar en memesh" / "sauvegarder dans memesh" / "記下來" intent (5 languages) and reminds Claude to use memesh |
After every git commit |
Records what you changed, with diff stats |
| When Claude stops | Captures files edited, errors fixed, and auto-generates structured lessons from failures |
| Before context compaction | Saves knowledge before it's lost to context limits |
| Before risky commands and edits | Fires the lesson-guards you accepted — a warning at the exact moment a recorded mistake is about to repeat |
Opt out anytime:
export MEMESH_AUTO_CAPTURE=false
All configuration is via environment variables. Defaults are local-only and zero-network — you don't need to set anything to get a working system.
| Variable | Default | What it does |
|---|---|---|
MEMESH_DB_PATH |
~/.memesh/knowledge-graph.db |
Override the SQLite database location. |
MEMESH_AUTO_CAPTURE |
true |
Disable the auto-capture hooks (Stop, PreCompact) entirely. |
MEMESH_AUTO_DETECT_LLM |
unset (auto-detect on) | Set to 0 to stop memesh using an API key it finds in your shell env. By default, if ANTHROPIC_API_KEY / OPENAI_API_KEY / OLLAMA_HOST is set and you have not configured a provider in ~/.memesh/config.json, memesh uses it for write-side LLM features (lesson extraction, auto-tagging, dream). Embeddings are unaffected — they stay keyword-only (FTS5) unless you explicitly set embedder.provider to ollama or openai. |
MEMESH_AUTO_UPDATE |
off |
Auto-update policy. off (default) never auto-updates; patch allows X.Y.Z → X.Y.Z+N; minor adds X.Y.Z → X.Y+1.0; major allows any bump. When permitted, a detached npm install -g fires at session end (Stop hook) so it never blocks your work — outcomes land in ~/.memesh/auto-update.log. Also settable as autoUpdate in ~/.memesh/config.json (env wins). When the installed version is deprecated by maintainers (security advisory), patch is force-allowed even on off — minor / major bumps still stay manual to avoid silent behaviour drift. |
OPENAI_API_KEY |
unset | Your OpenAI key. Used automatically for LLM features unless you set MEMESH_AUTO_DETECT_LLM=0 or configure a provider explicitly. |
OLLAMA_HOST |
http://localhost:11434 |
Override the Ollama endpoint when using a local Ollama provider. |
memesh doctor prints the resolved configuration so you can see what's active.
Fallback LLM providers (Smart Mode). In the dashboard Settings → "Fallback providers" you can set an ordered failover chain — memesh tries each provider in turn when your primary is down. Add a local Ollama fallback, or a cloud one (OpenAI / Anthropic, with an API key). Privacy tradeoff: when a cloud fallback is used, memory text — which can be private — is sent to that provider, so it matters if you run local-only for privacy.
When npm flags an installed version as deprecated (typically a security advisory), the next session-start prepends a strong ⚠️ MeMesh <ver> is DEPRECATED banner and memesh update-status surfaces the same line until you upgrade. The check is cached at ~/.memesh/update-check.<version>.json so a transient network failure can't dim the warning.
5 tabs, 11 languages, zero external dependencies. Access at http://localhost:3737/dashboard when the server is running.
| Tab | What you see |
|---|---|
| Home | What memesh did for you — dreamer insights lead: weekly recaps and pattern proposals with one-click accept/reject; the full analytics stack (Memory Health Score, 30-day timeline, PM velocity + KG connectivity, work patterns) folds into an on-demand expander |
| Memories | The whole library behind one surface — instant filter plus Enter for server-ranked search (full-text + vector), scope chips for the work layer (goals/decisions/lessons/plans) vs evidence vs all vs archived, a cluster composition bar, per-row expandable detail (lessons keep their structured error/root-cause/fix/prevention view), archive/restore inline |
| Project | One project's history — the roadmap view (phases, milestones, key lessons) behind a project selector |
| Graph | Interactive force-directed knowledge graph with type filters, search, ego mode, recency heatmap |
| Settings | LLM provider config, instant language selector |
🧠 Smart Search — Search "login security" and find memories about "OAuth PKCE". MeMesh uses FTS5 + sqlite-vec on the hot path, LLM-free, and the vector supplement still reaches across related wording.
🌏 Search in scripts that don't use spaces — Chinese, Japanese, Korean, Thai, Lao, Khmer and half-width katakana are indexed as overlapping character pairs, so a memory written as 「資料庫遷移前一定要先備份」 is found by searching 「備份」 — not only by its exact full text. Text is normalised (NFC) on both the write and the query side, so memories typed on macOS or with a Korean or Vietnamese IME are found in either spelling.
📊 Scored Ranking — Results ranked by relevance (30%) + recency (25%) + frequency (18%) + confidence (17%) + recall impact (10%).
🔄 Knowledge Evolution — Decisions change. forget archives old memories (never deletes). supersedes relations link old → new. Your AI always sees the latest version.
memesh dream conflicts has the LLM judge your semantically-closest memory pairs for contradiction, supersession or duplication, and stages what it finds as proposals. Nothing applies itself: you review with dream list / dream show, and only an accepted proposal creates the relation — after which every recall touching either memory carries the warning. Causality is never inferred from timestamps; verdicts come from what the memories actually say.
🕸️ Knowledge Graph Connectivity — memesh kg backfill-relations --all-rules links orphan entities using tag co-occurrence, project clustering, session context, and name similarity — no LLM required.
📦 Team Sharing — memesh export > team-knowledge.json → share with your team → memesh import team-knowledge.json
Imported bundles stay searchable, but MeMesh does not auto-inject imported memories into Claude hooks until you review or re-store them locally.
"MeMesh remembered that we chose PKCE over implicit flow three weeks ago. When I asked Claude about auth again, it already knew — no re-explaining needed." — Solo developer, building a SaaS
"We export our team's memory every Friday and import it Monday. Everyone's Claude starts the week knowing what the team learned last week." — 3-person startup, shared knowledge base
"The dashboard showed me that 90% of my memories were auto-generated session logs. I started using
rememberdeliberately for architecture decisions. Game changer." — Developer who discovered the analytics panel
Two decisions, made weeks apart, that cannot both be true — the failure mode a memory layer exists to catch:
memesh remember --name retry-policy --type decision \
--obs "All HTTP clients retry failed requests up to 5 times with exponential backoff."
# ...weeks later, someone decides the opposite...
memesh remember --name retry-policy-v2 --type decision \
--obs "HTTP clients must never retry automatically — fail fast and surface the error."
memesh dream conflicts # the judge flags the pair, with its reasoning
memesh dream show 1 # read the verdict, the excerpts, what accepting creates
memesh dream accept 1 # YOU decide — nothing is ever linked automatically
memesh recall "retry policy" # → Warning: Conflicts detectedFrom then on, any assistant that recalls either decision is told they conflict — instead of confidently quoting whichever one it found first.
MeMesh is an MCP server, so the same SQLite file serves every MCP client on the machine. Register it once per tool (exact commands in Get Started) and a decision recorded in Claude Code is recalled by Codex or Gemini CLI mid-session — no re-explaining, no copy-pasting context between vendors.
Auto-capture keeps session history, but the memories that pay rent are the deliberate ones:
memesh remember --name auth-approach --type decision \
--obs "JWT with RS256; PKCE over implicit flow because the client is public." \
--tags "project:myapp" "topic:auth"Then link consequences to their causes as they happen — from any MCP client,
in plain words: "remember this incident as a lesson, influenced by
auth-approach". The remember tool takes free-form relations, and caused /
influenced are the documented causal vocabulary (cause → effect, stated
explicitly — MeMesh never infers causality from timestamps). Weeks later,
memesh recall "why did we pick PKCE" returns the decision with its recorded
consequences attached — reasoning you can follow, not just text that matched.
MeMesh works offline by default — recall stays strictly LLM-free (95.60% R@5 on LongMemEval-S out of the box). Add an LLM API key only if you want LLM-augmented analysis flows on top: smarter session extraction, auto-tagging of new memories, lesson generation from failures, and dream compression:
memesh config set llm.provider anthropic
memesh config set llm.api-key sk-ant-...Or use the dashboard Settings tab (visual setup):
memesh serve # opens dashboard → Settings tabMine your past sessions into memory. memesh dream run --from-transcripts reads this project's Claude Code session transcripts, asks the LLM for the decisions and lessons buried in the conversation, and stages them as proposals — nothing enters your graph automatically. Review each with memesh dream show <id> and accept the ones worth keeping. To run it on a schedule, enable memesh config set transcriptMining true and point a cron/launchd entry at memesh dream run --from-transcripts --if-due — it self-throttles (default once every 24h per project) and stays staging-only. See API_REFERENCE.
By default MeMesh does keyword-only recall (FTS5) — no API key, no model download, nothing leaves your machine. Semantic (meaning-based) search is opt-in and needs an embedder. Point one of these at it:
memesh config set embedder.provider ollama # local, needs `ollama serve`
# or, for a hosted embedder:
memesh config set embedder.provider openaiThe embedder is configured independently of the chat LLM — changing llm.provider never silently changes your embeddings. Each provider pins its own model and width (ollama → nomic-embed-text at 768, openai → text-embedding-3-small at 1536); the model is not separately selectable, because a vector index is fixed at one width and a second model would put vectors from a different embedding space into it.
If you switch to an embedder with a different dimension (e.g. 768 → 1536), nothing is deleted. MeMesh keeps the existing index and tells you on open to run memesh reindex, which builds the new index beside the old one and switches over only once every memory has a vector — so an interrupted rebuild costs you nothing and resumes where it stopped. During that window semantic search is off and recall runs on keyword search alone; recall reports this as degraded rather than implying it searched. Supported embedder.provider values: ollama (local), openai (hosted). With none set, recall stays on keyword search.
| Level 0 (default) | Level 1 (Smart Mode) | |
|---|---|---|
| Search | FTS5 + sqlite-vec, 95.60% R@5 | unchanged — recall is LLM-free at every level |
| Auto-capture | Rule-based patterns | + LLM extracts decisions & lessons |
| Auto-tagging | Manual tags only | + LLM generates tags for new memories |
| Failure analysis | Not available | + LLM converts session errors into structured lessons |
| Compression | Not available | dream compress verbose memories |
| Cost | Free, no API key | ~$0.0001 per analysis call (Haiku) |
| Tool | What it does |
|---|---|
remember |
Store knowledge with observations, relations, and tags |
recall |
FTS5 + sqlite-vec search with multi-factor scoring (relevance, recency, frequency, confidence, recall impact) — no LLM in the hot path |
forget |
Soft-archive (never deletes) or remove specific observations |
export |
Share memories as JSON between projects or team members |
import |
Import memories with merge strategies (skip / overwrite / append) |
learn |
Record structured lessons from mistakes (error, root cause, fix, prevention) |
task_state |
Read or record where the work stands — goal, next step, blocker, what was just finished |
briefing |
The assembled work topology — the same block Claude Code gets at session start, for any MCP client |
user_patterns |
Analyze your work patterns — schedule, tools, strengths, learning areas |
┌─────────────────┐
│ Core Engine │
│ (7 operations) │
└────────┬────────┘
┌─────────────────┼─────────────────┐
│ │ │
CLI (memesh) HTTP API (serve) MCP (memesh-mcp)
│ │ │
└─────────────────┼─────────────────┘
│
SQLite + FTS5 + sqlite-vec
(~/.memesh/knowledge-graph.db)
Core is framework-agnostic. Same logic runs from terminal, HTTP, or MCP.
Claude Code's plugin marketplace pins versions at install time and does not auto-update. To pick up a new release:
Option A — /plugin UI: uninstall memesh@pcircle-memesh, then reinstall. Claude Code fetches the latest marketplace version.
Option B — one command (no UI clicking, idempotent; requires the npm CLI, npm install -g @pcircle/memesh):
memesh upgrade-pluginIt finds your installed plugin version, checks the prerequisites, and runs the bundled upgrade script for you. Prerequisites: node, npm and rsync on your PATH (macOS ships rsync; Debian/Ubuntu: sudo apt install rsync).
Plugin-only users without the npm CLI can still run the script by hand — substitute your installed version into the path:
bash ~/.claude/plugins/cache/pcircle-memesh/memesh/<current-version>/scripts/upgrade-plugin.sh
# Installs from before v4.2.5 don't contain the script yet; use the
# npm-global copy instead (see "Install paths at a glance" above):
bash "$(npm prefix -g)/lib/node_modules/@pcircle/memesh/scripts/upgrade-plugin.sh"The script fast-forwards the marketplace cache, stages the new version under ~/.claude/plugins/cache/, installs runtime deps, and re-points installed_plugins.json. Restart Claude Code afterwards so the MCP server reconnects.
npm-global installs (npm install -g @pcircle/memesh) can self-update via memesh update. Source checkouts: git pull && npm install && npm run build.
Session start surfaces a one-line banner (throttled to once per 24h per version) when a newer release is available, and memesh doctor reports the upgrade target with the channel-specific command.
git clone https://github.com/PCIRCLE-AI/memesh
cd memesh && npm install && npm run build
npm test
npm run test:e2e-dashboardDashboard: cd dashboard && npm install && npm run dev
MIT — Made by PCIRCLE AI


