hippo-memory 0.16.1 → 0.16.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.
|
@@ -205,7 +205,12 @@ function runHippo(args: readonly string[], cwd?: string): string {
|
|
|
205
205
|
}
|
|
206
206
|
}
|
|
207
207
|
|
|
208
|
+
let _registered = false;
|
|
209
|
+
|
|
208
210
|
export default function register(api: any) {
|
|
211
|
+
if (_registered) return;
|
|
212
|
+
_registered = true;
|
|
213
|
+
|
|
209
214
|
const logger = api.logger ?? console;
|
|
210
215
|
|
|
211
216
|
// Clean up stale backup plugins from previous updates
|
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "hippo-memory",
|
|
3
3
|
"name": "Hippo Memory",
|
|
4
4
|
"description": "Biologically-inspired memory for AI agents. Decay by default, retrieval strengthening, sleep consolidation.",
|
|
5
|
-
"version": "0.16.
|
|
5
|
+
"version": "0.16.2",
|
|
6
6
|
"configSchema": {
|
|
7
7
|
"type": "object",
|
|
8
8
|
"additionalProperties": false,
|