One-click install
npx skills add https://github.com/enigmaicon-eng/AI-Enterprise-OS --skill hosted-agents-enigmaicon-eng
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: hosted-agents
Source: https://github.com/enigmaicon-eng/AI-Enterprise-OS/tree/main/examples/agent-skills/skills/hosted-agents
Command: npx skills add https://github.com/enigmaicon-eng/AI-Enterprise-OS --skill hosted-agents-enigmaicon-eng

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

This Skill eliminates slow, unreliable, and locally constrained agent execution by running agent work in pre-warmed remote sandboxes with snapshot-backed continuity.

Core Features & Use Cases

  • Hosted sandboxed execution: Run coding and research agents in isolated remote environments to avoid local resource contention and environment drift.
  • Fast session readiness: Use a warm pool and predictive warm-up (start on keystroke) so the first usable response arrives quickly.
  • Deterministic environment boot + continuity: Pre-build repository images on a schedule and use filesystem snapshots for instant restore across follow-ups.

What you can do with it (example)

Ask an AI to implement a cross-repo change while it spawns sub-sessions for parallel research and PR creation, then seamlessly continue the main work with preserved sandbox state.

Quick Start

Start by asking the AI to create a hosted background coding agent that runs in a sandboxed environment with warm pooling and per-session snapshots.

Frequently Asked Questions about hosted-agents

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run remote sandbox agents with warm pool execution?

Remote sandbox agents run in pre-warmed isolated environments using predictive warm-up triggered on keystroke, delivering fast first response times for background coding workflows. Warm pools maintain ready instances to eliminate cold start latency.

What is filesystem snapshot restore for sandboxed agent sessions?

Filesystem snapshot restore provides instant environment continuity across follow-up sessions by saving the sandbox state. Snapshots capture the exact working directory and system state, enabling deterministic boot and seamless continuation of previous work.

How to build multiplayer-capable agent services with self-spawning sessions?

Multiplayer agent services coordinate API state across Slack and web clients using isolated per-session state and optional self-spawning session primitives. Sub-sessions spawn for parallel research and PR creation while the main session preserves its sandbox state.

Does hosted agent execution support authenticated GitHub PR flows with git identity attribution?

Hosted agent execution supports authenticated GitHub App auth flows with explicit git identity attribution for each session. This ensures every automated commit and PR creation maps to the correct authenticated user across coordinated multiplayer workflows.

Can I use pre-built repository images to reduce sandbox boot latency?

Pre-built repository images are scheduled to build automatically and combine with warm pool allocation to reduce perceived latency. This approach ensures sandboxed environments boot deterministically with all dependencies ready before agent execution begins.

What are the limitations of warm-start and sync-write safety controls in sandbox execution?

Warm-start and sync-write safety controls require isolated per-session state to prevent race conditions during concurrent access. Streaming updates must coordinate with these controls to maintain consistency when multiple agents modify shared API state simultaneously.