-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
39 lines (39 loc) · 1.1 KB
/
Copy pathopenclaw.plugin.json
File metadata and controls
39 lines (39 loc) · 1.1 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
{
"id": "reins",
"name": "Reins",
"description": "Reins — runtime security and policy enforcement for computer-using agents.",
"version": "1.0.0",
"main": "dist/plugin/index.js",
"hooks": ["before_tool_call"],
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"defaultAction": {
"type": "string",
"enum": ["ALLOW", "DENY", "ASK"],
"default": "ASK",
"description": "Default action for unknown tools"
},
"fallbackChannel": {
"type": "object",
"description": "Channel to notify when no session channel context exists (e.g. TUI sessions)",
"additionalProperties": false,
"required": ["channelId", "to"],
"properties": {
"channelId": {
"type": "string",
"enum": ["whatsapp", "telegram"]
},
"to": {
"type": "string",
"description": "Phone number or chat ID to send approval notifications to"
},
"accountId": {
"type": "string"
}
}
}
}
}
}