openclaw-memory-atmem 1.0.0
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 +18 -0
- package/dist/index.js +1342 -0
- package/dist/src/rpc-client.js +190 -0
- package/dist/src/setup.js +120 -0
- package/dist/src/types.js +7 -0
- package/openclaw.plugin.json +120 -0
- package/package.json +47 -0
package/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# AtMem OpenClaw bridge
|
|
2
|
+
|
|
3
|
+
This npm package is the host bridge for AtMem. It is not a standalone memory engine and should not be installed directly.
|
|
4
|
+
|
|
5
|
+
Use the Python-owned installer:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
python -m pip install atmem==1.0.0
|
|
9
|
+
atmem openclaw install
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
The installer pins `openclaw-memory-atmem@1.0.0`, 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
|
+
|
|
14
|
+
In shadow mode the bridge observes native-memory changes without injecting AtMem context. In active mode it exposes compatible memory search/get tools, model-semantic capture, bounded recall and native-path protection. `atmem control restore` restores the saved OpenClaw configuration and native memory.
|
|
15
|
+
|
|
16
|
+
The bridge also supplies Agent Black Box hooks. It records model/tool lifecycle digests and bounded metadata—not raw prompts, responses, parameters or results—so `atmem blackbox verify RUN_ID` can check timeline integrity and observed tool-hook closure. See the [Agent Black Box guide](../../docs/agent-blackbox.md) for the exact boundary.
|
|
17
|
+
|
|
18
|
+
See the repository [OpenClaw setup](../../docs/openclaw-setup.md) and [control-plane guarantees](../../docs/control-plane.md).
|