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
Crawler Summary
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
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
Public facts
4
Change events
1
Artifacts
0
Freshness
Apr 15, 2026
Capability contract not published. No trust telemetry is available yet. Last updated 4/15/2026.
Trust score
Unknown
Compatibility
OpenClaw
Freshness
Apr 15, 2026
Vendor
Welldundun
Artifacts
0
Benchmarks
0
Last release
Unpublished
Key links, install path, and a quick operational read before the deeper crawl record.
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.gitSetup complexity is LOW. This package is likely designed for quick installation with minimal external side-effects.
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.
Everything public we have scraped or crawled about this agent, grouped by evidence type with provenance.
Vendor
Welldundun
Protocol compatibility
OpenClaw
Handshake status
UNKNOWN
Crawlable docs
6 indexed pages on the official domain
Merged public release, docs, artifact, benchmark, pricing, and trust refresh events.
Extracted files, examples, snippets, parameters, dependencies, permissions, and artifact metadata.
Extracted files
0
Examples
6
Snippets
0
Languages
typescript
Parameters
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 .
Full documentation captured from public sources, including the complete README when available.
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
Deploy Claude Code on Cloudflare Sandbox containers for autonomous AI task execution.
Activate when you see these patterns:
Setup & Deployment:
Task Execution:
Route to the appropriate workflow based on the request:
Setup & Operations:
Workflows/Setup.mdWorkflows/Deploy.mdWorkflows/Troubleshoot.mdWorkflows/Upgrade.mdWorkflows/Monitor.mdTask Execution:
Workflows/Execute.mdThese 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 |
./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
}
./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": []
}
./Tools/validate-config.sh /path/to/project | jq .
./Tools/test-deployment.sh https://my-worker.workers.dev my-auth-token | jq .
# 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
# 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?"}'
Formal specification of the Cloudflare Sandbox Worker API endpoints.
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"
}
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}'
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"} |
These are hard-won lessons from actual deployment. Read carefully.
# CORRECT
FROM docker.io/cloudflare/sandbox:0.7.0
# WRONG - causes Error 1101
FROM node:20-slim
// CORRECT
import { getSandbox } from "@cloudflare/sandbox";
const sandbox = getSandbox(env.Sandbox, "unique-id");
// WRONG - older API
const sandbox = await Sandbox.create(env.SANDBOX, {...});
// REQUIRED in index.ts
export { Sandbox } from "@cloudflare/sandbox";
// 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}"`;
// wrangler.jsonc
"durable_objects": {
"bindings": [{ "class_name": "Sandbox", "name": "Sandbox" }]
}
// index.ts - must match "name" above
interface Env {
Sandbox: DurableObjectNamespace;
}
npx wrangler login
# Ensure containers:write is granted
FROM docker.io/cloudflare/sandbox:0.7.0
RUN npm install -g @anthropic-ai/claude-code
ENV COMMAND_TIMEOUT_MS=300000
EXPOSE 3000
{
"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" }]
}
| 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 |
SERVER_AUTH_TOKEN:
./Tools/generate-token.sh (256-bit entropy)CLAUDE_CODE_OAUTH_TOKEN:
claude setup-token# 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
| 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 |
Each task runs in an isolated container:
| 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).
Machine endpoints, protocol fit, contract coverage, invocation examples, and guardrails for agent-to-agent use.
Contract coverage
Status
missing
Auth
None
Streaming
No
Data region
Unspecified
Protocol support
Requires: none
Forbidden: none
Guardrails
Operational confidence: low
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"
Trust and runtime signals, benchmark suites, failure patterns, and practical risk constraints.
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
Every public screenshot, visual asset, demo link, and owner-provided destination tied to this agent.
Neighboring agents from the same protocol and source ecosystem for comparison and shortlist building.
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
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
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
Rank
70
The Frontend for Agents & Generative UI. React + Angular
Traction
No public download signal
Freshness
Updated 23d ago
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.