-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
45 lines (45 loc) · 1.54 KB
/
openclaw.plugin.json
File metadata and controls
45 lines (45 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"id": "hippo-memory",
"name": "Hippo Memory",
"description": "Biologically-inspired memory for AI agents. Decay by default, retrieval strengthening, sleep consolidation.",
"version": "0.39.0",
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"budget": {
"type": "number",
"description": "Default token budget for context injection (default: 1500)"
},
"autoContext": {
"type": "boolean",
"description": "Auto-inject hippo context at session start (default: true)"
},
"autoLearn": {
"type": "boolean",
"description": "Auto-capture errors during agent sessions (default: true)"
},
"autoSleep": {
"type": "boolean",
"description": "Queue detached consolidation after sessions with 10+ new memories (default: false)"
},
"framing": {
"type": "string",
"enum": ["observe", "suggest", "assert"],
"description": "How memories are framed in context (default: observe)"
},
"root": {
"type": "string",
"description": "Custom .hippo directory path (default: auto-detect from workspace)"
}
}
},
"uiHints": {
"budget": { "label": "Token Budget", "placeholder": "1500" },
"autoContext": { "label": "Auto-inject Context" },
"autoLearn": { "label": "Auto-capture Errors" },
"autoSleep": { "label": "Auto-consolidate" },
"framing": { "label": "Memory Framing" },
"root": { "label": "Hippo Root Path", "placeholder": ".hippo/" }
}
}