Google Open-Sources AX, a Kubernetes-Native Agent Orchestrator
In this article
Google released AX on September 22, 2026 — hosted at agentexecutor.io and on GitHub as google/ax — under the Apache 2.0 license. It is a declarative orchestration runtime built on top of Agent Substrate, a purpose-built execution layer co-developed by teams across Google and Google DeepMind. AX addresses an infrastructure gap that container schedulers like Kubernetes were never designed to close: managing stateful, long-running autonomous agents whose compute demand is bursty rather than continuous. For teams already wrestling with production AI failing on architecture rather than model intelligence, AX is a concrete systems primitive rather than another framework abstraction.
The core problem is economic as much as technical. Autonomous agents alternate between compute-intensive phases — reasoning, tool execution, local code evaluation — and extended idle periods waiting on inference providers, external APIs, or human-in-the-loop checkpoints. Keeping dedicated sandboxes live through idle windows burns compute for nothing; cold-starting fresh containers on each wake-up adds latency that degrades interactive agent loops. Neither profile fits the stateless request-response model that microservice schedulers were designed for.
Agent Substrate and the actor multiplexing model
AX runs each agent session as an isolated actor sandbox inside Agent Substrate. Each sandbox operates within strict CPU and memory resource boundaries. When an agent enters an idle state, Agent Substrate checkpoints its execution and suspends it; AX is designed to resume suspended actors in sub-second intervals with zero cold-start delay, multiplexing dozens of concurrent tasks onto shared host workers. Idle time therefore costs no dedicated compute, and resumption latency does not accumulate across the human-in-the-loop delays that define real agentic workloads.
Security isolation relies on gVisor-backed sandboxes, which contain blast radius when a task behaves unexpectedly — a design choice practitioners have flagged as one of AX's most defensible properties relative to higher-level orchestrators.
The four declarative primitives
The AX control plane exposes its interface through four Kubernetes-style resource kinds defined under the ax.io/v1alpha1 API group:
| Primitive | Responsibility | Key capabilities |
|---|---|---|
| Task | Execution lifecycle management | Defines sandbox resource constraints and references supporting infrastructure |
| Workspace | Pre-execution environment assembly | Declarative mounting of Git repos, MCP server configuration, skill bundle installation, natural-language goal bootstrap via an initialisation agent |
| Gateway | Outbound network security | Restricts sandboxed agents to explicit hostname and port allowlists; handles credential injection into outbound requests |
| Model | LLM provider configuration | Unified control point for provider parameters, runtime configuration, and Kubernetes-stored secrets |
The CLI, written in Go, drives all operator interactions: ax apply registers manifests, ax watch streams task phase and condition changes in real time, ax ssh opens interactive sandbox environments for debugging, and ax suspend / ax resume give operators manual control over task execution state. Deployment targets the ax-system Kubernetes namespace using ko and Redis, integrating with existing cluster contexts via kubectx. The project is also explicitly positioned for research environments requiring sandboxed trajectories, reinforcement learning loops, and agent benchmark evaluations at scale.
Operator reception and early friction
Community reaction on Hacker News split along predictable lines. Infrastructure engineers praised AX for directly addressing the cloud cost problem of idle agents blocked on model APIs or human input. Developers critical of the "ergonomic workflows" claim pointed to the operational overhead of maintaining Kubernetes clusters, container registries, and custom CRDs deployed via ko. Reddit discussion reinforced a distinction that matters for adoption: AX is a foundational execution runtime, not a high-level application orchestrator in the vein of LangGraph or CrewAI. Early production testers surfaced specific roughness — egress proxy dropped connections and rudimentary secrets management — that will need resolution before AX is viable outside enterprises with dedicated platform engineering capacity.
AI Mastery analysis
AX is best understood as the infrastructure layer that agent control architectures have lacked a shared contract for. By codifying suspension, resumption, network egress policy, and environment bootstrapping as first-class API objects rather than application-level conventions, Google is making a bet that agent infrastructure will converge on a scheduling abstraction the way container workloads converged on Kubernetes — and that capturing the API group (ax.io/v1alpha1) early creates durable ecosystem leverage.
The tradeoffs are real. The Kubernetes dependency means AX inherits the full operational surface of a cluster: certificate rotation, etcd availability, node pool management, and the ko-based build toolchain. For an enterprise already running Kubernetes for model serving, adding AX is a namespace and a few CRDs. For a team that isn't, the adoption cost is a complete infrastructure stack. The gVisor sandbox isolation solves blast-radius containment but adds kernel-emulation overhead that will matter for agents doing heavy local code evaluation. Secrets management described as "rudimentary" in early production reports is a genuine gap — Gateway handles egress credential injection, but that does not cover secrets scoping, rotation policy, or audit trails, all of which become mandatory at enterprise scale. As infrastructure governance increasingly determines safe agent deployment outcomes, that gap must close before regulated industries can adopt AX seriously.
Infrastructure rewrites, not model weights, are increasingly where 2026 AI gains are being made, and a Kubernetes-native scheduling primitive for stateful actors is a meaningful piece of that stack. Whether AX becomes the Kubernetes of agents or a Google-internal tool with an open-source veneer will depend on whether the community can lower the operator floor enough to reach the teams that need it most.
Primary source
Google Open-Sources AX: A Kubernetes-Style Orchestrator for Autonomous AI Agents — InfoQ
Frequently asked questions
What license is Google AX released under?
AX is released under the Apache 2.0 license. It is hosted at agentexecutor.io and on GitHub as google/ax.
How fast does AX resume a suspended agent task?
AX is designed to resume suspended actors in sub-second intervals with zero cold-start delay. This is achieved by checkpointing agent execution state when the agent enters an idle period, then multiplexing dozens of tasks onto shared host workers.
What are the four declarative primitives in the AX API?
AX exposes four Kubernetes-style resource kinds under the ax.io/v1alpha1 API group: Task, Workspace, Gateway, and Model. Each targets a distinct layer of the agent lifecycle, from sandbox resource constraints to outbound network security policy and LLM provider configuration.
Does AX require Kubernetes to run?
Yes. The AX control plane deploys into a Kubernetes cluster, specifically the ax-system namespace, using ko and Redis, and integrates with existing cluster contexts via kubectx. Teams without an existing Kubernetes cluster must stand up a full cluster before adopting AX.
How does AX differ from LangGraph or CrewAI?
AX is a foundational execution runtime, not a high-level application orchestrator. Where LangGraph and CrewAI operate at the application layer, AX provides scheduling primitives — gVisor-backed sandbox isolation, sub-second suspension and resumption, and declarative egress policy — that sit below application-level orchestration.
Related Reading
OpenClaw 2026.9.5: Atomic Updates Keep Gateway Live on Failed Upgrade
OpenClaw 2026.9.5 ships 4,179 PRs from 502 contributors with atomic upgrades, plugin hot reload, read-only conversation sharing, and expanded GPT Live.
Gemini 3.8 Flash: Same Weights, Two Safety Envelopes, 47.2% on CWE-Bench
Google DeepMind ships Gemini 3.8 Flash and Flash Cyber on one shared core — split by safety mitigations, not architecture.
OpenClaw 2.0: 933 Contributors, Shared Cloud Sessions, One Drop
OpenClaw 2.0 (v2026.8.1) ships 50% of all project PRs in one release, adding shared cloud sessions and a rebuilt browser interface.