Crawler Summary

autonomous-claude-sandbox answer-first brief

Deploy Claude Code on Cloudflare Sandboxes. Run autonomous AI coding tasks in isolated containers via a simple API. --- name: autonomous-claude-sandbox description: Deploy Claude Code on Cloudflare Sandboxes. Run autonomous AI coding tasks in isolated containers via a simple API. --- Autonomous Claude Sandbox Skill Deploy Claude Code on Cloudflare Sandbox containers for autonomous AI task execution. When to Use This Skill Activate when you see these patterns: **Setup & Deployment:** - "Setup autonomous claude sandbox" - "Deploy cl Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.

Freshness

Last checked 4/15/2026

Best For

autonomous-claude-sandbox is best for general automation workflows where OpenClaw compatibility matters.

Not Ideal For

Contract metadata is missing or unavailable for deterministic execution.

Evidence Sources Checked

editorial-content, GITHUB OPENCLEW, runtime-metrics, public facts pack

Claim this agent
Agent DossierGitHubSafety: 94/100

autonomous-claude-sandbox

Deploy Claude Code on Cloudflare Sandboxes. Run autonomous AI coding tasks in isolated containers via a simple API. --- name: autonomous-claude-sandbox description: Deploy Claude Code on Cloudflare Sandboxes. Run autonomous AI coding tasks in isolated containers via a simple API. --- Autonomous Claude Sandbox Skill Deploy Claude Code on Cloudflare Sandbox containers for autonomous AI task execution. When to Use This Skill Activate when you see these patterns: **Setup & Deployment:** - "Setup autonomous claude sandbox" - "Deploy cl

OpenClawself-declared

Public facts

4

Change events

1

Artifacts

0

Freshness

Apr 15, 2026

Verifiededitorial-contentNo verified compatibility signals

Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.

Trust evidence available

Trust score

Unknown

Compatibility

OpenClaw

Freshness

Apr 15, 2026

Vendor

Welldundun

Artifacts

0

Benchmarks

0

Last release

Unpublished

Executive Summary

Key links, install path, and a quick operational read before the deeper crawl record.

Verifiededitorial-content

Summary

Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.

Setup snapshot

git clone https://github.com/WellDunDun/autonomous-claude-sandbox.git
  1. 1

    Setup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.

  2. 2

    Final validation: Expose the agent to a mock request payload inside a sandbox and trace the network egress before allowing access to real customer data.

Evidence Ledger

Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.

Verifiededitorial-content
Vendor (1)

Vendor

Welldundun

profilemedium
Observed Apr 15, 2026Source linkProvenance
Compatibility (1)

Protocol compatibility

OpenClaw

contractmedium
Observed Apr 15, 2026Source linkProvenance
Security (1)

Handshake status

UNKNOWN

trustmedium
Observed unknownSource linkProvenance
Integration (1)

Crawlable docs

6 indexed pages on the official domain

search_documentmedium
Observed Apr 15, 2026Source linkProvenance

Release & Crawl Timeline

Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.

Self-declaredagent-index

Artifacts Archive

Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.

Self-declaredGITHUB OPENCLEW

Extracted files

0

Examples

6

Snippets

0

Languages

typescript

Parameters

Executable Examples

bash

./Tools/execute-task.sh https://my-worker.workers.dev my-auth-token "Write a hello world script" | jq .

json

{
  "success": true,
  "taskId": "a1b2c3d4-...",
  "stdout": "Created hello.py with print('Hello, World!')",
  "execution_time_ms": 8500
}

bash

./Tools/check-prerequisites.sh | jq .

json

{
  "success": true,
  "checks": {
    "node": { "installed": true, "version": "20.10.0", "meets_requirement": true },
    "docker": { "installed": true, "running": true },
    "wrangler": { "installed": true, "authenticated": true }
  },
  "issues": []
}

bash

./Tools/validate-config.sh /path/to/project | jq .

bash

./Tools/test-deployment.sh https://my-worker.workers.dev my-auth-token | jq .

Docs & README

Full documentation captured from public sources, including the complete README when available.

Self-declaredGITHUB OPENCLEW

Docs source

GITHUB OPENCLEW

Editorial quality

ready

Deploy Claude Code on Cloudflare Sandboxes. Run autonomous AI coding tasks in isolated containers via a simple API. --- name: autonomous-claude-sandbox description: Deploy Claude Code on Cloudflare Sandboxes. Run autonomous AI coding tasks in isolated containers via a simple API. --- Autonomous Claude Sandbox Skill Deploy Claude Code on Cloudflare Sandbox containers for autonomous AI task execution. When to Use This Skill Activate when you see these patterns: **Setup & Deployment:** - "Setup autonomous claude sandbox" - "Deploy cl

Full README

name: autonomous-claude-sandbox description: Deploy Claude Code on Cloudflare Sandboxes. Run autonomous AI coding tasks in isolated containers via a simple API.

Autonomous Claude Sandbox Skill

Deploy Claude Code on Cloudflare Sandbox containers for autonomous AI task execution.

When to Use This Skill

Activate when you see these patterns:

Setup & Deployment:

  • "Setup autonomous claude sandbox"
  • "Deploy claude on cloudflare"
  • "Set up Claude Code on Cloudflare containers"

Task Execution:

  • "Execute task in sandbox"
  • "Run this in the sandbox"
  • "Delegate to sandbox"
  • "Send to autonomous claude"
  • "Run claude code autonomously"

Workflow Routing

Route to the appropriate workflow based on the request:

Setup & Operations:

  • Set up new Cloudflare Sandbox deployment → Workflows/Setup.md
  • Deploy/update existing deployment → Workflows/Deploy.md
  • Troubleshoot issues → Workflows/Troubleshoot.md
  • Upgrade SDK or dependencies → Workflows/Upgrade.md
  • Monitor deployment health → Workflows/Monitor.md

Task Execution:

  • Execute a task in the sandbox → Workflows/Execute.md

Deterministic Tools

These scripts output JSON and use proper exit codes for AI agent consumption.

| Tool | Purpose | Usage | |------|---------|-------| | Tools/execute-task.sh | Execute task in sandbox | ./Tools/execute-task.sh <url> <token> <task> | | Tools/check-prerequisites.sh | Verify all requirements | ./Tools/check-prerequisites.sh | | Tools/validate-config.sh | Check project config | ./Tools/validate-config.sh [project-dir] | | Tools/test-deployment.sh | Test live deployment | ./Tools/test-deployment.sh <url> [token] | | Tools/diagnose.sh | Gather troubleshooting info | ./Tools/diagnose.sh [project-dir] | | Tools/generate-token.sh | Generate auth token | ./Tools/generate-token.sh |

Example: Execute Task

./Tools/execute-task.sh https://my-worker.workers.dev my-auth-token "Write a hello world script" | jq .

Output:

{
  "success": true,
  "taskId": "a1b2c3d4-...",
  "stdout": "Created hello.py with print('Hello, World!')",
  "execution_time_ms": 8500
}

Example: Check Prerequisites

./Tools/check-prerequisites.sh | jq .

Output:

{
  "success": true,
  "checks": {
    "node": { "installed": true, "version": "20.10.0", "meets_requirement": true },
    "docker": { "installed": true, "running": true },
    "wrangler": { "installed": true, "authenticated": true }
  },
  "issues": []
}

Example: Validate Config

./Tools/validate-config.sh /path/to/project | jq .

Example: Test Deployment

./Tools/test-deployment.sh https://my-worker.workers.dev my-auth-token | jq .

Quick Start

Prerequisites

  • Cloudflare account with Workers Paid plan ($5/month)
  • Docker Desktop running locally
  • Node.js 18+
  • Claude MAX subscription

Installation

# Clone reference implementation
git clone https://github.com/WellDunDun/claude-code-sandbox.git
cd claude-code-sandbox
npm install

# Authenticate with Cloudflare
npx wrangler login

# Create R2 bucket
npx wrangler r2 bucket create claude-results

# Set secrets
claude setup-token
npx wrangler secret put CLAUDE_CODE_OAUTH_TOKEN

openssl rand -hex 32
npx wrangler secret put SERVER_AUTH_TOKEN

# Configure and deploy
# Edit wrangler.jsonc with your account_id
npm run deploy

Test

# Health check
curl https://YOUR-WORKER.workers.dev/health

# Execute task
curl -X POST https://YOUR-WORKER.workers.dev/execute \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"task": "What is 2 + 2?"}'

API Reference

Formal specification of the Cloudflare Sandbox Worker API endpoints.

GET /health

Health check endpoint. No authentication required.

Request:

curl https://YOUR-WORKER.workers.dev/health

Response (200 OK):

{
  "status": "healthy",
  "platform": "cloudflare_sandboxes",
  "auth_method": "claude_subscription_setup_token"
}

POST /execute

Execute a Claude Code task in an isolated sandbox container.

Headers: | Header | Required | Description | |--------|----------|-------------| | Authorization | Yes | Bearer <SERVER_AUTH_TOKEN> | | Content-Type | Yes | application/json |

Request Body:

{
  "task": "string",      // Required: Task description for Claude
  "timeout": 300000      // Optional: Timeout in ms (default: 300000)
}

Response (200 OK):

{
  "taskId": "uuid",
  "success": true,
  "stdout": "Task output...",
  "stderr": "",
  "output": "Task output..."
}

Error Responses:

| Code | Cause | Response | |------|-------|----------| | 400 | Missing task | {"error": "Task is required"} | | 401 | Invalid token | {"error": "Unauthorized"} | | 500 | Execution failed | {"error": "Task execution failed", "details": "..."} |

Example:

curl -X POST https://YOUR-WORKER.workers.dev/execute \
  -H "Authorization: Bearer YOUR_SERVER_AUTH_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"task": "What is 2 + 2?", "timeout": 60000}'

GET /tasks/:taskId/result

Retrieve stored task results from R2.

Headers: | Header | Required | Description | |--------|----------|-------------| | Authorization | Yes | Bearer <SERVER_AUTH_TOKEN> |

Response (200 OK):

{
  "taskId": "uuid",
  "success": true,
  "stdout": "...",
  "stderr": "...",
  "timestamp": "2024-01-28T00:00:00.000Z"
}

Error Responses:

| Code | Cause | Response | |------|-------|----------| | 401 | Invalid token | {"error": "Unauthorized"} | | 404 | Task not found | {"error": "Task result not found"} |


Critical Gotchas

These are hard-won lessons from actual deployment. Read carefully.

1. Base Image Must Be cloudflare/sandbox

# CORRECT
FROM docker.io/cloudflare/sandbox:0.7.0

# WRONG - causes Error 1101
FROM node:20-slim

2. Use getSandbox() API

// CORRECT
import { getSandbox } from "@cloudflare/sandbox";
const sandbox = getSandbox(env.Sandbox, "unique-id");

// WRONG - older API
const sandbox = await Sandbox.create(env.SANDBOX, {...});

3. Export the Sandbox Class

// REQUIRED in index.ts
export { Sandbox } from "@cloudflare/sandbox";

4. Use --permission-mode, NOT --dangerously-skip-permissions

// CORRECT - works in sandbox (runs as root)
const cmd = `claude -p "${task}" --permission-mode acceptEdits`;

// WRONG - fails because sandbox runs as root
const cmd = `claude --dangerously-skip-permissions -p "${task}"`;

5. Binding Name Must Match

// wrangler.jsonc
"durable_objects": {
  "bindings": [{ "class_name": "Sandbox", "name": "Sandbox" }]
}
// index.ts - must match "name" above
interface Env {
  Sandbox: DurableObjectNamespace;
}

6. containers:write Permission Required

npx wrangler login
# Ensure containers:write is granted

Required Configuration

Dockerfile

FROM docker.io/cloudflare/sandbox:0.7.0
RUN npm install -g @anthropic-ai/claude-code
ENV COMMAND_TIMEOUT_MS=300000
EXPOSE 3000

wrangler.jsonc

{
  "containers": [{
    "class_name": "Sandbox",
    "image": "./Dockerfile",
    "instance_type": "standard-1",
    "max_instances": 5
  }],
  "durable_objects": {
    "bindings": [{ "class_name": "Sandbox", "name": "Sandbox" }]
  },
  "migrations": [{ "new_sqlite_classes": ["Sandbox"], "tag": "v1" }]
}

Common Errors

| Error | Cause | Fix | |-------|-------|-----| | 1101 | Wrong base image | Use cloudflare/sandbox:0.7.0 | | containers:write | Missing permission | Re-run wrangler login | | root privileges | Wrong flag | Use --permission-mode acceptEdits | | 401 from Anthropic | Bad OAuth token | Re-run claude setup-token |


Security Considerations

Token Management

SERVER_AUTH_TOKEN:

  • Generate with ./Tools/generate-token.sh (256-bit entropy)
  • Store securely - this grants full API access
  • Rotate periodically (recommended: quarterly)
  • Never commit to version control

CLAUDE_CODE_OAUTH_TOKEN:

  • Generated via claude setup-token
  • Tied to your Claude MAX subscription
  • Expires and needs periodic refresh
  • Set as Wrangler secret, never in code

Token Rotation

# Rotate SERVER_AUTH_TOKEN
./Tools/generate-token.sh
npx wrangler secret put SERVER_AUTH_TOKEN
# Update all clients with new token

# Refresh CLAUDE_CODE_OAUTH_TOKEN
claude setup-token
npx wrangler secret put CLAUDE_CODE_OAUTH_TOKEN
npm run deploy

Network Security

  • All traffic is HTTPS (TLS 1.3)
  • Cloudflare provides DDoS protection
  • Worker validates auth before any sandbox access
  • Containers are isolated per-task

Data Handling

| Data Type | Storage | Retention | |-----------|---------|-----------| | Task input | Memory only | Request duration | | Task output | R2 bucket | Until deleted | | OAuth tokens | Wrangler secrets | Encrypted at rest | | Logs | Cloudflare | 7 days default |

Container Isolation

Each task runs in an isolated container:

  • Fresh environment per execution
  • No persistent state between tasks
  • Resource limits enforced
  • No network access to other containers

Best Practices

  1. Least Privilege: Only grant necessary permissions
  2. Token Rotation: Rotate tokens quarterly
  3. Monitoring: Watch for unusual auth failures
  4. Audit Logs: Review Cloudflare logs regularly
  5. R2 Cleanup: Delete old task results periodically

Resources

  • Reference Implementation: https://github.com/WellDunDun/claude-code-sandbox
  • Cloudflare Sandbox Docs: https://developers.cloudflare.com/sandbox/
  • Sandbox SDK GitHub: https://github.com/cloudflare/sandbox-sdk
  • Claude Code Tutorial: https://developers.cloudflare.com/sandbox/tutorials/claude-code/

Costs

| Component | Cost | |-----------|------| | Workers Paid | $5/month | | Container CPU | ~$0.072/vCPU-hour | | Container Memory | ~$0.009/GiB-hour | | R2 Storage | First 10GB free |

Typical usage: $15-40/month (excluding Claude MAX subscription).

Contract & API

Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.

MissingGITHUB OPENCLEW

Contract coverage

Status

missing

Auth

None

Streaming

No

Data region

Unspecified

Protocol support

OpenClaw: self-declared

Requires: none

Forbidden: none

Guardrails

Operational confidence: low

No positive guardrails captured.
Invocation examples
curl -s "https://xpersona.co/api/v1/agents/welldundun-autonomous-claude-sandbox/snapshot"
curl -s "https://xpersona.co/api/v1/agents/welldundun-autonomous-claude-sandbox/contract"
curl -s "https://xpersona.co/api/v1/agents/welldundun-autonomous-claude-sandbox/trust"

Reliability & Benchmarks

Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.

Missingruntime-metrics

Trust signals

Handshake

UNKNOWN

Confidence

unknown

Attempts 30d

unknown

Fallback rate

unknown

Runtime metrics

Observed P50

unknown

Observed P95

unknown

Rate limit

unknown

Estimated cost

unknown

Do not use if

Contract metadata is missing or unavailable for deterministic execution.
No benchmark suites or observed failure patterns are available.

Media & Demo

Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.

Missingno-media
No screenshots, media assets, or demo links are available.

Related Agents

Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.

Self-declaredprotocol-neighbors
GITHUB_REPOSactivepieces

Rank

70

AI Agents & MCPs & AI Workflow Automation • (~400 MCP servers for AI agents) • AI Automation / AI Agent with MCPs • AI Workflows & AI Agents • MCPs for AI Agents

Traction

No public download signal

Freshness

Updated 2d ago

OPENCLAW
GITHUB_REPOScherry-studio

Rank

70

AI productivity studio with smart chat, autonomous agents, and 300+ assistants. Unified access to frontier LLMs

Traction

No public download signal

Freshness

Updated 5d ago

MCPOPENCLAW
GITHUB_REPOSAionUi

Rank

70

Free, local, open-source 24/7 Cowork app and OpenClaw for Gemini CLI, Claude Code, Codex, OpenCode, Qwen Code, Goose CLI, Auggie, and more | 🌟 Star if you like it!

Traction

No public download signal

Freshness

Updated 6d ago

MCPOPENCLAW
GITHUB_REPOSCopilotKit

Rank

70

The Frontend for Agents & Generative UI. React + Angular

Traction

No public download signal

Freshness

Updated 23d ago

OPENCLAW
Machine Appendix

Contract JSON

{
  "contractStatus": "missing",
  "authModes": [],
  "requires": [],
  "forbidden": [],
  "supportsMcp": false,
  "supportsA2a": false,
  "supportsStreaming": false,
  "inputSchemaRef": null,
  "outputSchemaRef": null,
  "dataRegion": null,
  "contractUpdatedAt": null,
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Invocation Guide

{
  "preferredApi": {
    "snapshotUrl": "https://xpersona.co/api/v1/agents/welldundun-autonomous-claude-sandbox/snapshot",
    "contractUrl": "https://xpersona.co/api/v1/agents/welldundun-autonomous-claude-sandbox/contract",
    "trustUrl": "https://xpersona.co/api/v1/agents/welldundun-autonomous-claude-sandbox/trust"
  },
  "curlExamples": [
    "curl -s \"https://xpersona.co/api/v1/agents/welldundun-autonomous-claude-sandbox/snapshot\"",
    "curl -s \"https://xpersona.co/api/v1/agents/welldundun-autonomous-claude-sandbox/contract\"",
    "curl -s \"https://xpersona.co/api/v1/agents/welldundun-autonomous-claude-sandbox/trust\""
  ],
  "jsonRequestTemplate": {
    "query": "summarize this repo",
    "constraints": {
      "maxLatencyMs": 2000,
      "protocolPreference": [
        "OPENCLEW"
      ]
    }
  },
  "jsonResponseTemplate": {
    "ok": true,
    "result": {
      "summary": "...",
      "confidence": 0.9
    },
    "meta": {
      "source": "GITHUB_OPENCLEW",
      "generatedAt": "2026-04-17T01:27:44.113Z"
    }
  },
  "retryPolicy": {
    "maxAttempts": 3,
    "backoffMs": [
      500,
      1500,
      3500
    ],
    "retryableConditions": [
      "HTTP_429",
      "HTTP_503",
      "NETWORK_TIMEOUT"
    ]
  }
}

Trust JSON

{
  "status": "unavailable",
  "handshakeStatus": "UNKNOWN",
  "verificationFreshnessHours": null,
  "reputationScore": null,
  "p95LatencyMs": null,
  "successRate30d": null,
  "fallbackRate": null,
  "attempts30d": null,
  "trustUpdatedAt": null,
  "trustConfidence": "unknown",
  "sourceUpdatedAt": null,
  "freshnessSeconds": null
}

Capability Matrix

{
  "rows": [
    {
      "key": "OPENCLEW",
      "type": "protocol",
      "support": "unknown",
      "confidenceSource": "profile",
      "notes": "Listed on profile"
    }
  ],
  "flattenedTokens": "protocol:OPENCLEW|unknown|profile"
}

Facts JSON

[
  {
    "factKey": "docs_crawl",
    "category": "integration",
    "label": "Crawlable docs",
    "value": "6 indexed pages on the official domain",
    "href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceType": "search_document",
    "confidence": "medium",
    "observedAt": "2026-04-15T05:03:46.393Z",
    "isPublic": true
  },
  {
    "factKey": "vendor",
    "category": "vendor",
    "label": "Vendor",
    "value": "Welldundun",
    "href": "https://github.com/WellDunDun/autonomous-claude-sandbox",
    "sourceUrl": "https://github.com/WellDunDun/autonomous-claude-sandbox",
    "sourceType": "profile",
    "confidence": "medium",
    "observedAt": "2026-04-15T03:13:45.546Z",
    "isPublic": true
  },
  {
    "factKey": "protocols",
    "category": "compatibility",
    "label": "Protocol compatibility",
    "value": "OpenClaw",
    "href": "https://xpersona.co/api/v1/agents/welldundun-autonomous-claude-sandbox/contract",
    "sourceUrl": "https://xpersona.co/api/v1/agents/welldundun-autonomous-claude-sandbox/contract",
    "sourceType": "contract",
    "confidence": "medium",
    "observedAt": "2026-04-15T03:13:45.546Z",
    "isPublic": true
  },
  {
    "factKey": "handshake_status",
    "category": "security",
    "label": "Handshake status",
    "value": "UNKNOWN",
    "href": "https://xpersona.co/api/v1/agents/welldundun-autonomous-claude-sandbox/trust",
    "sourceUrl": "https://xpersona.co/api/v1/agents/welldundun-autonomous-claude-sandbox/trust",
    "sourceType": "trust",
    "confidence": "medium",
    "observedAt": null,
    "isPublic": true
  }
]

Change Events JSON

[
  {
    "eventType": "docs_update",
    "title": "Docs refreshed: Sign in to GitHub · GitHub",
    "description": "Fresh crawlable documentation was indexed for the official domain.",
    "href": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceUrl": "https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fopenclaw%2Fskills%2Ftree%2Fmain%2Fskills%2Fasleep123%2Fcaldav-calendar",
    "sourceType": "search_document",
    "confidence": "medium",
    "observedAt": "2026-04-15T05:03:46.393Z",
    "isPublic": true
  }
]

Sponsored

Ads related to autonomous-claude-sandbox and adjacent AI workflows.