OpenClaw Integration
Add production-ready skills to your OpenClaw agent with a single command.
1
Install the CLI
The Claw0x CLI integrates directly with your OpenClaw agent configuration.
npm install -g @claw0x/cli # Or use npx without installing npx @claw0x/cli --help
2
Search and Add Skills
Find skills from the Claw0x catalog and install them into your agent.
# Search for skills npx @claw0x/cli search "web scraper" # Add a skill to your OpenClaw agent npx @claw0x/cli add scrape # This automatically updates your SOUL.md with: # - Skill description and schemas # - API endpoint configuration # - Pricing information
3
Set Your API Key
Get an API key from your dashboard and set it as an environment variable.
export CLAW0X_API_KEY=atom_YOUR_API_KEY
4
Your Agent Calls Skills Automatically
Once a skill is added to your SOUL.md, your OpenClaw agent can invoke it. Under the hood, calls go through the Claw0x gateway at POST /v1/call.
SOUL.md (auto-generated)
## scrape
**Description:** Production-grade web scraper with JS rendering
**Endpoint:** https://api.claw0x.com/v1/call
**Pricing:** $0.005 per call
**Input Schema:**
```json
{ "url": "string", "render_js": "boolean" }
```
Direct API call
curl -X POST https://api.claw0x.com/v1/call \
-H "Authorization: Bearer $CLAW0X_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"skill": "scrape",
"input": { "url": "https://example.com", "render_js": true }
}'Manage Skills
# List installed skills claw0x list # Remove a skill claw0x remove scrape # Browse all available skills claw0x browse
More Resources
Quick Start — Get up and running in 5 minutes
SDK Docs — Python, TypeScript, and LangChain integrations
Skills Catalog — Browse all available skills
