What problem does it solve? Running coding agents on local machines creates resource contention, inconsistent environments, and single-user constraints. This Skill provides the architecture and patterns for moving agent execution to remote sandboxed environments with fast startup, per-session isolation, and multi-client support. ## Core Features & Use Cases - Sandbox Infrastructure: Pre-build environment images on a 30-minute cadence, maintain warm pools, and use filesystem snapshots to eliminate cold-start latency. - API Layer and Multiplayer: Isolate state per session with SQLite or Durable Objects, stream events over WebSockets, and attribute commits to the prompting user via GitHub tokens. - Client Integrations: Implement Slack bots with repository classification, web interfaces with hosted VS Code, and Chrome extensions that extract DOM and React internals. - Use Case: A platform team wants to ship a background coding agent that opens PRs from Slack prompts. Use this Skill to design the image build pipeline, warm pool strategy, predictive warm-up on keystroke, and user-attributed PR creation flow. ## Quick Start Use the hosted-agents skill to design a sandboxed background coding agent with warm pools and Slack integration for my team.