@alfe.ai/openclaw-memory-cloud 0.0.10 → 0.0.11

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.10 build /home/runner/work/alfe/alfe/packages/openclaw-memory-cloud
2
+ > @alfe.ai/openclaw-memory-cloud@0.0.11 build /home/runner/work/alfe/alfe/packages/openclaw-memory-cloud
3
3
  > tsc
4
4
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @alfe.ai/openclaw-memory-cloud
2
2
 
3
+ ## 0.0.11
4
+
5
+ ### Patch Changes
6
+
7
+ - 9147ccc: Declare manifest contracts (`activation.onStartup`, `contracts.tools`) so OpenClaw 2026.5+'s effective-plugin-set loader imports these plugins. Without these declarations, the new runtime silently skips the plugin entirely — never imports it, never calls `activate(api)`, never establishes its connections. Backwards-compatible with OpenClaw 2026.4.x (already supports the same fields). No source-code or public-API changes — manifest-only patches.
8
+
9
+ - `memory-cloud`, `metrics`, `mcp-bundler`, `openclaw` (alfe-core), `google-chat`, `voice`, `webhooks` set `activation.onStartup: true` because they need to load at boot to maintain persistent connections, attach hooks, or run service polls.
10
+ - `secrets`, `search`, `database`, `google`, `mobile`, `teams`, `whatsapp` set `activation.onStartup: false` — they're tool-only and load on demand once a tool is invoked.
11
+ - `mcp-bundler` omits `contracts.tools` because it registers tools dynamically via the factory form of `api.registerTool(...)`; `onStartup: true` forces import without static tool names.
12
+
3
13
  ## 0.0.10
4
14
 
5
15
  ### Patch Changes
@@ -4,6 +4,17 @@
4
4
  "name": "Cloud Memory",
5
5
  "description": "Persistent agent memory backed by Turbopuffer vectors and DynamoDB knowledge graph. Replaces the builtin LanceDB memory extension.",
6
6
  "entry": "./dist/index.js",
7
+ "activation": { "onStartup": true },
8
+ "contracts": {
9
+ "tools": [
10
+ "memory_recall",
11
+ "memory_store",
12
+ "memory_forget",
13
+ "memory_navigate",
14
+ "memory_graph",
15
+ "memory_stats"
16
+ ]
17
+ },
7
18
  "configSchema": {
8
19
  "type": "object",
9
20
  "properties": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alfe.ai/openclaw-memory-cloud",
3
- "version": "0.0.10",
3
+ "version": "0.0.11",
4
4
  "description": "Cloud memory extension for OpenClaw — Turbopuffer vectors + DynamoDB knowledge graph",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",