@pcircle/memesh 4.1.5 → 4.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude-plugin/marketplace.json +25 -0
- package/.claude-plugin/plugin.json +1 -1
- package/.mcp.json +2 -1
- package/README.md +20 -3
- package/dist/skills-manifest.json +4 -4
- package/package.json +1 -1
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "pcircle-ai",
|
|
3
|
+
"owner": {
|
|
4
|
+
"name": "PCIRCLE AI"
|
|
5
|
+
},
|
|
6
|
+
"plugins": [
|
|
7
|
+
{
|
|
8
|
+
"name": "memesh",
|
|
9
|
+
"source": "./",
|
|
10
|
+
"description": "MeMesh — Local memory for Claude Code and MCP coding agents. One SQLite file, zero cloud required.",
|
|
11
|
+
"version": "4.1.6",
|
|
12
|
+
"author": {
|
|
13
|
+
"name": "PCIRCLE AI"
|
|
14
|
+
},
|
|
15
|
+
"homepage": "https://pcircle.ai/memesh-llm-memory",
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"keywords": [
|
|
18
|
+
"claude-code",
|
|
19
|
+
"mcp",
|
|
20
|
+
"knowledge-graph",
|
|
21
|
+
"ai-memory"
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
]
|
|
25
|
+
}
|
package/.mcp.json
CHANGED
package/README.md
CHANGED
|
@@ -44,7 +44,20 @@ Reproduction commands, dataset SHA256, raw per-question results, and known-failu
|
|
|
44
44
|
|
|
45
45
|
## Get Started in 60 Seconds
|
|
46
46
|
|
|
47
|
-
###
|
|
47
|
+
### Option A — Claude Code plugin (one-line install)
|
|
48
|
+
|
|
49
|
+
If you use Claude Code, install MeMesh as a plugin from inside the CLI:
|
|
50
|
+
|
|
51
|
+
```
|
|
52
|
+
/plugin marketplace add PCIRCLE-AI/memesh-llm-memory
|
|
53
|
+
/plugin install memesh@pcircle-ai
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
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. The CLI and the local dashboard are also fully accessible without any extra global install — `npx @pcircle/memesh <command>` runs every CLI command, and `npx @pcircle/memesh` launches the dashboard at `localhost:3737`. The MCP server uses the same `npx`-based launch pattern as Anthropic's official plugins (e.g. `context7`), so no `npm install -g` is needed for any feature.
|
|
57
|
+
|
|
58
|
+
### Option B — npm global (optional optimisation)
|
|
59
|
+
|
|
60
|
+
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** (Cursor, Cline, terminal-only flows):
|
|
48
61
|
|
|
49
62
|
```bash
|
|
50
63
|
npm install -g @pcircle/memesh
|
|
@@ -54,9 +67,11 @@ npm install -g @pcircle/memesh
|
|
|
54
67
|
> - **Native modules** — `better-sqlite3` and `sqlite-vec` install via prebuilt binaries on macOS (arm64/x64), Linux (x64/arm64), and Windows x64. On uncommon platforms or when prebuilds fail, you'll need a working C/C++ toolchain.
|
|
55
68
|
> - **Embedding model** — the first call that triggers a local embedding (e.g. `recall` with semantic mode) downloads `Xenova/all-MiniLM-L6-v2` (~80 MB) into `~/.memesh/models/`. Subsequent calls are instant. The default retrieval path (FTS5) does not require this download.
|
|
56
69
|
|
|
57
|
-
### Step 1.5: Wire MeMesh into Claude Code (
|
|
70
|
+
### Step 1.5: Wire MeMesh into Claude Code (npm path only)
|
|
58
71
|
|
|
59
|
-
|
|
72
|
+
If you installed via **Option A** (`/plugin install memesh@pcircle-ai`), skip this step — Claude Code wires plugin hooks automatically.
|
|
73
|
+
|
|
74
|
+
If you installed via **Option B** (`npm install -g`), the CLI is on your PATH and the MCP server is registered, but the Claude Code session hooks are not auto-wired. Without them you can still use `memesh remember` / `recall` manually, but the **auto-capture loop** (sessions → lessons → recall on next session) is silent.
|
|
60
75
|
|
|
61
76
|
```bash
|
|
62
77
|
memesh install-hooks # adds memesh's hooks to ~/.claude/settings.json
|
|
@@ -67,6 +82,8 @@ The hooks coexist with any custom hooks you already have under `~/.claude/hooks/
|
|
|
67
82
|
|
|
68
83
|
### Step 2: Store a decision
|
|
69
84
|
|
|
85
|
+
> The bash examples below assume `memesh` is on your `PATH` (Option B). Option A (plugin-only) users have two equivalent paths: ask in the Claude Code conversation (the `/memesh` skill + MCP tools cover the same flows), or replace `memesh` with `npx @pcircle/memesh` in any shell — same flags, no global install needed.
|
|
86
|
+
|
|
70
87
|
```bash
|
|
71
88
|
memesh remember "Use OAuth 2.0 with PKCE for the new auth"
|
|
72
89
|
```
|
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema": "memesh.skills-manifest/v1",
|
|
3
|
-
"generated_at": "2026-05-
|
|
3
|
+
"generated_at": "2026-05-08T22:07:08.903Z",
|
|
4
4
|
"entries": [
|
|
5
5
|
{
|
|
6
6
|
"path": ".claude-plugin/plugin.json",
|
|
7
|
-
"sha256": "
|
|
7
|
+
"sha256": "6082619b2e09b644d257bc2250b945025cf570090b30782bada5a8ac9bece34f",
|
|
8
8
|
"bytes": 441
|
|
9
9
|
},
|
|
10
10
|
{
|
|
11
11
|
"path": ".mcp.json",
|
|
12
|
-
"sha256": "
|
|
13
|
-
"bytes":
|
|
12
|
+
"sha256": "51a8f054a6388ae093597ffde4d09acb4693de5f026fc1156a49647dca60d12f",
|
|
13
|
+
"bytes": 132
|
|
14
14
|
},
|
|
15
15
|
{
|
|
16
16
|
"path": "hooks/hooks.json",
|
package/package.json
CHANGED