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 and Client Layer: Isolate state per session with SQLite or Durable Objects, stream events over WebSockets, and ship clients for Slack, web, and Chrome extensions. - Multiplayer and Self-Spawning Agents: Attribute commits to the prompting user, support shared sessions, and let agents spawn sub-sessions for parallel work. - Use Case: A platform team wants a background coding agent that opens PRs from Slack prompts. Use this Skill to design the image build pipeline, warm pool strategy, GitHub token flow, and session state model. ## Quick Start Ask the agent to design a hosted background coding agent architecture with sandboxed execution, warm pools, and Slack integration for your repositories.