claude-mem 13.9.2 → 13.9.3

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.
@@ -3,7 +3,7 @@
3
3
  "name": "Claude-Mem (Persistent Memory)",
4
4
  "description": "OpenClaw plugin for Claude-Mem. Records observations from embedded runner sessions and streams them to messaging channels.",
5
5
  "kind": "memory",
6
- "version": "13.9.2",
6
+ "version": "13.9.3",
7
7
  "license": "Apache-2.0",
8
8
  "author": "thedotmack",
9
9
  "homepage": "https://claude-mem.ai",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-mem",
3
- "version": "13.9.2",
3
+ "version": "13.9.3",
4
4
  "description": "Memory compression system for Claude Code - persist context across sessions",
5
5
  "keywords": [
6
6
  "claude",
@@ -30,14 +30,6 @@
30
30
  "claude-mem": "./dist/npx-cli/index.js"
31
31
  },
32
32
  "exports": {
33
- ".": {
34
- "types": "./dist/index.d.ts",
35
- "import": "./dist/index.js"
36
- },
37
- "./sdk": {
38
- "types": "./dist/sdk/index.d.ts",
39
- "import": "./dist/sdk/index.js"
40
- },
41
33
  "./modes/*": "./plugin/modes/*"
42
34
  },
43
35
  "files": [
@@ -63,9 +55,7 @@
63
55
  },
64
56
  "scripts": {
65
57
  "dev": "npm run build-and-sync",
66
- "build": "node scripts/sync-plugin-manifests.js && node scripts/build-hooks.js && node scripts/gen-plugin-lockfile.cjs && npm run build:sdk && npm run check:sdk-bundle",
67
- "build:sdk": "tsup",
68
- "check:sdk-bundle": "node scripts/check-sdk-bundle.cjs",
58
+ "build": "node scripts/sync-plugin-manifests.js && node scripts/build-hooks.js && node scripts/gen-plugin-lockfile.cjs",
69
59
  "build-and-sync": "npm run build && npm run sync-marketplace && (cd ~/.claude/plugins/marketplaces/thedotmack && npm run worker:restart)",
70
60
  "sync-marketplace": "node scripts/sync-marketplace.cjs",
71
61
  "sync-marketplace:force": "node scripts/sync-marketplace.cjs --force",
@@ -94,7 +84,7 @@
94
84
  "translate:tier3": "npm run translate-readme -- vi id th hi bn ro sv",
95
85
  "translate:tier4": "npm run translate-readme -- it el hu fi da no",
96
86
  "translate:all": "npm run translate:tier1 & npm run translate:tier2 & npm run translate:tier3 & npm run translate:tier4 & wait",
97
- "bug-report": "npx tsx scripts/bug-report/cli.ts",
87
+ "bug-report": "bun scripts/bug-report/cli.ts",
98
88
  "cursor:install": "bun plugin/scripts/worker-service.cjs cursor install",
99
89
  "cursor:uninstall": "bun plugin/scripts/worker-service.cjs cursor uninstall",
100
90
  "cursor:status": "bun plugin/scripts/worker-service.cjs cursor status",
@@ -128,33 +118,27 @@
128
118
  },
129
119
  "dependencies": {
130
120
  "@better-auth/api-key": "^1.6.16",
131
- "@modelcontextprotocol/sdk": "^1.29.0",
132
- "better-auth": "^1.6.16",
133
- "pg": "^8.20.0",
134
- "zod": "^4.4.3"
121
+ "better-auth": "^1.6.16"
135
122
  },
136
- "//dependencies-note": "Only deps that survive the bundler as live `import`/`require` in a shipped artifact live here — pg + zod + @modelcontextprotocol/sdk back `claude-mem/sdk`; better-auth (+ api-key) is the server-runtime auth surface. Everything else (express, bullmq, ioredis, react, react-dom, cors, dompurify, handlebars, @clack/prompts, ansi-to-html, glob, picocolors, posthog-node, shell-quote, yaml, zod-to-json-schema, @anthropic-ai/claude-agent-sdk) is esbuild-inlined into the worker/server/npx bundles, so it is a build-time devDependency and is NOT downloaded by `claude-mem/sdk` consumers. Verify with scripts/check-sdk-bundle.cjs + the dep scan before promoting anything back.",
123
+ "//dependencies-note": "Only deps that survive the bundler as a live `import`/`require` in a shipped artifact live here — better-auth (+ api-key) is the server-runtime auth surface, externalized from the worker bundle deliberately (see scripts/build-hooks.js). Everything else (express, bullmq, ioredis, react, react-dom, dompurify, @clack/prompts, ansi-to-html, posthog-node, shell-quote, pg, zod, @modelcontextprotocol/sdk, @anthropic-ai/claude-agent-sdk) is esbuild-inlined into the worker/server/npx bundles (or, for zod's plugin runtime copy, resolved from plugin/package.json's own dependency), so it is a build-time devDependency and is not downloaded by consumers of the `claude-mem` package.",
137
124
  "overrides": {
138
125
  "tmp": "^0.2.7"
139
126
  },
140
127
  "devDependencies": {
141
128
  "@anthropic-ai/claude-agent-sdk": "^0.3.172",
142
129
  "@clack/prompts": "^1.3.0",
130
+ "@modelcontextprotocol/sdk": "^1.29.0",
143
131
  "ansi-to-html": "^0.7.2",
144
132
  "bullmq": "^5.76.6",
145
- "cors": "^2.8.6",
146
133
  "dompurify": "^3.4.9",
147
134
  "express": "^5.2.1",
148
- "glob": "^13.0.6",
149
- "handlebars": "^4.7.9",
150
135
  "ioredis": "^5.10.1",
151
- "picocolors": "^1.1.1",
136
+ "pg": "^8.20.0",
152
137
  "posthog-node": "^5.36.15",
153
138
  "react": "^19.2.6",
154
139
  "react-dom": "^19.2.6",
155
140
  "shell-quote": "^1.8.3",
156
- "yaml": "^2.8.4",
157
- "zod-to-json-schema": "^3.25.2",
141
+ "zod": "^4.4.3",
158
142
  "@derekstride/tree-sitter-sql": "^0.3.11",
159
143
  "@tree-sitter-grammars/tree-sitter-lua": "^0.4.1",
160
144
  "@tree-sitter-grammars/tree-sitter-markdown": "^0.3.2",
@@ -162,14 +146,12 @@
162
146
  "@tree-sitter-grammars/tree-sitter-yaml": "^0.7.1",
163
147
  "@tree-sitter-grammars/tree-sitter-zig": "^1.1.2",
164
148
  "@types/bun": "^1.3.13",
165
- "@types/cors": "^2.8.19",
166
149
  "@types/express": "^5.0.6",
167
150
  "@types/node": "^25.9.2",
168
151
  "@types/pg": "^8.20.0",
169
152
  "@types/react": "^19.2.17",
170
153
  "@types/react-dom": "^19.2.3",
171
154
  "esbuild": "^0.28.0",
172
- "jimp": "^1.6.1",
173
155
  "np": "^11.2.0",
174
156
  "parse5": "^8.0.1",
175
157
  "postcss": "^8.5.14",
@@ -180,7 +162,6 @@
180
162
  "tree-sitter-cli": "^0.26.8",
181
163
  "tree-sitter-cpp": "^0.23.4",
182
164
  "tree-sitter-css": "^0.25.0",
183
- "tree-sitter-elixir": "^0.3.5",
184
165
  "tree-sitter-go": "^0.25.0",
185
166
  "tree-sitter-haskell": "^0.23.1",
186
167
  "tree-sitter-java": "^0.23.5",
@@ -194,16 +175,11 @@
194
175
  "tree-sitter-scss": "^1.0.0",
195
176
  "tree-sitter-swift": "^0.7.1",
196
177
  "tree-sitter-typescript": "^0.23.2",
197
- "ts-prune": "^0.10.3",
198
178
  "tsup": "^8.5.1",
199
- "tsx": "^4.21.0",
200
179
  "typescript": "^6.0.3",
201
180
  "unified": "^11.0.5",
202
181
  "unist-util-visit": "^5.1.0"
203
182
  },
204
- "optionalDependencies": {
205
- "tree-kill": "^1.2.2"
206
- },
207
183
  "trustedDependencies": [
208
184
  "esbuild",
209
185
  "tree-sitter-c",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-mem",
3
- "version": "13.9.2",
3
+ "version": "13.9.3",
4
4
  "description": "Memory compression system for Claude Code - persist context across sessions",
5
5
  "author": {
6
6
  "name": "Alex Newman"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-mem",
3
- "version": "13.9.2",
3
+ "version": "13.9.3",
4
4
  "description": "Memory compression system for Claude Code - persist context across sessions",
5
5
  "author": {
6
6
  "name": "Alex Newman",
package/plugin/bun.lock CHANGED
@@ -17,7 +17,6 @@
17
17
  "tree-sitter-cli": "^0.26.5",
18
18
  "tree-sitter-cpp": "^0.23.4",
19
19
  "tree-sitter-css": "^0.25.0",
20
- "tree-sitter-elixir": "^0.3.5",
21
20
  "tree-sitter-go": "^0.25.0",
22
21
  "tree-sitter-haskell": "^0.23.1",
23
22
  "tree-sitter-java": "^0.23.5",
@@ -76,8 +75,6 @@
76
75
 
77
76
  "tree-sitter-css": ["tree-sitter-css@0.25.0", "", { "dependencies": { "node-addon-api": "^8.5.0", "node-gyp-build": "^4.8.4" }, "peerDependencies": { "tree-sitter": "^0.25.0" }, "optionalPeers": ["tree-sitter"] }, "sha512-FRc9R8ePrwJiUhZsuZ/wcFQ3K8Z+9yCgDrrUjuYswGWlN89UvcB9vslTUGZElQWGwhS8sUw3/r2n4lpb2sxT4Q=="],
78
77
 
79
- "tree-sitter-elixir": ["tree-sitter-elixir@0.3.5", "", { "dependencies": { "node-addon-api": "^7.1.0", "node-gyp-build": "^4.8.0" }, "peerDependencies": { "tree-sitter": "^0.21.0" } }, "sha512-xozQMvYK0aSolcQZAx2d84Xe/YMWFuRPYFlLVxO01bM2GITh5jyiIp0TqPCQa8754UzRAI7A83hZmfiYub5TZQ=="],
80
-
81
78
  "tree-sitter-go": ["tree-sitter-go@0.25.0", "", { "dependencies": { "node-addon-api": "^8.3.1", "node-gyp-build": "^4.8.4" }, "peerDependencies": { "tree-sitter": "^0.25.0" }, "optionalPeers": ["tree-sitter"] }, "sha512-APBc/Dq3xz/e35Xpkhb1blu5UgW+2E3RyGWawZSCNcbGwa7jhSQPS8KsUupuzBla8PCo8+lz9W/JDJjmfRa2tw=="],
82
79
 
83
80
  "tree-sitter-haskell": ["tree-sitter-haskell@0.23.1", "", { "dependencies": { "node-addon-api": "^8.2.2", "node-gyp-build": "^4.8.2" }, "peerDependencies": { "tree-sitter": "^0.21.1" }, "optionalPeers": ["tree-sitter"] }, "sha512-qG4CYhejveu9DLMLEGBz/n9/TTeGSFLC6wniwOgG6m8/v7Dng8qR0ob0EVG7+XH+9WiOxohpGA23EhceWuxY4w=="],
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-mem-plugin",
3
- "version": "13.9.2",
3
+ "version": "13.9.3",
4
4
  "private": true,
5
5
  "description": "Runtime dependencies for claude-mem bundled hooks",
6
6
  "type": "module",
@@ -19,7 +19,6 @@
19
19
  "tree-sitter-kotlin": "^0.3.8",
20
20
  "tree-sitter-swift": "^0.7.1",
21
21
  "tree-sitter-php": "^0.24.2",
22
- "tree-sitter-elixir": "^0.3.5",
23
22
  "@tree-sitter-grammars/tree-sitter-lua": "^0.4.1",
24
23
  "tree-sitter-scala": "^0.24.0",
25
24
  "tree-sitter-bash": "^0.25.1",