Skip to main content

Cloud Runtimes

Cloud Runtimes let you deploy AI agents in managed containers — no Kubernetes, no Docker Compose, no infra management. Push code, get a running agent with a public URL.

What are runtimes?

A runtime is a managed container that runs your agent code. It includes:

  • Compute — CPU and memory allocated from a preset
  • Lifecycle — start, stop, idle-timeout, auto-restart
  • Hosting — optional public HTTP endpoint at {slug}.run.1claw.xyz
  • Logs — real-time streaming and historical access
  • Sidecar — 1Claw sidecar auto-injected for secret access and memory

Templates

TemplateRuntimeUse case
PythonPython 3.12 + pipLangChain, CrewAI, custom agents
Node.jsNode 22 + pnpmTypeScript agents, ElizaOS
Hermes1Claw Hermes runtimeBuilt-in MCP + Shroud integration
OpenClawRust-based minimalHigh-performance agents
Custom DockerAny DockerfileFull control

Create via dashboard

  1. Go to Runtimes in the sidebar
  2. Click Create Runtime
  3. Choose a template (or upload Dockerfile)
  4. Select a preset (small / medium / large)
  5. Configure environment variables
  6. Optionally enable hosting (public URL)
  7. Click Deploy

Create via CLI

# Deploy from current directory
1claw runtime create \
--name "my-agent" \
--template python \
--preset medium \
--env OPENAI_API_KEY=vault://secrets/openai-key

# Deploy with hosting
1claw runtime create \
--name "api-agent" \
--template node \
--preset large \
--expose-http \
--slug "my-api-agent" \
--inbound-auth api_key

# Shorthand: deploy to cloud
1claw deploy --cloud

# Manage lifecycle
1claw runtime start <id>
1claw runtime stop <id>
1claw runtime logs <id> --follow

# Check slug availability
1claw runtime slug-check my-agent-name

Source repository

Runtimes support git-based deployment. Specify a repo URL and the runtime clones it at startup:

1claw runtime create \
--name "research-crew" \
--template python \
--source "https://github.com/myorg/research-agent.git" \
--branch main

The container runs pip install -r requirements.txt (Python) or npm install (Node.js) then executes the entrypoint.

Hosting

Enable expose_http to get a public URL:

https://{slug}.run.1claw.xyz

Inbound authentication

ModeDescription
api_keyRequire Authorization: Bearer <key> header
jwtValidate 1Claw JWT (agent or user)
publicNo authentication (use with caution)

Slug rules

  • 3–63 characters, lowercase alphanumeric + hyphens
  • Must not start/end with a hyphen
  • Reserved words blocked (api, admin, status, etc.)
  • 30-day cooldown after release

Presets and pricing

PresetvCPUMemoryTier requiredIncluded hours
small0.5512 MBFree10h/mo
medium11 GBPro100h/mo
large24 GBPro100h/mo
small-cc0.5512 MBBusiness2000h/mo
medium-cc12 GBBusiness2000h/mo
large-cc48 GBBusiness2000h/mo

-cc presets run on Confidential Compute (AMD SEV-SNP) for TEE isolation.

Tier limits

TierMax runtimesHours / month
Free110
Pro3100
Team10500
Business252,000
EnterpriseCustomCustom

Logs and monitoring

# Stream logs in real-time
1claw runtime logs <id> --follow

# Last 100 lines
1claw runtime logs <id> --tail 100

In the dashboard, the runtime detail page shows a live log viewer with search and severity filtering.

Idle auto-stop

Runtimes with no inbound requests for idle_timeout_secs (default: 300s for Free, 900s for Pro+) are automatically stopped to save resources. They restart on the next request (cold start ~2–5s).

Disable idle timeout for always-on agents:

1claw runtime update <id> --idle-timeout 0

Trial system (Free tier)

Free tier users get 1 runtime with 10 hours/month. The runtime auto-stops when hours are exhausted. Hours reset at the start of each billing cycle.

To unlock more runtimes and hours, upgrade to Pro or higher at Settings → Billing.

Next steps