@pentatonic-ai/openclaw-memory-plugin 0.4.6 → 0.4.7

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.
Files changed (2) hide show
  1. package/index.js +2 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -419,6 +419,7 @@ Restart OpenClaw to activate.`;
419
419
  }
420
420
  }
421
421
 
422
- log(`Plugin registered (${hosted ? "hosted" : isConfigured ? "local" : "unconfigured"})`);
422
+ const mode = hosted ? "hosted" : (config.memory_url || config.database_url) ? "local" : "unconfigured";
423
+ log(`Plugin registered (${mode})`);
423
424
  },
424
425
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pentatonic-ai/openclaw-memory-plugin",
3
- "version": "0.4.6",
3
+ "version": "0.4.7",
4
4
  "description": "Pentatonic Memory plugin for OpenClaw — persistent, searchable memory with multi-signal retrieval and HyDE query expansion",
5
5
  "type": "module",
6
6
  "main": "index.js",