-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
56 lines (56 loc) · 1.28 KB
/
openclaw.plugin.json
File metadata and controls
56 lines (56 loc) · 1.28 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "hypermemory",
"displayName": "HyperMemory",
"version": "1.0.0",
"description": "Persistent hypergraph memory for storing and recalling interconnected knowledge across conversations",
"author": "RunStack AI",
"homepage": "https://hypermemory.io",
"icon": "🧠",
"kind": "plugin",
"entry": "./index.mjs",
"tools": [
"hypermemory_overview",
"hypermemory_store",
"hypermemory_recall",
"hypermemory_update",
"hypermemory_forget",
"hypermemory_find_related",
"hypermemory_add_relationships"
],
"config": {
"autoInjectInstructions": {
"type": "boolean",
"default": true,
"description": "Automatically inject memory context at conversation start"
}
},
"secrets": [
{
"key": "HYPERMEMORY_URL",
"description": "HyperMemory gateway URL",
"required": true,
"default": "https://api.hypermemory.io"
},
{
"key": "HYPERMEMORY_API_KEY",
"description": "Your HyperMemory API key",
"required": true
}
],
"tags": [
"memory",
"knowledge-graph",
"persistence",
"context",
"hypergraph"
],
"categories": [
"memory",
"productivity",
"knowledge-management"
],
"compatibility": {
"openclaw": ">=0.30.0",
"node": ">=18.0.0"
}
}