claude-mem 13.9.1 → 13.9.2
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/.codex-plugin/plugin.json +1 -1
- package/dist/index.js +127 -10
- package/dist/index.js.map +1 -1
- package/dist/npx-cli/index.js +285 -252
- package/dist/opencode-plugin/index.js +7 -7
- package/dist/sdk/index.d.ts +48 -0
- package/dist/sdk/index.js +127 -10
- package/dist/sdk/index.js.map +1 -1
- package/openclaw/install.sh +0 -2
- package/openclaw/openclaw.plugin.json +1 -1
- package/package.json +1 -1
- package/plugin/.claude-plugin/plugin.json +1 -1
- package/plugin/.codex-plugin/plugin.json +1 -1
- package/plugin/package.json +1 -1
- package/plugin/scripts/context-generator.cjs +60 -60
- package/plugin/scripts/mcp-server.cjs +19 -19
- package/plugin/scripts/server-service.cjs +210 -157
- package/plugin/scripts/transcript-watcher.cjs +10 -10
- package/plugin/scripts/worker-cli.js +1 -1
- package/plugin/scripts/worker-service.cjs +110 -110
package/openclaw/install.sh
CHANGED
|
@@ -985,8 +985,6 @@ write_settings() {
|
|
|
985
985
|
CLAUDE_MEM_OPENROUTER_MODEL: 'xiaomi/mimo-v2-flash:free',
|
|
986
986
|
CLAUDE_MEM_OPENROUTER_SITE_URL: '',
|
|
987
987
|
CLAUDE_MEM_OPENROUTER_APP_NAME: 'claude-mem',
|
|
988
|
-
CLAUDE_MEM_OPENROUTER_MAX_CONTEXT_MESSAGES: '20',
|
|
989
|
-
CLAUDE_MEM_OPENROUTER_MAX_TOKENS: '100000',
|
|
990
988
|
CLAUDE_MEM_DATA_DIR: path.join(homedir, '.claude-mem'),
|
|
991
989
|
CLAUDE_MEM_LOG_LEVEL: 'INFO',
|
|
992
990
|
CLAUDE_MEM_PYTHON_VERSION: '3.13',
|
|
@@ -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.
|
|
6
|
+
"version": "13.9.2",
|
|
7
7
|
"license": "Apache-2.0",
|
|
8
8
|
"author": "thedotmack",
|
|
9
9
|
"homepage": "https://claude-mem.ai",
|
package/package.json
CHANGED