@xdarkicex/openclaw-memory-libravdb 1.9.10-beta.25 → 1.9.10-beta.26

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/index.js CHANGED
@@ -31100,7 +31100,7 @@ var MEMORY_EXPAND_SCHEMA = {
31100
31100
  },
31101
31101
  record_id: {
31102
31102
  type: "string",
31103
- description: "Record ID for causal graph traversal. Use '__user_card__' for identity-anchored expansion."
31103
+ description: "Record ID for causal graph traversal. Use IDs from memory_search/memory_get results, or '__user_card__' for identity-anchored expansion."
31104
31104
  },
31105
31105
  maxDepth: {
31106
31106
  type: "number",
@@ -31240,7 +31240,7 @@ function createMemoryExpandTool(getClient, getSessionKey, logger = console, getS
31240
31240
  return {
31241
31241
  name: "memory_expand",
31242
31242
  label: "Memory Expand",
31243
- description: "Expand compacted summaries OR walk causal graph edges from a record. Summary mode: walk the summary tree up to maxDepth levels. Graph mode (use record_id): walk causal edges (why_ids/how_ids/hop_targets) from a record \u2014 use '__user_card__' for identity-anchored traversal after get_user_card. For large expansions (>2500 tokens), spawns a sub-agent. Use memory_describe first to check if expansion is warranted.",
31243
+ description: "Expand compacted summaries OR walk causal graph edges from ANY record. Summary mode (summaryIds): walk the summary tree up to maxDepth levels. Graph mode (record_id): walk causal edges (why_ids/how_ids/hop_targets) from a record ID. Use IDs from memory_search or memory_get results \u2014 any ingested turn, memory, or summary has graph edges. Use '__user_card__' for identity-anchored traversal. For large expansions, spawns a sub-agent. Use memory_describe first to check if expansion is warranted.",
31244
31244
  parameters: MEMORY_EXPAND_SCHEMA,
31245
31245
  execute: async (_toolCallId, rawParams) => {
31246
31246
  const params = asParams(rawParams);
@@ -84,7 +84,7 @@ export declare function createMemoryExpandTool(getClient: ClientGetter, getSessi
84
84
  };
85
85
  readonly record_id: {
86
86
  readonly type: "string";
87
- readonly description: "Record ID for causal graph traversal. Use '__user_card__' for identity-anchored expansion.";
87
+ readonly description: "Record ID for causal graph traversal. Use IDs from memory_search/memory_get results, or '__user_card__' for identity-anchored expansion.";
88
88
  };
89
89
  readonly maxDepth: {
90
90
  readonly type: "number";
@@ -33,7 +33,7 @@ const MEMORY_EXPAND_SCHEMA = {
33
33
  },
34
34
  record_id: {
35
35
  type: "string",
36
- description: "Record ID for causal graph traversal. Use '__user_card__' for identity-anchored expansion.",
36
+ description: "Record ID for causal graph traversal. Use IDs from memory_search/memory_get results, or '__user_card__' for identity-anchored expansion.",
37
37
  },
38
38
  maxDepth: {
39
39
  type: "number",
@@ -194,11 +194,13 @@ export function createMemoryExpandTool(getClient, getSessionKey, logger = consol
194
194
  return {
195
195
  name: "memory_expand",
196
196
  label: "Memory Expand",
197
- description: "Expand compacted summaries OR walk causal graph edges from a record. " +
198
- "Summary mode: walk the summary tree up to maxDepth levels. " +
199
- "Graph mode (use record_id): walk causal edges (why_ids/how_ids/hop_targets) " +
200
- "from a record use '__user_card__' for identity-anchored traversal after " +
201
- "get_user_card. For large expansions (>2500 tokens), spawns a sub-agent. " +
197
+ description: "Expand compacted summaries OR walk causal graph edges from ANY record. " +
198
+ "Summary mode (summaryIds): walk the summary tree up to maxDepth levels. " +
199
+ "Graph mode (record_id): walk causal edges (why_ids/how_ids/hop_targets) " +
200
+ "from a record ID. Use IDs from memory_search or memory_get results — " +
201
+ "any ingested turn, memory, or summary has graph edges. " +
202
+ "Use '__user_card__' for identity-anchored traversal. " +
203
+ "For large expansions, spawns a sub-agent. " +
202
204
  "Use memory_describe first to check if expansion is warranted.",
203
205
  parameters: MEMORY_EXPAND_SCHEMA,
204
206
  execute: async (_toolCallId, rawParams) => {
@@ -2,7 +2,7 @@
2
2
  "id": "libravdb-memory",
3
3
  "name": "LibraVDB Memory",
4
4
  "description": "Cognitive memory engine — causal graph reasoning, predictive context, identity tracking, and hybrid vector recall with back-door adjustment scoring",
5
- "version": "1.9.10-beta.25",
5
+ "version": "1.9.10-beta.26",
6
6
  "kind": [
7
7
  "memory",
8
8
  "context-engine"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xdarkicex/openclaw-memory-libravdb",
3
- "version": "1.9.10-beta.25",
3
+ "version": "1.9.10-beta.26",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",