@xdarkicex/openclaw-memory-libravdb 1.8.8 → 1.8.10
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/dist/context-engine.js +26 -11
- package/dist/index.js +22048 -13307
- package/dist/markdown-ingest.d.ts +1 -1
- package/dist/memory-tools.js +1 -1
- package/dist/tools/memory-recall.js +3 -1
- package/openclaw.plugin.json +5 -2
- package/package.json +14 -8
package/dist/memory-tools.js
CHANGED
|
@@ -126,7 +126,7 @@ export function createLibraVdbMemoryTools(getClient, cfg, logger = console) {
|
|
|
126
126
|
return {
|
|
127
127
|
name: "memory_search",
|
|
128
128
|
label: "Memory Search",
|
|
129
|
-
description: "Search LibraVDB durable memory and session recall for prior work, decisions, dates, people, preferences, todos, or history. Call once per user question — after receiving results, use them directly. Do not re-call in the same turn. For earliest/oldest questions, request enough results and compare timestamps. If disabled=true, memory is unavailable.",
|
|
129
|
+
description: "Search LibraVDB durable memory and session recall for prior work, decisions, dates, people, preferences, todos, or history. Call once per user question — after receiving results, use them directly. Do not re-call in the same turn. Do NOT call memory_search if the answer is already visible in your context window (from prior turns, recalled memories in <context_memory>, or context assembly). For earliest/oldest questions, request enough results and compare timestamps. If disabled=true, memory is unavailable.",
|
|
130
130
|
parameters: MEMORY_SEARCH_SCHEMA,
|
|
131
131
|
execute: async (_toolCallId, rawParams) => {
|
|
132
132
|
const params = asToolParamsRecord(rawParams);
|
|
@@ -301,7 +301,9 @@ export function createMemoryGrepTool(getClient, getSessionId = () => undefined,
|
|
|
301
301
|
label: "Memory Grep",
|
|
302
302
|
description: "Search compacted conversation history by text or regex pattern. " +
|
|
303
303
|
"Searches across session summaries and raw turns. Returns matching snippets " +
|
|
304
|
-
"with summary/turn IDs for follow-up with memory_describe or memory_expand."
|
|
304
|
+
"with summary/turn IDs for follow-up with memory_describe or memory_expand. " +
|
|
305
|
+
"Do NOT call if the information is already visible in your context window " +
|
|
306
|
+
"(from prior turns, <context_memory> blocks, or context assembly).",
|
|
305
307
|
parameters: MEMORY_GREP_SCHEMA,
|
|
306
308
|
execute: async (_toolCallId, rawParams) => {
|
|
307
309
|
const params = asParams(rawParams);
|
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "libravdb-memory",
|
|
3
3
|
"name": "LibraVDB Memory",
|
|
4
4
|
"description": "Persistent vector memory with three-tier hybrid scoring",
|
|
5
|
-
"version": "1.8.
|
|
5
|
+
"version": "1.8.10",
|
|
6
6
|
"kind": [
|
|
7
7
|
"memory",
|
|
8
8
|
"context-engine"
|
|
@@ -12,7 +12,10 @@
|
|
|
12
12
|
"contextEngine": true,
|
|
13
13
|
"tools": [
|
|
14
14
|
"memory_search",
|
|
15
|
-
"memory_get"
|
|
15
|
+
"memory_get",
|
|
16
|
+
"memory_describe",
|
|
17
|
+
"memory_expand",
|
|
18
|
+
"memory_grep"
|
|
16
19
|
]
|
|
17
20
|
},
|
|
18
21
|
"activation": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xdarkicex/openclaw-memory-libravdb",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.10",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -39,19 +39,20 @@
|
|
|
39
39
|
"minGatewayVersion": ">=2026.3.22"
|
|
40
40
|
},
|
|
41
41
|
"build": {
|
|
42
|
-
"openclawVersion": "2026.4.
|
|
43
|
-
"pluginSdkVersion": "2026.4.
|
|
42
|
+
"openclawVersion": "2026.4.23",
|
|
43
|
+
"pluginSdkVersion": "2026.4.23"
|
|
44
44
|
},
|
|
45
45
|
"install": {
|
|
46
|
-
"minHostVersion": ">=2026.4.
|
|
46
|
+
"minHostVersion": ">=2026.4.23"
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
49
|
"scripts": {
|
|
50
50
|
"build": "tsc -p tsconfig.build.json && node scripts/bundle-entrypoint.mjs && mkdir -p dist/proto && cp -rf api/proto/. dist/proto/",
|
|
51
|
-
"check": "tsc --noEmit && pnpm run test:ts",
|
|
51
|
+
"check": "tsc --noEmit && pnpm run test:ts && pnpm run test:integration",
|
|
52
|
+
"clean:test": "node scripts/clean-test-build.mjs",
|
|
52
53
|
"test:inspect": "pnpm run plugin:ci",
|
|
53
|
-
"test:ts": "pnpm run test:inspect && tsc -p tsconfig.tests.json && node --test .ts-build/test/unit/*.test.js",
|
|
54
|
-
"test:integration": "pnpm run test:inspect && tsc -p tsconfig.tests.json && node --test .ts-build/test/integration/checklist-validation.test.js .ts-build/test/integration/dream-promotion.test.js .ts-build/test/integration/host-flow.test.js .ts-build/test/integration/markdown-ingest.test.js",
|
|
54
|
+
"test:ts": "pnpm run test:inspect && pnpm run clean:test && tsc -p tsconfig.tests.json && node --test .ts-build/test/unit/*.test.js",
|
|
55
|
+
"test:integration": "pnpm run test:inspect && pnpm run clean:test && tsc -p tsconfig.tests.json && node --test .ts-build/test/integration/checklist-validation.test.js .ts-build/test/integration/dream-promotion.test.js .ts-build/test/integration/host-flow.test.js .ts-build/test/integration/markdown-ingest.test.js",
|
|
55
56
|
"benchmark:session_search_mid": "tsc -p tsconfig.tests.json && OPENCLAW_PROFILE_ASSEMBLE=1 node --test --test-name-pattern=\"real sidecar mid-sized session search benchmark\" .ts-build/test/integration/host-flow.test.js",
|
|
56
57
|
"gate:assemble_optimization": "tsc -p tsconfig.tests.json && OPENCLAW_PROFILE_ASSEMBLE=1 OPENCLAW_ENFORCE_ASSEMBLE_EVIDENCE_GATE=1 node --test --test-name-pattern=\"real sidecar mid-sized session search benchmark\" .ts-build/test/integration/host-flow.test.js",
|
|
57
58
|
"probe:session_recall": "tsc -p tsconfig.tests.json && OPENCLAW_PROFILE_ASSEMBLE=1 node --test --test-name-pattern=\"real sidecar mid-sized session search benchmark\" .ts-build/test/integration/host-flow.test.js",
|
|
@@ -70,7 +71,7 @@
|
|
|
70
71
|
"@openclaw/plugin-inspector": "0.3.7",
|
|
71
72
|
"@types/node": "^20.11.0",
|
|
72
73
|
"esbuild": "^0.27.0",
|
|
73
|
-
"openclaw": "2026.4.
|
|
74
|
+
"openclaw": "2026.4.23",
|
|
74
75
|
"typescript": "^6.0.3"
|
|
75
76
|
},
|
|
76
77
|
"peerDependencies": {
|
|
@@ -80,5 +81,10 @@
|
|
|
80
81
|
"@connectrpc/connect": "^1.7.0",
|
|
81
82
|
"@connectrpc/connect-node": "^1.7.0",
|
|
82
83
|
"@xdarkicex/libravdb-contracts": "^2.0.20"
|
|
84
|
+
},
|
|
85
|
+
"pnpm": {
|
|
86
|
+
"overrides": {
|
|
87
|
+
"undici": "8.3.0"
|
|
88
|
+
}
|
|
83
89
|
}
|
|
84
90
|
}
|