@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/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` daemon.
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 daemon plus data in place.
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 sidecar before deleting binaries or stored data.
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 daemon
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 daemon endpoint should no longer be reachable
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.
@@ -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.23",
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": 30000
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.23",
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.8"
82
+ "@xdarkicex/libravdb-contracts": "^2.0.12"
83
83
  }
84
84
  }