Install
openclaw skills install nwo-roboticsControl robots and IoT devices via natural language using the NWO Robotics API for robot commands, sensor queries, vision tasks, and task planning.
openclaw skills install nwo-roboticsHomepage: https://nworobotics.cloud
Repository: https://huggingface.co/spaces/PUBLICAE/nwo-robotics-api-demo
Author: NWO Capital
Control robots and IoT devices through natural language using the NWO Robotics API.
This skill enables OpenClaw agents to interact with the physical world by controlling robots, querying IoT sensors, and executing vision-language-action tasks through the NWO Robotics API platform.
Users must set these environment variables:
| Variable | Description | Required |
|---|---|---|
NWO_API_KEY | Your NWO Robotics API key | Yes |
NWO_USER_ID | Your NWO Robotics user ID | Yes |
NWO_API_URL | API base URL (default: https://nwo.capital/webapp) | No |
# Set environment variables
export NWO_API_KEY="your_api_key_here"
export NWO_USER_ID="your_user_id_here"
Then in OpenClaw:
User: "Check robot status"
→ Queries all connected robots and returns status
User: "Move robot_001 to position x:10, y:20"
→ Sends navigation command to robot_001
User: "What's the temperature in lab 3?"
→ Queries IoT sensors in lab 3
User: "Scan warehouse for boxes"
→ Initiates vision-based object detection
POST /api-robotics.php - Core robot controlPOST /api-iot.php - IoT sensor dataPOST /api-perception.php - Vision tasksPOST /api-voice.php - Speech commandsPOST /api-tasks.php - Task planningPOST /api-safety.php - Safety monitoringDefault limits apply:
| Command | Action |
|---|---|
| "Robot status" | List all robot states |
| "Stop all robots" | Emergency stop command |
| "Temperature check" | Query temperature sensors |
| "Pick up the red box" | VLA task execution |
| "Patrol mode on" | Activate patrol behavior |
MIT-0 - Free to use, modify, and redistribute. No attribution required.