This repository was archived by the owner on Jun 3, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
64 lines (64 loc) · 1.62 KB
/
openclaw.plugin.json
File metadata and controls
64 lines (64 loc) · 1.62 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
57
58
59
60
61
62
63
64
{
"id": "xmem-openclaw",
"kind": "memory",
"contracts": {
"tools": [
"xmem_search",
"xmem_store",
"xmem_status"
]
},
"uiHints": {
"apiKey": {
"label": "XMem API Key",
"sensitive": true,
"placeholder": "xmem_...",
"help": "Your XMem API key from the dashboard, or use ${XMEM_API_KEY}"
},
"apiUrl": {
"label": "XMem API URL",
"placeholder": "https://api.xmem.in",
"help": "XMem API base URL",
"advanced": true
},
"userId": {
"label": "User ID",
"placeholder": "openclaw",
"help": "Optional user id for local/static-key setups",
"advanced": true
},
"autoRecall": {
"label": "Auto-Recall",
"help": "Inject relevant memories before AI turns"
},
"autoCapture": {
"label": "Auto-Capture",
"help": "Store useful conversation turns after AI responses"
},
"maxRecallResults": {
"label": "Max Recall Results",
"placeholder": "8",
"help": "Maximum memories to inject per turn",
"advanced": true
},
"debug": {
"label": "Debug Logging",
"help": "Enable verbose plugin logging",
"advanced": true
}
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"apiKey": { "type": "string" },
"apiUrl": { "type": "string" },
"userId": { "type": "string" },
"autoRecall": { "type": "boolean" },
"autoCapture": { "type": "boolean" },
"maxRecallResults": { "type": "number", "minimum": 1, "maximum": 20 },
"debug": { "type": "boolean" }
},
"required": []
}
}