-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
58 lines (58 loc) · 1.55 KB
/
openclaw.plugin.json
File metadata and controls
58 lines (58 loc) · 1.55 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
{
"id": "apify",
"name": "Apify",
"description": "Universal web scraping and data extraction via Apify — scrape any platform using 57+ Actors across social media, maps, search, e-commerce, and more.",
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"enabled": {
"type": "boolean",
"description": "Enable the Apify plugin (default: true when apiKey is set)."
},
"apiKey": {
"type": "string",
"description": "Apify API token (optional; defaults to APIFY_API_KEY env var)."
},
"baseUrl": {
"type": "string",
"description": "Apify API base URL (default: https://api.apify.com)."
},
"maxResults": {
"type": "number",
"minimum": 1,
"maximum": 1000,
"description": "Default max results per Actor run (default: 20)."
},
"enabledTools": {
"type": "array",
"items": {
"type": "string",
"enum": ["apify"]
},
"description": "Which tools to register (default: all tools enabled)."
}
}
},
"uiHints": {
"apiKey": {
"label": "Apify API Key",
"sensitive": true,
"help": "Get one at https://console.apify.com/settings/integrations"
},
"enabled": {
"label": "Enable Apify Plugin"
},
"enabledTools": {
"label": "Enabled Tools",
"advanced": true
},
"baseUrl": {
"label": "API Base URL",
"advanced": true
},
"maxResults": {
"label": "Default Max Results"
}
}
}