-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
62 lines (62 loc) · 1.53 KB
/
openclaw.plugin.json
File metadata and controls
62 lines (62 loc) · 1.53 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
{
"id": "agent-control-openclaw-plugin",
"name": "Agent Control",
"description": "Registers OpenClaw tools with Agent Control and blocks unsafe tool invocations.",
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": {
"type": "boolean"
},
"serverUrl": {
"type": "string"
},
"apiKey": {
"type": "string"
},
"agentName": {
"type": "string"
},
"agentVersion": {
"type": "string"
},
"timeoutMs": {
"type": "integer",
"minimum": 1
},
"userAgent": {
"type": "string"
},
"failClosed": {
"type": "boolean"
},
"logLevel": {
"type": "string",
"enum": ["warn", "info", "debug"]
}
}
},
"uiHints": {
"serverUrl": {
"label": "Server URL",
"help": "Base URL for Agent Control (example: http://localhost:8000)."
},
"apiKey": {
"label": "API Key",
"sensitive": true
},
"agentName": {
"label": "Agent Name Prefix",
"help": "Base name used for OpenClaw agents when registering with Agent Control."
},
"failClosed": {
"label": "Fail Closed",
"help": "If true, block tool invocations when Agent Control is unavailable."
},
"logLevel": {
"label": "Log Level",
"help": "Controls plugin verbosity: warn logs only warnings, errors, and block events; info adds high-level lifecycle logs; debug adds verbose diagnostics."
}
}
}