@alfe.ai/openclaw-memory-cloud 0.0.1 → 0.0.2
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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +26 -0
- package/openclaw.plugin.json +2 -1
- package/package.json +1 -1
package/.turbo/turbo-build.log
CHANGED
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# @alfe.ai/openclaw-memory-cloud
|
|
2
|
+
|
|
3
|
+
## 0.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 08bf818: Fix zombie plugin registrations and incomplete plugin manifests
|
|
8
|
+
|
|
9
|
+
Plugin lifecycle fixes:
|
|
10
|
+
|
|
11
|
+
- Skip IPC/client init in management command context (no `api.runtime`) — openclaw + metrics
|
|
12
|
+
- Guard against duplicate activations via globalThis flag — openclaw + metrics
|
|
13
|
+
- Clean up stale IPC client on re-activation without prior deactivate
|
|
14
|
+
- Clear event listeners in IPCClient.stop() to prevent leaks
|
|
15
|
+
- Pass actual plugin ID to `registerWithDaemon` instead of hardcoding
|
|
16
|
+
|
|
17
|
+
Gateway deduplication:
|
|
18
|
+
|
|
19
|
+
- Deduplicate plugin registrations daemon-side (new connection evicts stale one with same name, two-pass loop)
|
|
20
|
+
|
|
21
|
+
Manifest fixes (missing fields that broke OpenClaw deduplication and entry resolution):
|
|
22
|
+
|
|
23
|
+
- openclaw-chat: add name, version, description, entry
|
|
24
|
+
- openclaw-metrics: add name, version, description, entry
|
|
25
|
+
- openclaw-sync: add id (was using name key), entry, description; fix version
|
|
26
|
+
- openclaw-memory-cloud: rename displayName → name, add entry
|
package/openclaw.plugin.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "memory-cloud",
|
|
3
3
|
"kind": "memory",
|
|
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
|
"version": "0.1.0",
|
|
7
|
+
"entry": "./dist/index.js",
|
|
7
8
|
"configSchema": {
|
|
8
9
|
"type": "object",
|
|
9
10
|
"properties": {
|
package/package.json
CHANGED