hippo-memory 0.6.1 → 0.6.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/README.md
CHANGED
|
@@ -489,7 +489,15 @@ Exposes 6 tools: `hippo_recall`, `hippo_remember`, `hippo_outcome`, `hippo_conte
|
|
|
489
489
|
|
|
490
490
|
### OpenClaw Plugin
|
|
491
491
|
|
|
492
|
-
Native plugin with auto-context injection
|
|
492
|
+
Native plugin with auto-context injection, workspace-aware memory lookup, and
|
|
493
|
+
tool hooks for auto-learn / auto-sleep.
|
|
494
|
+
|
|
495
|
+
```bash
|
|
496
|
+
openclaw plugins install hippo-memory
|
|
497
|
+
openclaw plugins enable hippo-memory
|
|
498
|
+
```
|
|
499
|
+
|
|
500
|
+
Plugin docs: [extensions/openclaw-plugin/](extensions/openclaw-plugin/). Integration guide: [integrations/openclaw.md](integrations/openclaw.md).
|
|
493
501
|
|
|
494
502
|
### Claude Code Plugin
|
|
495
503
|
|
package/dist/mcp/server.js
CHANGED
|
@@ -299,7 +299,7 @@ function handleRequest(req) {
|
|
|
299
299
|
result: {
|
|
300
300
|
protocolVersion: '2024-11-05',
|
|
301
301
|
capabilities: { tools: {} },
|
|
302
|
-
serverInfo: { name: 'hippo-memory', version: '0.6.
|
|
302
|
+
serverInfo: { name: 'hippo-memory', version: '0.6.2' },
|
|
303
303
|
},
|
|
304
304
|
};
|
|
305
305
|
case 'notifications/initialized':
|
|
@@ -5,13 +5,20 @@ Biologically-inspired memory for OpenClaw agents. Memories decay by default, ret
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
#
|
|
9
|
-
|
|
8
|
+
# Install directly from npm
|
|
9
|
+
openclaw plugins install hippo-memory
|
|
10
|
+
openclaw plugins enable hippo-memory
|
|
10
11
|
|
|
11
|
-
# Or link for development
|
|
12
|
+
# Or link the local plugin folder for development
|
|
12
13
|
openclaw plugins install -l ./extensions/openclaw-plugin
|
|
13
14
|
```
|
|
14
15
|
|
|
16
|
+
If you prefer manual file copy instead of the plugin installer:
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
cp -r extensions/openclaw-plugin ~/.openclaw/extensions/hippo-memory
|
|
20
|
+
```
|
|
21
|
+
|
|
15
22
|
## Configure
|
|
16
23
|
|
|
17
24
|
Add to `openclaw.json`:
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "hippo-memory",
|
|
3
|
+
"name": "Hippo Memory",
|
|
4
|
+
"description": "Biologically-inspired memory for AI agents. Decay by default, retrieval strengthening, sleep consolidation.",
|
|
5
|
+
"version": "0.6.2",
|
|
6
|
+
"configSchema": {
|
|
7
|
+
"type": "object",
|
|
8
|
+
"additionalProperties": false,
|
|
9
|
+
"properties": {
|
|
10
|
+
"budget": {
|
|
11
|
+
"type": "number",
|
|
12
|
+
"description": "Default token budget for context injection (default: 1500)"
|
|
13
|
+
},
|
|
14
|
+
"autoContext": {
|
|
15
|
+
"type": "boolean",
|
|
16
|
+
"description": "Auto-inject hippo context at session start (default: true)"
|
|
17
|
+
},
|
|
18
|
+
"autoLearn": {
|
|
19
|
+
"type": "boolean",
|
|
20
|
+
"description": "Auto-capture errors during agent sessions (default: true)"
|
|
21
|
+
},
|
|
22
|
+
"autoSleep": {
|
|
23
|
+
"type": "boolean",
|
|
24
|
+
"description": "Run consolidation after sessions with 10+ new memories (default: false)"
|
|
25
|
+
},
|
|
26
|
+
"framing": {
|
|
27
|
+
"type": "string",
|
|
28
|
+
"enum": ["observe", "suggest", "assert"],
|
|
29
|
+
"description": "How memories are framed in context (default: observe)"
|
|
30
|
+
},
|
|
31
|
+
"root": {
|
|
32
|
+
"type": "string",
|
|
33
|
+
"description": "Custom .hippo directory path (default: auto-detect from workspace)"
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
"uiHints": {
|
|
38
|
+
"budget": { "label": "Token Budget", "placeholder": "1500" },
|
|
39
|
+
"autoContext": { "label": "Auto-inject Context" },
|
|
40
|
+
"autoLearn": { "label": "Auto-capture Errors" },
|
|
41
|
+
"autoSleep": { "label": "Auto-consolidate" },
|
|
42
|
+
"framing": { "label": "Memory Framing" },
|
|
43
|
+
"root": { "label": "Hippo Root Path", "placeholder": ".hippo/" }
|
|
44
|
+
}
|
|
45
|
+
}
|
package/package.json
CHANGED
|
@@ -1,18 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hippo-memory",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.2",
|
|
4
4
|
"description": "Biologically-inspired memory system for AI agents. Decay by default, strength through use.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": "./dist/index.js"
|
|
9
9
|
},
|
|
10
|
+
"openclaw": {
|
|
11
|
+
"extensions": ["./extensions/openclaw-plugin/index.ts"]
|
|
12
|
+
},
|
|
10
13
|
"bin": {
|
|
11
|
-
"hippo": "
|
|
14
|
+
"hippo": "bin/hippo.js"
|
|
12
15
|
},
|
|
13
16
|
"files": [
|
|
14
17
|
"dist",
|
|
15
18
|
"bin",
|
|
19
|
+
"openclaw.plugin.json",
|
|
16
20
|
"extensions/openclaw-plugin"
|
|
17
21
|
],
|
|
18
22
|
"scripts": {
|
|
@@ -21,6 +25,7 @@
|
|
|
21
25
|
"test": "vitest run",
|
|
22
26
|
"test:watch": "vitest",
|
|
23
27
|
"smoke:pack": "node scripts/smoke-pack.mjs",
|
|
28
|
+
"smoke:openclaw-install": "node scripts/smoke-openclaw-install.mjs",
|
|
24
29
|
"prepublishOnly": "npm run build"
|
|
25
30
|
},
|
|
26
31
|
"keywords": [
|