-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathclawdbot.plugin.json
More file actions
40 lines (40 loc) · 954 Bytes
/
clawdbot.plugin.json
File metadata and controls
40 lines (40 loc) · 954 Bytes
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
{
"id": "openclaw-honcho",
"kind": "memory",
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"apiKey": {
"type": "string",
"description": "Honcho API key (or set HONCHO_API_KEY env var)"
},
"workspaceId": {
"type": "string",
"description": "Honcho workspace ID (defaults to 'openclaw')"
},
"baseUrl": {
"type": "string",
"default": "https://api.honcho.dev"
}
}
},
"uiHints": {
"apiKey": {
"label": "Honcho API Key",
"sensitive": true,
"placeholder": "hc_...",
"help": "API key for Honcho (or use ${HONCHO_API_KEY})"
},
"workspaceId": {
"label": "Workspace ID",
"placeholder": "openclaw",
"help": "Honcho workspace ID"
},
"baseUrl": {
"label": "API Base URL",
"advanced": true,
"placeholder": "https://api.honcho.dev"
}
}
}