-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
87 lines (87 loc) · 2.18 KB
/
openclaw.plugin.json
File metadata and controls
87 lines (87 loc) · 2.18 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"id": "carapace",
"name": "Carapace",
"description": "Cedar policy enforcement for agent tool access via before_tool_call hook. Your agent's exoskeleton.",
"version": "1.0.5",
"configSchema": {
"type": "object",
"additionalProperties": true,
"properties": {
"guiPort": {
"type": "number",
"default": 19820,
"description": "Port for the local control GUI"
},
"servers": {
"type": "object",
"description": "Upstream MCP servers to aggregate",
"additionalProperties": {
"type": "object",
"properties": {
"transport": {
"type": "string",
"enum": [
"stdio",
"http",
"sse"
],
"default": "stdio"
},
"command": {
"type": "string"
},
"args": {
"type": "array",
"items": {
"type": "string"
}
},
"env": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"url": {
"type": "string"
}
}
}
},
"policyDir": {
"type": "string",
"default": "~/.openclaw/mcp-policies/",
"description": "Directory for Cedar policy files"
},
"defaultPolicy": {
"type": "string",
"enum": [
"deny-all",
"allow-all"
],
"default": "allow-all",
"description": "Default policy when no Cedar policies match. allow-all passes everything through; deny-all blocks everything not explicitly permitted."
},
"verify": {
"type": "boolean",
"default": false,
"description": "Run cvc5 formal verification on policy changes"
}
}
},
"uiHints": {
"guiPort": {
"label": "GUI Port",
"placeholder": "19820"
},
"policyDir": {
"label": "Policy Directory"
},
"defaultPolicy": {
"label": "Default Policy"
},
"verify": {
"label": "Enable Formal Verification"
}
}
}