keepmind 1.0.1 → 1.1.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keepmind",
3
- "version": "1.0.1",
3
+ "version": "1.1.1",
4
4
  "description": "Memory compression system for Claude Code - persist context across sessions (node-only fork of claude-mem)",
5
5
  "keywords": [
6
6
  "claude",
@@ -105,23 +105,12 @@
105
105
  },
106
106
  "//dependencies-note": "Local-only fork: the cloud/SaaS layer (Postgres + BullMQ + better-auth) and the `claude-mem/sdk` export were removed, so pg/better-auth/@better-auth/api-key/bullmq/ioredis are gone. zod + @modelcontextprotocol/sdk survive the bundler as live `import`/`require` in a shipped artifact (the mcp-server bundles zod). @huggingface/transformers + sqlite-vec power the in-process vector search (Phase 2, replacing the chroma-mcp/uvx subprocess) and are intentionally EXTERNALIZED from the worker bundle — transformers pulls onnxruntime-node (.node) and sqlite-vec loads a per-platform .dll/.so via getLoadablePath(), neither of which can be esbuild-inlined; they resolve from node_modules (and the generated plugin/package.json) at runtime. Everything else (express, react, react-dom, cors, dompurify, handlebars, @clack/prompts, ansi-to-html, glob, picocolors, shell-quote, yaml, zod-to-json-schema, @anthropic-ai/claude-agent-sdk) is esbuild-inlined into the worker/npx bundles, so it is a build-time devDependency.",
107
107
  "overrides": {
108
- "tmp": "^0.2.7"
108
+ "tmp": "^0.2.7",
109
+ "esbuild": "^0.28.0"
109
110
  },
110
111
  "devDependencies": {
111
- "@anthropic-ai/claude-agent-sdk": "^0.3.172",
112
+ "@anthropic-ai/claude-agent-sdk": "^0.3.197",
112
113
  "@clack/prompts": "^1.3.0",
113
- "ansi-to-html": "^0.7.2",
114
- "cors": "^2.8.6",
115
- "dompurify": "^3.4.9",
116
- "express": "^5.2.1",
117
- "glob": "^13.0.6",
118
- "handlebars": "^4.7.9",
119
- "picocolors": "^1.1.1",
120
- "react": "^19.2.6",
121
- "react-dom": "^19.2.6",
122
- "shell-quote": "^1.8.3",
123
- "yaml": "^2.8.4",
124
- "zod-to-json-schema": "^3.25.2",
125
114
  "@derekstride/tree-sitter-sql": "^0.3.11",
126
115
  "@tree-sitter-grammars/tree-sitter-lua": "^0.4.1",
127
116
  "@tree-sitter-grammars/tree-sitter-markdown": "^0.3.2",
@@ -131,19 +120,29 @@
131
120
  "@types/bun": "^1.3.13",
132
121
  "@types/cors": "^2.8.19",
133
122
  "@types/express": "^5.0.6",
134
- "@types/node": "^25.9.2",
123
+ "@types/node": "^26.1.0",
135
124
  "@types/react": "^19.2.17",
136
125
  "@types/react-dom": "^19.2.3",
126
+ "ansi-to-html": "^0.7.2",
127
+ "cors": "^2.8.6",
128
+ "dompurify": "^3.4.9",
137
129
  "esbuild": "^0.28.0",
130
+ "express": "^5.2.1",
131
+ "glob": "^13.0.6",
132
+ "handlebars": "^4.7.9",
138
133
  "jimp": "^1.6.1",
139
134
  "np": "^11.2.0",
140
135
  "parse5": "^8.0.1",
136
+ "picocolors": "^1.1.1",
141
137
  "postcss": "^8.5.14",
138
+ "react": "^19.2.6",
139
+ "react-dom": "^19.2.6",
142
140
  "remark-mdx": "^3.1.1",
143
141
  "remark-parse": "^11.0.0",
142
+ "shell-quote": "^1.9.0",
144
143
  "tree-sitter-bash": "^0.25.1",
145
144
  "tree-sitter-c": "^0.24.1",
146
- "tree-sitter-cli": "^0.26.8",
145
+ "tree-sitter-cli": "^0.26.10",
147
146
  "tree-sitter-cpp": "^0.23.4",
148
147
  "tree-sitter-css": "^0.25.0",
149
148
  "tree-sitter-elixir": "^0.3.5",
@@ -165,7 +164,9 @@
165
164
  "tsx": "^4.21.0",
166
165
  "typescript": "^6.0.3",
167
166
  "unified": "^11.0.5",
168
- "unist-util-visit": "^5.1.0"
167
+ "unist-util-visit": "^5.1.0",
168
+ "yaml": "^2.8.4",
169
+ "zod-to-json-schema": "^3.25.2"
169
170
  },
170
171
  "optionalDependencies": {
171
172
  "tree-kill": "^1.2.2"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keepmind",
3
- "version": "1.0.1",
3
+ "version": "1.1.1",
4
4
  "description": "Memory compression system for Claude Code - persist context across sessions (node-only fork of claude-mem)",
5
5
  "author": {
6
6
  "name": "Manuel Staggl"
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keepmind",
3
- "version": "1.0.1",
3
+ "version": "1.1.1",
4
4
  "description": "Memory compression system for Claude Code - persist context across sessions (node-only fork of claude-mem)",
5
5
  "author": {
6
6
  "name": "Manuel Staggl",
package/plugin/bun.lock CHANGED
@@ -12,11 +12,11 @@
12
12
  "@tree-sitter-grammars/tree-sitter-toml": "^0.7.0",
13
13
  "@tree-sitter-grammars/tree-sitter-yaml": "^0.7.1",
14
14
  "@tree-sitter-grammars/tree-sitter-zig": "^1.1.2",
15
- "shell-quote": "^1.8.3",
15
+ "shell-quote": "^1.9.0",
16
16
  "sqlite-vec": "^0.1.9",
17
17
  "tree-sitter-bash": "^0.25.1",
18
18
  "tree-sitter-c": "^0.24.1",
19
- "tree-sitter-cli": "^0.26.5",
19
+ "tree-sitter-cli": "^0.26.10",
20
20
  "tree-sitter-cpp": "^0.23.4",
21
21
  "tree-sitter-css": "^0.25.0",
22
22
  "tree-sitter-elixir": "^0.3.5",
@@ -202,7 +202,7 @@
202
202
 
203
203
  "sharp": ["sharp@0.34.5", "", { "dependencies": { "@img/colour": "^1.0.0", "detect-libc": "^2.1.2", "semver": "^7.7.3" }, "optionalDependencies": { "@img/sharp-darwin-arm64": "0.34.5", "@img/sharp-darwin-x64": "0.34.5", "@img/sharp-libvips-darwin-arm64": "1.2.4", "@img/sharp-libvips-darwin-x64": "1.2.4", "@img/sharp-libvips-linux-arm": "1.2.4", "@img/sharp-libvips-linux-arm64": "1.2.4", "@img/sharp-libvips-linux-ppc64": "1.2.4", "@img/sharp-libvips-linux-riscv64": "1.2.4", "@img/sharp-libvips-linux-s390x": "1.2.4", "@img/sharp-libvips-linux-x64": "1.2.4", "@img/sharp-libvips-linuxmusl-arm64": "1.2.4", "@img/sharp-libvips-linuxmusl-x64": "1.2.4", "@img/sharp-linux-arm": "0.34.5", "@img/sharp-linux-arm64": "0.34.5", "@img/sharp-linux-ppc64": "0.34.5", "@img/sharp-linux-riscv64": "0.34.5", "@img/sharp-linux-s390x": "0.34.5", "@img/sharp-linux-x64": "0.34.5", "@img/sharp-linuxmusl-arm64": "0.34.5", "@img/sharp-linuxmusl-x64": "0.34.5", "@img/sharp-wasm32": "0.34.5", "@img/sharp-win32-arm64": "0.34.5", "@img/sharp-win32-ia32": "0.34.5", "@img/sharp-win32-x64": "0.34.5" } }, "sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg=="],
204
204
 
205
- "shell-quote": ["shell-quote@1.8.4", "", {}, "sha512-VsC6n6vz1ihYYyZZwX7YZSF5l5x36ca17OC+a69h94YqB7X6XLwf+5MOgynYir2SLFUbl8gIYvBo8K8RoNQ6bQ=="],
205
+ "shell-quote": ["shell-quote@1.9.0", "", {}, "sha512-Iov+JwFv/2HcTpcwNMKd8+IWNb8tboQJNQTkAY/LLVK7gGH9jy+LGkVqPxfekHl+yMmiqXszdGWXgkfml7hjqA=="],
206
206
 
207
207
  "sprintf-js": ["sprintf-js@1.1.3", "", {}, "sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA=="],
208
208
 
@@ -224,7 +224,7 @@
224
224
 
225
225
  "tree-sitter-c": ["tree-sitter-c@0.24.1", "", { "dependencies": { "node-addon-api": "^8.3.1", "node-gyp-build": "^4.8.4" }, "peerDependencies": { "tree-sitter": "^0.22.4" }, "optionalPeers": ["tree-sitter"] }, "sha512-lkYwWN3SRecpvaeqmFKkuPNR3ZbtnvHU+4XAEEkJdrp3JfSp2pBrhXOtvfsENUneye76g889Y0ddF2DM0gEDpA=="],
226
226
 
227
- "tree-sitter-cli": ["tree-sitter-cli@0.26.9", "", { "bin": { "tree-sitter": "cli.js" } }, "sha512-7l+U1RmazPVe+yA/JiX80GFOILnL/j24GbawamIzNQC8UlINrcyECbaWGaG1wuq4j/m0DQTx7Uu4r0iW9Ao1BQ=="],
227
+ "tree-sitter-cli": ["tree-sitter-cli@0.26.10", "", { "bin": { "tree-sitter": "cli.js" } }, "sha512-RTse32x5YWOrEtH7wos8ODt3yyB7SKgmGN70jC7R+WcnDA64vrpYU98+LnwrwdXMlxgr0LGQdezZz85DN8Wv0w=="],
228
228
 
229
229
  "tree-sitter-cpp": ["tree-sitter-cpp@0.23.4", "", { "dependencies": { "node-addon-api": "^8.2.1", "node-gyp-build": "^4.8.2", "tree-sitter-c": "^0.23.1" }, "peerDependencies": { "tree-sitter": "^0.21.1" }, "optionalPeers": ["tree-sitter"] }, "sha512-qR5qUDyhZ5jJ6V8/umiBxokRbe89bCGmcq/dk94wI4kN86qfdV8k0GHIUEKaqWgcu42wKal5E97LKpLeVW8sKw=="],
230
230
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "keepmind-plugin",
3
- "version": "1.0.1",
3
+ "version": "1.1.1",
4
4
  "private": true,
5
5
  "description": "Runtime dependencies for keepmind bundled hooks",
6
6
  "type": "module",
@@ -8,7 +8,7 @@
8
8
  "zod": "^4.4.3",
9
9
  "@huggingface/transformers": "^4.2.0",
10
10
  "sqlite-vec": "^0.1.9",
11
- "tree-sitter-cli": "^0.26.5",
11
+ "tree-sitter-cli": "^0.26.10",
12
12
  "tree-sitter-c": "^0.24.1",
13
13
  "tree-sitter-cpp": "^0.23.4",
14
14
  "tree-sitter-go": "^0.25.0",
@@ -33,7 +33,7 @@
33
33
  "@tree-sitter-grammars/tree-sitter-yaml": "^0.7.1",
34
34
  "@derekstride/tree-sitter-sql": "^0.3.11",
35
35
  "@tree-sitter-grammars/tree-sitter-markdown": "^0.3.2",
36
- "shell-quote": "^1.8.3"
36
+ "shell-quote": "^1.9.0"
37
37
  },
38
38
  "overrides": {
39
39
  "tree-sitter": "^0.25.0"