Skip to main content
Generaldvcrn

openclaw-agent-compute

Public HTTP client skill exposing compute.* tools by calling a private Compute Gateway over HTTPS. Includes a starter kit to run OpenClaw preconfigured.

Stars
15
Source
dvcrn/openclaw-skills-marketplace
Updated
2026-05-29
Slug
dvcrn--openclaw-skills-marketplace--openclaw-agent-compute
View on GitHubRaw SKILL.md

// install — copy + paste into any project

mkdir -p .claude/skills && curl -fsSL https://raw.githubusercontent.com/dvcrn/openclaw-skills-marketplace/HEAD/plugins/aleksandrkrivolap--openclaw-agent-compute/skills/openclaw-agent-compute/SKILL.md -o .claude/skills/openclaw-agent-compute.md

Drops the SKILL.md into .claude/skills/openclaw-agent-compute.md. Works with Claude Code, Cursor, and any agent that loads SKILL.md files from .claude/skills/.

openclaw-agent-compute

Public, agent-friendly skill that exposes compute.* tools by calling a private Compute Gateway over HTTPS.

Environment

  • MCP_COMPUTE_URL (e.g. https://compute.example.com)
  • MCP_COMPUTE_API_KEY

Copy skills/openclaw-agent-compute/.env.example.

Tools / API expectation

This client expects the private gateway to implement:

  • POST /v1/sessions (create)
  • GET /v1/sessions/{session_id} (get status)
  • POST /v1/exec (run command)
  • GET /v1/usage/{session_id} (usage/cost)
  • Artifacts:
    • GET /v1/artifacts/{session_id} (list)
    • PUT /v1/artifacts/{session_id}/{path} (upload bytes; {path} must be URL-encoded and may include slashes)
    • GET /v1/artifacts/{session_id}/{path} (download bytes; {path} must be URL-encoded)
    • DELETE /v1/artifacts/{session_id}/{path} (delete; {path} must be URL-encoded)
  • DELETE /v1/sessions/{session_id} (destroy)

Scripts

  • HTTP client: skills/openclaw-agent-compute/scripts/client.js
  • Example: skills/openclaw-agent-compute/scripts/example_exec.js

Local smoke test

cp skills/openclaw-agent-compute/.env.example .env
# edit .env
npm i
npm run example:exec

Starter kit

See skills/openclaw-agent-compute/starter-kit/.

It keeps the OpenClaw image overrideable via OPENCLAW_IMAGE until an official image/tag is confirmed.

Publishing

  • Checklist: PUBLISHING.md
  • Runbook (local publish + GitHub Actions tag-based publish): CLAWDHUB_RUNBOOK.md