-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
47 lines (47 loc) · 1.25 KB
/
openclaw.plugin.json
File metadata and controls
47 lines (47 loc) · 1.25 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
{
"id": "aiya_plugin",
"name": "Aiya Robot Gateway Plugin",
"description": "Production-ready WebSocket gateway for Aiya physical robot with secure handshake and command execution",
"version": "1.0.0",
"author": "OpenClaw",
"license": "MIT",
"main": "dist/index.js",
"keywords": [
"robotics",
"aiya",
"websocket",
"gateway",
"iot"
],
"configSchema": {
"type": "object",
"properties": {
"robot_url": {
"type": "string",
"default": "wss://test.e-inv.net.cn/aiya/v1/",
"description": "WebSocket URL for the Aiya robot server"
},
"device_id": {
"type": "string",
"default": "c8:5f:c1:31:c6:6d",
"description": "Unique device identifier for the robot"
},
"client_id": {
"type": "string",
"default": "123456",
"description": "Client identifier for authentication"
},
"reconnect_attempts": {
"type": "number",
"default": 10,
"description": "Maximum reconnection attempts"
},
"reconnect_interval": {
"type": "number",
"default": 5000,
"description": "Reconnection interval in milliseconds"
}
},
"required": ["robot_url", "device_id", "client_id"]
}
}