@alfe.ai/openclaw-memory-cloud 0.0.19 → 0.0.21

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.
@@ -1,4 +1,4 @@
1
1
 
2
- > @alfe.ai/openclaw-memory-cloud@0.0.19 build /home/runner/work/alfe/alfe/packages/openclaw-memory-cloud
2
+ > @alfe.ai/openclaw-memory-cloud@0.0.21 build /home/runner/work/alfe/alfe/packages/openclaw-memory-cloud
3
3
  > tsc
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @alfe.ai/openclaw-memory-cloud
2
2
 
3
+ ## 0.0.21
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [2c81c60]
8
+ - @alfe.ai/agent-api-client@0.2.3
9
+
10
+ ## 0.0.20
11
+
12
+ ### Patch Changes
13
+
14
+ - b829ff4: Declare the `memory_search` tool in the plugin manifest's `contracts.tools`. The recall tool registers under two names (`memory_recall` and the `memory_search` alias), but only `memory_recall` was declared — OpenClaw rejects any runtime-registered tool not pre-declared in `contracts.tools`, so the plugin logged `plugin must declare contracts.tools for: memory_search` on every activation and never settled, leaving the integration stuck at `actualStatus=unknown`.
15
+
3
16
  ## 0.0.19
4
17
 
5
18
  ### Patch Changes
@@ -8,6 +8,7 @@
8
8
  "contracts": {
9
9
  "tools": [
10
10
  "memory_recall",
11
+ "memory_search",
11
12
  "memory_store",
12
13
  "memory_learn",
13
14
  "memory_forget",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alfe.ai/openclaw-memory-cloud",
3
- "version": "0.0.19",
3
+ "version": "0.0.21",
4
4
  "description": "Cloud memory extension for OpenClaw — Turbopuffer vectors + DynamoDB knowledge graph",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -11,7 +11,7 @@
11
11
  ]
12
12
  },
13
13
  "dependencies": {
14
- "@alfe.ai/agent-api-client": "0.2.2",
14
+ "@alfe.ai/agent-api-client": "0.2.3",
15
15
  "@alfe.ai/config": "0.0.9"
16
16
  },
17
17
  "license": "UNLICENSED",