-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
39 lines (39 loc) · 1.63 KB
/
openclaw.plugin.json
File metadata and controls
39 lines (39 loc) · 1.63 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": "clawflow",
"name": "ClawFlow",
"description": "The n8n for agents. Declarative, AI-native workflow engine — LLM-writable, Cloudflare-portable.",
"version": "0.2.2",
"skills": ["./skills/flow"],
"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"]
}
}
},
"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": "Webhook Server", "help": "Start an HTTP server for triggering flows via webhook. Requires at least port." }
}
}