A community-driven registry for Claude, Cursor, Windsurf, Cline & more. Not affiliated with Anthropic.
Are you the author? Sign in to claim
Open-source Actor that provides a sandbox for secure execution of AI generated code. Supports Node.js, Python. Provides
A suite of Apify Actors providing secure, containerized environments for AI coding agents.
This monorepo contains four Apify Actors designed for AI-powered coding workflows:
| Actor | Description | Use Case |
|---|---|---|
| AI Sandbox | Core containerized environment with REST API, MCP server, and interactive shell | General AI agent development, sandboxed code execution |
| Claude Code | One-click access to Anthropic's Claude Code | Instant Claude Code sessions on Apify |
| OpenCode | One-click access to open-source OpenCode | Free/open-source AI coding with multiple AI models support |
| OpenClaw | Clears your inbox, sends emails, manages your calendar, checks you in for flights | All from Apify platform |
The AI Sandbox is the core Actor that provides the full execution environment:
The Claude Code and OpenCode Actors are lightweight proxies that metamorph into the AI Sandbox, automatically launching their respective CLI tools in the terminal.
Once running, connect via:
https://<RUN-ID>.runs.apify.net/mcpPOST /exec, GET/PUT/DELETE /fs/*https://<RUN-ID>.runs.apify.net/shell/├── sandbox/ # Core AI Sandbox Actor
│ ├── src/ # Express server, MCP, file operations
│ ├── artifacts/ # Configuration files (AGENTS.md, opencode.json)
│ └── README.md # Full API documentation
│
├── claude-code/ # Claude Code proxy Actor
│ ├── src/main.ts # Metamorph into sandbox
│ └── README.md # Claude Code specific docs
│
├── opencode/ # OpenCode proxy Actor
│ ├── src/main.ts # Metamorph into sandbox
│ └── README.md # OpenCode specific docs
│
└── openclaw/ # OpenClaw proxy Actor
├── src/main.ts # Metamorph into sandbox with OpenClaw init
└── README.md # OpenClaw specific docs
# Build all Actors
cd sandbox && npm install && npm run build
cd ../claude-code && npm install && npm run build
cd ../opencode && npm install && npm run build
cd ../openclaw && npm install && npm run build
# Deploy using Apify CLI
cd sandbox && apify push
cd ../claude-code && apify push
cd ../opencode && apify push
cd ../openclaw && apify push
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots
MCP server integration for DaVinci Resolve Studio
A Jetbrains IDE IntelliJ plugin aimed to provide coding agents the ability to leverage intelliJ's indexing of the codeba