@pentatonic-ai/openclaw-memory-plugin 0.4.4 → 0.4.5

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 (3) hide show
  1. package/README.md +2 -2
  2. package/index.js +1 -1
  3. package/package.json +2 -2
package/README.md CHANGED
@@ -1,11 +1,11 @@
1
- # @pentatonic-ai/openclaw-memory
1
+ # @pentatonic-ai/openclaw-memory-plugin
2
2
 
3
3
  Persistent, searchable memory for OpenClaw. Local (Docker + Ollama) or hosted (Pentatonic TES).
4
4
 
5
5
  ## Install
6
6
 
7
7
  ```bash
8
- openclaw plugins install @pentatonic-ai/openclaw-memory
8
+ openclaw plugins install @pentatonic-ai/openclaw-memory-plugin
9
9
  ```
10
10
 
11
11
  ## Setup
package/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * Pentatonic Memory — OpenClaw Context Engine Plugin
3
3
  *
4
- * Install: openclaw plugins install @pentatonic-ai/openclaw-memory
4
+ * Install: openclaw plugins install @pentatonic-ai/openclaw-memory-plugin
5
5
  *
6
6
  * Provides persistent, searchable memory via the ContextEngine lifecycle:
7
7
  * ingest — every message stored with embedding + HyDE
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pentatonic-ai/openclaw-memory-plugin",
3
- "version": "0.4.4",
3
+ "version": "0.4.5",
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",
@@ -12,7 +12,7 @@
12
12
  }
13
13
  ],
14
14
  "install": {
15
- "npmSpec": "@pentatonic-ai/openclaw-memory",
15
+ "npmSpec": "@pentatonic-ai/openclaw-memory-plugin",
16
16
  "minHostVersion": ">=2026.3.7"
17
17
  }
18
18
  },