forked from whateverai-ai/cloudphone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
62 lines (62 loc) · 1.8 KB
/
openclaw.plugin.json
File metadata and controls
62 lines (62 loc) · 1.8 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
{
"id": "cloudphone",
"name": "CloudPhone Plugin",
"version": "2026.4.20",
"description": "OpenClaw CloudPhone plugin that exposes CloudPhone AI Agent capabilities as agent tools. Submit natural language instructions for cloud phone automation and stream task results via SSE.",
"configSchema": {
"type": "object",
"additionalProperties": false,
"properties": {
"baseUrl": {
"type": "string",
"description": "CloudPhone API base URL (without /openapi/v1)",
"default": "https://ai.suqi.tech/ai"
},
"apikey": {
"type": "string",
"description": "Authorization credential (ApiKey)"
},
"timeout": {
"type": "number",
"description": "Request timeout in milliseconds",
"default": 5000
},
"llmApiKey": {
"type": "string",
"description": "Default LLM provider API key for cloud phone automation"
},
"llmBaseUrl": {
"type": "string",
"description": "Default LLM provider base URL for cloud phone automation"
},
"maxSteps": {
"type": "integer",
"minimum": 1,
"maximum": 200,
"description": "Maximum number of steps the cloud phone Agent may execute per task. Used when the caller does not provide max_steps.",
"default": 50
}
}
},
"uiHints": {
"baseUrl": {
"label": "API Base URL",
"placeholder": "https://ai.suqi.tech/ai (without /openapi/v1)"
},
"apikey": {
"label": "Authorization / ApiKey",
"placeholder": "Enter the Authorization value (for example, AiApiKey)",
"sensitive": true
},
"timeout": {
"label": "Request Timeout (ms)"
},
"maxSteps": {
"label": "Max Steps",
"placeholder": "50"
}
},
"skills": [
"./skills"
]
}