@memtensor/memos-local-openclaw-plugin 0.1.8 → 0.1.9
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/openclaw.plugin.json +2 -2
- package/package.json +3 -1
package/openclaw.plugin.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"name": "MemOS Local Memory",
|
|
4
4
|
"description": "Full-write local conversation memory with hybrid search (RRF + MMR + recency). Provides memory_search, memory_get, task_summary, memory_timeline, memory_viewer for layered retrieval.",
|
|
5
5
|
"kind": "memory",
|
|
6
|
-
"version": "0.1.
|
|
6
|
+
"version": "0.1.9",
|
|
7
7
|
"homepage": "https://github.com/MemTensor/MemOS/tree/main/apps/memos-local-openclaw",
|
|
8
8
|
"configSchema": {
|
|
9
9
|
"type": "object",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"openclaw": ">=2026.2.0"
|
|
22
22
|
},
|
|
23
23
|
"setup": {
|
|
24
|
-
"postInstall": "npm install --omit=dev",
|
|
24
|
+
"postInstall": "npm install --omit=dev && npm rebuild better-sqlite3",
|
|
25
25
|
"notes": [
|
|
26
26
|
"After install, add to ~/.openclaw/openclaw.json: plugins.slots.memory = \"memos-local\"",
|
|
27
27
|
"Set agents.defaults.memorySearch.enabled = false to disable OpenClaw's built-in memory",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memtensor/memos-local-openclaw-plugin",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9",
|
|
4
4
|
"description": "MemOS Local memory plugin for OpenClaw — full-write, hybrid-recall, progressive retrieval",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.ts",
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
".env.example"
|
|
16
16
|
],
|
|
17
17
|
"openclaw": {
|
|
18
|
+
"id": "memos-local",
|
|
18
19
|
"extensions": [
|
|
19
20
|
"./index.ts"
|
|
20
21
|
],
|
|
@@ -26,6 +27,7 @@
|
|
|
26
27
|
"lint": "eslint src --ext .ts",
|
|
27
28
|
"test": "vitest run",
|
|
28
29
|
"test:watch": "vitest",
|
|
30
|
+
"postinstall": "npm rebuild better-sqlite3 2>/dev/null || true",
|
|
29
31
|
"prepublishOnly": "npm run build"
|
|
30
32
|
},
|
|
31
33
|
"keywords": [
|