← Back to Productivity & Business

OpenClaw

Skill generator and security scanner for AI agents

https://hub.toolweb.in/tools/openclaw/

Endpoints

GET /health

Health

POST /generate-skill

Generate Skill

Request Body (JSON)

{
  "name": "<string>",
  "version": "1.0.0",
  "description": "<string>",
  "detail": "",
  "triggers": [],
  "primary_env": "",
  "env_vars": [],
  "bins": [],
  "capabilities": [],
  "install_method": "none",
  "install_pkg": "",
  "homepage": "",
  "emoji": "\ud83d\udd27"
}
POST /scan-skill

Scan Skill

Request Body (JSON)

{
  "content": "<string>",
  "scan_depth": "deep",
  "context": "",
  "check_injection": true,
  "check_exfil": true,
  "check_creds": true,
  "check_perms": true,
  "check_meta": true,
  "check_scope": true
}

Quick Start

# cURL
curl -H "X-API-Key: YOUR_API_KEY" \
  https://hub.toolweb.in/tools/openclaw/
# Python
import requests
r = requests.get("https://hub.toolweb.in/tools/openclaw/",
    headers={"X-API-Key": "YOUR_API_KEY"})
print(r.json())
# JavaScript
fetch("https://hub.toolweb.in/tools/openclaw/", {
  headers: { "X-API-Key": "YOUR_API_KEY" }
}).then(r => r.json()).then(console.log)

Sign up free to get your API key auto-filled.