-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
65 lines (65 loc) · 2.61 KB
/
openclaw.plugin.json
File metadata and controls
65 lines (65 loc) · 2.61 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
{
"id": "clawflow",
"name": "ClawFlow",
"description": "The n8n for agents. Declarative, AI-native workflow engine — LLM-writable, Cloudflare-portable.",
"version": "1.2.2",
"skills": ["./skills/flow"],
"contracts": {
"tools": [
"flow_create",
"flow_delete",
"flow_restore_from_bin",
"flow_run",
"flow_resume",
"flow_send_event",
"flow_status",
"flow_list",
"flow_read",
"flow_publish",
"flow_edit"
]
},
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"apiKey": { "type": "string" },
"defaultModel": { "type": "string" },
"baseUrl": { "type": "string" },
"defaultAgent": { "type": "string" },
"memoryDir": { "type": "string" },
"stateDir": { "type": "string" },
"maxNodeDurationMs": { "type": "number" },
"serve": {
"type": "object",
"properties": {
"port": { "type": "number" },
"path": { "type": "string" },
"flowsDir": { "type": "string" }
},
"required": ["port"]
},
"approval": {
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": { "type": "boolean" },
"skipSessionPatterns": { "type": "array", "items": { "type": "string" } },
"timeoutMs": { "type": "number" },
"timeoutBehavior": { "type": "string", "enum": ["allow", "deny"] }
}
}
}
},
"uiHints": {
"apiKey": { "label": "Anthropic API Key", "sensitive": true, "help": "Used when ANTHROPIC_API_KEY env var is not set" },
"defaultModel": { "label": "Default AI Model", "placeholder": "smart" },
"baseUrl": { "label": "Direct API Base URL", "placeholder": "https://api.anthropic.com" },
"defaultAgent": { "label": "Agent ID for do:agent nodes", "placeholder": "ops", "help": "OpenClaw agent ID to delegate agent tasks to. Uses --local (embedded) if unset." },
"memoryDir": { "label": "Memory Directory" },
"stateDir": { "label": "Flow State Directory" },
"maxNodeDurationMs": { "label": "Node Timeout (ms)", "placeholder": "30000" },
"serve": { "label": "Flow HTTP Server", "help": "Start an HTTP server that runs flows on POST. Requires at least port. Endpoint: POST /<basePath>/<flowName>/run with the JSON body as the flow's inputs." },
"approval": { "label": "Approval Gate", "help": "Prompt the user before flow_run executes. Set enabled=false to disable entirely. Add session-key substrings to skipSessionPatterns to bypass for unattended hooks (e.g. \"email\" for inbound-email automation)." }
}
}