InfoQOlimpiu Pop3 min readintermediate
Google Open-Sources AX a Kubernetes Style Orchestrator for Autonomous AI Agents
Summary
Google open‑sources AX, a Kubernetes‑style orchestrator for autonomous AI agents that treats each agent as a stateful actor, checkpointing idle sessions and resuming them in sub‑second latency. AX introduces four CRDs (Task, Workspace, Gateway, Model) and a Go CLI, runs on top of the Agent Substrate runtime, and uses gVisor sandboxes with Redis‑backed control plane. The design targets the bursty,…
- AX models agents as isolated actor sandboxes with strict CPU/memory limits, checkpointing on idle to avoid idle compute costs.
- Four declarative primitives (Task, Workspace, Gateway, Model) let users define execution, environment, network policies, and LLM provider configs via Kubernetes‑style CRDs.
- Control plane deployed with ko and Redis; CLI (ax) offers apply, watch, ssh, suspend/resume commands for managing agent lifecycles.
- Uses gVisor for sandbox isolation and supports secret injection, but early users report egress proxy issues and non‑trivial ops overhead.
Autonomous agents spend most of their time waiting on model calls or external tools, leading to massive under‑utilization in traditional container setups. AX’s checkpoint‑resume model and actor‑centric design aim to make large‑scale agent deployments economically viable, a growing need as LLM‑drive…
6/10




