Agentic Sandbox + AIWG Ecosystem — Document Catalog

Agentic Sandbox + AIWG Ecosystem — Document Catalog

AIWG — multi-agent AI framework

Cross-repo reference for daemon, webserver, orchestration, control plane, and related documentation spanning both the Agentic Sandbox and AIWG projects.

Agentic Sandbox is a complete standalone platform and also a first-class AIWG compute node. This catalog helps you find documentation for both use cases.


How the Projects Relate

┌──────────────────────────────────────────────────────────────┐
│                     AIWG (aiwg.io)                           │
│                                                              │
│  Operator Layer          Orchestration Layer                 │
│  ─────────────           ────────────────────                │
│  aiwg serve              Mission Control (mc)                │
│  Web dashboard           Ralph / External Ralph              │
│  HITL drawer             Parallel dispatch                   │
│  Telemetry               Agent teams                         │
│       │                         │                            │
│       │  sandbox registration   │  PTY adapter delegation   │
└───────┼─────────────────────────┼────────────────────────────┘
        │                         │
        ▼                         ▼
┌──────────────────────────────────────────────────────────────┐
│            Agentic Sandbox (this repo)                        │
│                                                              │
│  Management Server       Agent VMs          Storage          │
│  ─────────────────       ─────────          ───────          │
│  gRPC :8120              QEMU/KVM           virtiofs          │
│  WebSocket :8121         Docker             agentshare        │
│  HTTP :8122              Loadouts           inbox/global      │
│  HITL detection          Claude Code                         │
│  PTY screen observer     AIWG frameworks                     │
└──────────────────────────────────────────────────────────────┘

Agentic Sandbox Documentation

Architecture & Design

DocumentDescription
docs/ARCHITECTURE.mdFull system architecture — management server, agent client, task orchestration, protocols, security, observability, and AIWG integration architecture (§9)
docs/agentshare.mdvirtiofs shared storage layout — global read-only, per-agent inbox, data flows, libvirt configuration
docs/SESSION_RECONCILIATION.mdSession state machine, checkpoint system, orphan detection and cleanup after server restart

Deployment & Configuration

DocumentDescription
docs/DEPLOYMENT.mdComplete production deployment guide — prerequisites, installation, host configuration, management server setup, AIWG integration configuration
management/README.mdManagement server quick reference — ports, env vars (including `AIWG_SERVE_ENDPOINT`), dev.sh lifecycle, authentication, testing with aiwg serve
docs/LOADOUTS.mdDeclarative VM provisioning manifests — YAML schema, profiles, AIWG framework installation

Operations & Runbooks

DocumentDescription
docs/OPERATIONS.mdDay-to-day operational procedures — server lifecycle, VM management, task management, session management, AIWG serve operations and HITL management
docs/LIFECYCLE.mdVM and task lifecycle state machines, cleanup policies, retention management
docs/vm-lifecycle.mdVM state machine, provisioning and teardown scripts, virsh commands reference
docs/SESSION_RECONCILIATION.mdSession recovery procedures

API & Protocols

DocumentDescription
docs/API.mdComplete HTTP REST API, WebSocket protocol, gRPC service definitions — all three interfaces
docs/task-orchestration-api.mdTask manifest schema, REST API for task submission/monitoring/control, WebSocket events
docs/task-run-lifecycle.mdTask state machine and lifecycle transitions
docs/task-api-quick-reference.mdcurl-ready quick reference for common task operations
docs/task-api-implementation-guide.mdTask API implementation patterns and guidelines
docs/pty-rendering.mdPTY attach surface — v1 corruption recovery (#180), multi-controller architecture, replay buffer, `pty-ws/v1` v2 binding migration

Subsystems

DocumentDescription
docs/container-runtime.mdDocker-backed agent instances — `docker_runtime` API, VM vs container trade-offs, provider image catalog, AIWG bridge integration
docs/crash-loop.mdVM crash-loop detector — rolling-window detection, state machine, auto-rebuild via `provision-vm.sh`, operator unblock
docs/telemetry.mdTelemetry pipeline — agent-side gather, textfile collector hand-off, management-server aggregation, Prometheus exposition, per-tenant labels
docs/transport-audit.mdOperator-facing transport audit — `/api/v1/logs` ring buffer, `/api/v1/events` SSE, admin v2 (`/api/v2/admin/*`) streams

Monitoring & Observability

DocumentDescription
docs/monitoring.mdPrometheus metrics, Grafana dashboards, AlertManager — deployment, metrics schema, SLO tracking
docs/observability/README.mdFull observability system design — metrics, log aggregation, SLIs/SLOs, alert rules, dashboards
docs/observability/ARCHITECTURE_DIAGRAM.mdASCII architecture diagrams, data flow, component inventory, retention policies
docs/observability/QUICK_REFERENCE.mdOperator cheat sheet — PromQL/LogQL queries, troubleshooting, performance baselines
docs/research/agent-activity-observability-spike-707.mdResearch spike — correlated agent/session, process, network, runtime, kernel, and loss-aware activity monitoring architecture
docs/reliability-README.mdReliability patterns and SLO design overview
docs/reliability-quickstart.mdQuick start for reliability setup

Troubleshooting

DocumentDescription
docs/TROUBLESHOOTING.mdComprehensive troubleshooting — management server, VMs, agents, tasks, AIWG serve integration issues

Testing

DocumentDescription
tests/README.mdE2E test suite overview and usage
scripts/chaos/README.mdChaos testing framework — 5 experiments: server kill, storage fill, VM kill, network partition, slow clone

AIWG Documentation

All AIWG documentation is in the jmagly/aiwg repository.

aiwg serve — Operator Dashboard

DocumentDescription
docs/serve-guide.mdPrimary reference. `aiwg serve` web dashboard — terminal sessions, Mission Control UI, sandbox management, HITL drawer. Covers sandbox registration API, WebSocket event types, PTY bridge, AIWG integration, security, and troubleshooting

Daemon — Background Process & Automation

DocumentDescription
docs/daemon-guide.mdComplete daemon guide — platform support tiers (Tier 1 native, Tier 2 PTY adapter), execution modes (local/container/VM), DaemonSupervisor, scheduled tasks, file watching, PTY adapter configuration
docs/addons/daemon/daemon-addon-guide.mdDaemon addon — Concierge front-end, session memory, interaction rules, provider support matrix
docs/addons/daemon/quickstart.mdQuick start — install, initialize, start daemon, access web UI at localhost:7474, submit a task
docs/addons/daemon/configuration-reference.mdFull `.aiwg/daemon.json` reference — core, supervisor, interface, watch, schedule, rules, behaviors
docs/getting-started/daemon-and-automation.mdScenario guide — background tasks, file watching, scheduled tasks, Telegram notifications, autonomous execution
docs/concierge-guide.mdConcierge — the daemon's front-facing interaction layer; intent routing, tone, memory, fallback
docs/behaviors-guide.mdBehaviors — event-driven automation (`BEHAVIOR.md` deployable + YAML runtime); triggers, hooks, scripts

Orchestration — Mission Control & Multi-Agent

DocumentDescription
docs/cli-reference.mdFull CLI reference — all 50+ commands including `aiwg mc` (Mission Control), `aiwg serve`, `aiwg ralph`, agent teams, parallel dispatch, SDLC flows
docs/frameworks/sdlc-complete/orchestrator-architecture.mdCore orchestration pattern — flow templates as orchestration guides, multi-agent review cycles, human approval gates
docs/ralph-guide.mdRalph — iterative agent execution engine; in-session loops, external crash-resilient loops (6-8+ hours), completion criteria, error recovery
docs/task-management-integration.mdTask submission, queue management, and progress tracking integration patterns

Platform Integration

DocumentDescription
docs/integrations/Per-platform quickstarts and MCP sidecar guides — Claude Code, Copilot, Cursor, Warp, Factory, OpenCode, Windsurf, OpenClaw, Hermes
docs/integrations/warp-terminal.mdWarp Terminal integration — native WARP.md, agent/command deployment
docs/addons/agent-persistence/hitl-integration.mdHITL gate integration with the Agent Persistence framework

Reference

DocumentDescription
README.mdMain AIWG README — what AIWG is, six core components, walkthrough, features, platform support matrix
docs/how-it-works.mdAIWG architecture and design patterns overview
CHANGELOG.mdRelease notes — v2026.4.0 covers daemon, Mission Control, aiwg serve, PTY adapter, sandbox integration

Quick Navigation by Task

I want to...Start here
Deploy agentic-sandboxdocs/DEPLOYMENT.md
Connect to aiwg servedocs/DEPLOYMENT.md § AIWG Integration
Understand the architecturedocs/ARCHITECTURE.md
Submit and track tasksdocs/task-orchestration-api.md
Respond to HITL promptsdocs/OPERATIONS.md § HITL
Monitor the fleetdocs/monitoring.md
Troubleshootdocs/TROUBLESHOOTING.md
Provision VMs with loadoutsdocs/LOADOUTS.md
Start aiwg serveaiwg serve guide
Run background daemon tasksaiwg daemon guide
Orchestrate long-running tasksaiwg ralph guide
Parallel multi-agent dispatchaiwg CLI reference (mc section)