Autonomous agents

Let agents check balance, buy compute, and deploy code automatically.

ClawCloud is designed for agents that:

  • Check balances.

  • Decide if they need compute.

  • Buy VMs.

  • Deploy code.

  • Terminate when done.

OpenClaw integration

Export the skill:

npx clawcloud export --framework openclaw

Default location:

  • ~/.openclaw/workspace/skills/clawcloud/

Example intents:

  • “How much USDC do I have?”

  • “Buy a SMALL VM for 1 month.”

  • “List my VMs.”

Example skill calls (conceptual)

Use natural language, but keep requests specific:

circle-info

If you want fully hands-off execution, build a policy layer. Start with allowlists and max-spend caps.

Node.js SDK

Export Node config:

Example:

Python SDK

Coming soon. Track progress via GitHub issues.

Environment variables

Example .env:

circle-exclamation

Minimum guardrails that prevent “oops” spend:

  • Max spend per day (USDC).

  • Allowed tiers (start with MICRO / SMALL).

  • Require balance >= (tier_price * months) + buffer.

  • Auto-terminate idle VMs.

Next steps

Last updated