-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
41 lines (41 loc) · 1.11 KB
/
openclaw.plugin.json
File metadata and controls
41 lines (41 loc) · 1.11 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
{
"id": "claude-code",
"name": "Claude Code Bridge",
"description": "Integrate Claude Code into OpenClaw — plan, exec, and multi-agent coding via Slack or any channel",
"version": "0.1.0",
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"allowedPaths": {
"type": "array",
"items": { "type": "string" },
"default": [],
"description": "Directories Claude Code is allowed to operate in (empty = all denied)"
},
"maxTimeoutSecs": {
"type": "number",
"default": 600,
"description": "Max task duration in seconds"
},
"maxConcurrent": {
"type": "number",
"default": 2,
"description": "Max concurrent Claude Code processes"
},
"claudeOauthToken": {
"type": "string",
"description": "Claude Code OAuth token (for headless/gateway environments)"
}
}
},
"uiHints": {
"claudeOauthToken": {
"label": "Claude OAuth Token",
"sensitive": true
},
"allowedPaths": {
"label": "Allowed Directories"
}
}
}