openclaw-memory-atmem 2.2.3 → 2.2.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.
- package/README.md +2 -2
- package/dist/src/rpc-client.js +1 -1
- package/openclaw.plugin.json +3 -2
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -5,11 +5,11 @@ This npm package is the host bridge for AtMem. It is not a standalone memory eng
|
|
|
5
5
|
Use the Python-owned installer:
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
python -m pip install --upgrade atmem==2.2.
|
|
8
|
+
python -m pip install --upgrade atmem==2.2.5
|
|
9
9
|
atmem openclaw install
|
|
10
10
|
```
|
|
11
11
|
|
|
12
|
-
The installer pins `openclaw-memory-atmem@2.2.
|
|
12
|
+
The installer pins `openclaw-memory-atmem@2.2.5`, binds the exact `atmem` executable, copies existing OpenClaw memory, configures shadow mode, restarts the gateway and verifies the loaded plugin. Direct npm installation cannot perform or prove those steps.
|
|
13
13
|
|
|
14
14
|
Existing AtMem 2.1 users run `atmem openclaw upgrade` after upgrading the Python
|
|
15
15
|
package. This preserves the current memory mode and migration, verifies the new
|
package/dist/src/rpc-client.js
CHANGED
package/openclaw.plugin.json
CHANGED
|
@@ -2,10 +2,11 @@
|
|
|
2
2
|
"id": "memory-atmem",
|
|
3
3
|
"name": "Memory (atmem)",
|
|
4
4
|
"description": "OpenClaw bridge installed and managed by the AtMem memory control plane.",
|
|
5
|
-
"version": "2.2.
|
|
5
|
+
"version": "2.2.5",
|
|
6
6
|
"commandAliases": ["memory-atmem"],
|
|
7
7
|
"activation": {
|
|
8
|
-
"onStartup": true
|
|
8
|
+
"onStartup": true,
|
|
9
|
+
"onCapabilities": ["hook", "tool"]
|
|
9
10
|
},
|
|
10
11
|
"contracts": {
|
|
11
12
|
"tools": [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openclaw-memory-atmem",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.5",
|
|
4
4
|
"description": "OpenClaw Agent Black Box and memory control-plane bridge for AtMem",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -13,7 +13,10 @@
|
|
|
13
13
|
"openclaw": {
|
|
14
14
|
"extensions": [
|
|
15
15
|
"./dist/index.js"
|
|
16
|
-
]
|
|
16
|
+
],
|
|
17
|
+
"compat": {
|
|
18
|
+
"pluginApi": ">=2026.7.1-2"
|
|
19
|
+
}
|
|
17
20
|
},
|
|
18
21
|
"engines": {
|
|
19
22
|
"node": ">=22.12.0"
|
|
@@ -43,6 +46,7 @@
|
|
|
43
46
|
},
|
|
44
47
|
"devDependencies": {
|
|
45
48
|
"@types/node": "^22.20.1",
|
|
49
|
+
"openclaw": "^2026.8.1",
|
|
46
50
|
"typescript": "5.6"
|
|
47
51
|
}
|
|
48
52
|
}
|