@xdarkicex/openclaw-memory-libravdb 1.6.23 → 1.6.27
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/README.md +219 -38
- package/dist/context-engine.js +72 -8
- package/dist/identity.d.ts +10 -1
- package/dist/identity.js +20 -0
- package/dist/index.js +814 -136
- package/dist/libravdb-client.d.ts +3 -0
- package/dist/libravdb-client.js +12 -1
- package/dist/manifest.d.ts +46 -0
- package/dist/manifest.js +127 -0
- package/dist/markdown-ingest.js +14 -1
- package/dist/memory-runtime.js +12 -7
- package/dist/plugin-runtime.d.ts +1 -1
- package/dist/plugin-runtime.js +10 -3
- package/dist/types.d.ts +5 -0
- package/docs/README.md +4 -4
- package/docs/TLS_configuration.md +17 -17
- package/docs/architecture-decisions/adr-004-sidecar-over-native-ts.md +1 -1
- package/docs/architecture.md +8 -8
- package/docs/configuration.md +15 -15
- package/docs/contributing.md +5 -5
- package/docs/dependencies.md +1 -1
- package/docs/development.md +9 -9
- package/docs/embedding-profiles.md +13 -11
- package/docs/features.md +6 -6
- package/docs/install.md +19 -19
- package/docs/installation.md +33 -25
- package/docs/mTLS_configuration.md +2 -2
- package/docs/models.md +3 -3
- package/docs/performance-and-tuning.md +5 -5
- package/docs/problem.md +1 -1
- package/docs/security.md +4 -4
- package/docs/uninstall.md +5 -5
- package/openclaw.plugin.json +7 -2
- package/package.json +2 -2
package/docs/uninstall.md
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# Uninstall Guide
|
|
2
2
|
|
|
3
3
|
This guide covers safe removal of the OpenClaw / OpenClaw.ai plugin and the
|
|
4
|
-
separately managed `libravdbd`
|
|
4
|
+
separately managed `libravdbd` vector service.
|
|
5
5
|
|
|
6
6
|
If you only want to disable the memory replacement temporarily, remove the
|
|
7
|
-
plugin slot assignment first and leave the
|
|
7
|
+
plugin slot assignment first and leave the vector service plus data in place.
|
|
8
8
|
|
|
9
9
|
## 1. Disable the Plugin
|
|
10
10
|
|
|
@@ -29,7 +29,7 @@ your standard OpenClaw plugin removal flow for
|
|
|
29
29
|
|
|
30
30
|
## 2. Stop the Daemon
|
|
31
31
|
|
|
32
|
-
Stop the
|
|
32
|
+
Stop the vector service before deleting binaries or stored data.
|
|
33
33
|
|
|
34
34
|
Homebrew:
|
|
35
35
|
|
|
@@ -69,7 +69,7 @@ brew untap xDarkicex/homebrew-openclaw-libravdb-memory
|
|
|
69
69
|
|
|
70
70
|
### Manual Daemon Install
|
|
71
71
|
|
|
72
|
-
Delete the service file or launch agent you installed, along with the
|
|
72
|
+
Delete the service file or launch agent you installed, along with the vector service
|
|
73
73
|
binary you copied into place.
|
|
74
74
|
|
|
75
75
|
Common locations:
|
|
@@ -96,5 +96,5 @@ delete during uninstall.
|
|
|
96
96
|
## 5. Post-Uninstall Check
|
|
97
97
|
|
|
98
98
|
After cleanup, `openclaw memory status` should no longer show this plugin as the
|
|
99
|
-
active memory provider, and the
|
|
99
|
+
active memory provider, and the vector service endpoint should no longer be reachable
|
|
100
100
|
unless you intentionally kept it running for another workflow.
|
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.6.
|
|
5
|
+
"version": "1.6.27",
|
|
6
6
|
"kind": [
|
|
7
7
|
"memory",
|
|
8
8
|
"context-engine"
|
|
@@ -63,6 +63,10 @@
|
|
|
63
63
|
"sidecarPath": {
|
|
64
64
|
"type": "string"
|
|
65
65
|
},
|
|
66
|
+
"tenantId": {
|
|
67
|
+
"type": "string",
|
|
68
|
+
"description": "Stable tenant identifier for multi-agent deployments. When set, the daemon routes this plugin instance to an isolated vector database. When unset, the plugin falls back to the auto-derived userId. Set different values per agent to isolate memory storage."
|
|
69
|
+
},
|
|
66
70
|
"userId": {
|
|
67
71
|
"type": "string",
|
|
68
72
|
"description": "Stable identity for cross-session durable memory. When set, sessions share memories under user:{userId}."
|
|
@@ -440,7 +444,8 @@
|
|
|
440
444
|
},
|
|
441
445
|
"rpcTimeoutMs": {
|
|
442
446
|
"type": "number",
|
|
443
|
-
"default":
|
|
447
|
+
"default": 120000,
|
|
448
|
+
"description": "gRPC timeout in milliseconds for daemon calls. Default: 120000 (2 min). Can also be set via LIBRAVDB_RPC_TIMEOUT_MS env var."
|
|
444
449
|
},
|
|
445
450
|
"maxRetries": {
|
|
446
451
|
"type": "number"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xdarkicex/openclaw-memory-libravdb",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.27",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -79,6 +79,6 @@
|
|
|
79
79
|
"dependencies": {
|
|
80
80
|
"@connectrpc/connect": "^1.7.0",
|
|
81
81
|
"@connectrpc/connect-node": "^1.7.0",
|
|
82
|
-
"@xdarkicex/libravdb-contracts": "^2.0.
|
|
82
|
+
"@xdarkicex/libravdb-contracts": "^2.0.12"
|
|
83
83
|
}
|
|
84
84
|
}
|