Skills edge-router
Route AI agent compute tasks to the cheapest viable backend. Supports local inference (Ollama), cloud GPU (Vast.ai), and quantum hardware (Wukong 72Q). Use when an agent needs to decide where to run a task, optimize compute costs, check backend availability, or execute workloads across edge/cloud/quantum infrastructure.
install
source · Clone the upstream repo
git clone https://github.com/openclaw/skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/openclaw/skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/adjusternwachukwu-bot/edge-router" ~/.claude/skills/clawdbot-skills-edge-router && rm -rf "$T"
manifest:
skills/adjusternwachukwu-bot/edge-router/SKILL.mdsource content
Edge Router
Routes tasks to cheapest available backend: local (free) → cloud GPU ($0.01) → quantum ($0.10).
API
Base:
https://edge-router.gpupulse.dev/api/v1 (or localhost:3825)
Route (recommend)
curl -X POST "$BASE/route" -H "Content-Type: application/json" \ -d '{"task_type": "inference"}'
Execute (route + run)
curl -X POST "$BASE/execute" -H "Content-Type: application/json" \ -d '{"task_type": "inference", "payload": {"model": "llama3.2:1b", "prompt": "hello"}}'
Task Types
→ local first, cloud fallbackinference
→ cloud GPUtraining
→ Wukong 72Qquantum
→ cheapest availableauto
Other
— list + statusGET /backends
— routing statisticsGET /stats
— health checkGET /health