-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
37 lines (37 loc) · 1.02 KB
/
openclaw.plugin.json
File metadata and controls
37 lines (37 loc) · 1.02 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
{
"id": "eliza-adapter",
"name": "Eliza Plugin Adapter",
"description": "Wraps Eliza (@elizaos) plugins as native OpenClaw extensions",
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"plugins": {
"type": "array",
"items": { "type": "string" },
"description": "Eliza plugin package names or paths to load"
},
"settings": {
"type": "object",
"additionalProperties": { "type": "string" },
"description": "Key-value settings passed to Eliza plugins via runtime.getSetting()"
},
"agentName": {
"type": "string",
"description": "Agent name for the Eliza character context"
}
},
"required": ["plugins"]
},
"uiHints": {
"settings": {
"label": "Plugin Settings",
"help": "Environment-variable-style settings (EVM_PRIVATE_KEY, DISCORD_API_TOKEN, etc.)",
"sensitive": true
},
"agentName": {
"label": "Agent Name",
"placeholder": "Eliza"
}
}
}