-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenclaw.plugin.json
More file actions
43 lines (43 loc) · 1.11 KB
/
Copy pathopenclaw.plugin.json
File metadata and controls
43 lines (43 loc) · 1.11 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
{
"id": "robot-plugin",
"name": "Robot Gateway Plugin",
"description": "Protocol-Agnostic Robot Gateway supporting WebSocket and WebRTC transports",
"version": "1.0.0",
"author": "OpenClaw",
"license": "MIT",
"main": "dist/index.js",
"keywords": [
"robotics",
"websocket",
"webrtc",
"gateway",
"iot"
],
"configSchema": {
"type": "object",
"properties": {
"transport_type": {
"type": "string",
"enum": ["ws", "webrtc"],
"default": "ws",
"description": "Transport protocol to use for communicating with the robot"
},
"robot_url": {
"type": "string",
"default": "ws://ai.e-inv.net.cn:18080",
"description": "URL for WebSocket connection to the robot"
},
"signaling_url": {
"type": "string",
"default": "ws://localhost:3000",
"description": "URL for WebRTC signaling server"
},
"robot_id": {
"type": "string",
"default": "default_robot",
"description": "Unique identifier for the robot"
}
},
"required": ["transport_type"]
}
}