agent-substrate/substrate

▲ 649 stars today★ 1,880⑂ 322

Agent Substrate: the core system

About agent-substrate/substrate

agent-substrate/substrate is an open-source project on GitHub, mainly written in Go. Agent Substrate: the core system It currently holds 1,880 stars and 322 forks with 0 open issues, and was last pushed on an unknown date (repository created unknown).

Project Overview

AI Homed tracks it on the Today's Trending board.

GitHub Repository Details

Repository agent-substrate/substrate · default branch - · size 0 KB · watchers 0 · source: GitHub REST API and repository README

README

Agent Substrate

License

NOTE: This is not an officially supported Google product. This project is not eligible for the Google Open Source Software Vulnerability Rewards Program.

What is Agent Substrate?

Agent Substrate is a secure-by-default agent execution runtime engineered to run millions of sandboxes with 10x higher density than standard container runtimes. Purpose-built for the era of autonomous agents, Substrate delivers sub-500ms resume operations at over 500 suspend/resume activations per second with native zero-trust kernel and network isolation. It supports multiple sandbox technologies including microVMs and gVisor, enabling consistent lifecycle operations for all sandbox types.

At its core, Agent Substrate maps a larger set of “actors” (applications such as agents) onto a smaller set of ready “workers”, relying on the fact that agent-like applications tend to be idle most of the time to achieve heavy multiplexing. It provides functionality to manage an actor’s lifecycle (e.g. create/destroy, suspend/resume), to assign actors to workers in real time, and to route incoming traffic to them.

Agent Substrate is intended to be a low-opinion system. The workloads it manages don't have to be literal AI agents, but those are the best example of the kind of applications it is designed for. It is not an SDK for building agents, but rather a system for running them at scale.

Agent Substrate leverages Kubernetes for the infrastructure provisioning and worker lifecycle management (Kubernetes Pods). It builds on top of Kubernetes features like Pods and Pod autoscaling, while Agent Substrate provides agent-specific scheduling and control to achieve lower latency. Using Kubernetes as the underlying system enables consistent infrastructure management across all workloads types that are required for end to end agentic deployments and allows holistic infrastructure optimizations for RL scenarios that span agentic, inference and training cycles.

Demo

Agent Substrate Demo

Watch the Agent Substrate cluster multiplex ~250 stateful actors across just 8 physical pods.

This demo highlights the core developer experience and "Agentic Infrastructure" capabilities of Substrate:

1. Actor Teleport: High-performance suspend and resume of actors onto any available worker in the pool with sub-second activation. 2. State Persistence: Persistent working memory (volatile RAM) and filesystem state preserved perfectly across hibernation cycles via full-state snapshots. 3. Agent Multiplexing: Demonstrates 30x+ oversubscription by "juggling" a large registry of stateful actors onto a small pool of shared physical pods.

To reproduce this demo in your own cluster, please refer to the detailed walkthrough in the Counter Demo.

For more videos and walkthroughs, visit our YouTube channel: agent-substrate.

Framework Agnostic & Compatibility

Agent Substrate is designed to be framework and agent harness agnostic. Because it manages standard OCI containers at the kernel level (via gVisor), it can host agents built on any stack.

Ecosystem & Examples

Status and compatibility

Agent Substrate is currently in early development. It is not ready for production use, and the APIs are almost guaranteed to change. We are not making any guarantees about backward compatibility at this stage, and everything in this project may be changed.

Supported Kubernetes Releases

Currently we aim to support the latest stable release of Kubernetes, and the previous minor release.

Community

For announcements, technical discussions, and community support, please join the ate-dev Google Group.

We host a weekly community meeting every Thursday from 10:00am - 11:00am PST.

We also have channels in the CNCF slack; request an invite here if you don't have access.

Developing

Please see CONTRIBUTING.md for guidelines on contributing to the project. We welcome contributions of all kinds, but the project is VERY young. Our immediate focus is on building out the core system and demos, so we may not be able to review or merge contributions that don't align with those goals in the near term.

Quickstart (Development)

To quickly set up the complete environment:

1. Make sure you have Go, kubectl, and docker installed and configured on your dev machine. We will automatically manage other dependencies via Go, including kind.

2. Run the following steps:

# create cluster and local registry (IPv4; IP_FAMILY=dual|ipv6 overrides)
hack/create-kind-cluster.sh

install ate, PostgreSQL, rustfs

hack/install-ate-kind.sh --deploy-ate-system

install counter demo

hack/install-ate-kind.sh --deploy-demo-counter

install kubectl-ate

go install ./cmd/kubectl-ate

create a counter actor in the demo's atespace (--template names the

actor template, resolved in the actor's atespace)

kubectl ate create actor my-counter-1 -a ate-demo-counter --template counter

port-forward the network router to bind to local port 8000

kubectl port-forward -n ate-system svc/atenet-router 8000:80

3. In a separate terminal, send an HTTP request to increment the counter:

curl -X POST \
   -H "ate-target-actor: ate-demo-counter/my-counter-1" \
   -i http://localhost:8000/

Worker capacity is versioned: the dataplane (the atelet DaemonSet and the worker pods) schedules only on nodes that carry the ate.dev/substrate-version label, and the install stamps it on every node that exists when it runs. A node added later hosts no workers until you label it with the installed version (kubectl label node ate.dev/substrate-version=). kubectl get ds -n ate-system -l app=atelet -L ate.dev/substrate-version prints the installed version, off the atelet DaemonSet the install created.

GKE Quickstart (Development)

1. Create and configure your environment file:

   cp hack/ate-dev-env.sh.example .ate-dev-env.sh

# Edit .ate-dev-env.sh to match your project and preferences, then source it: source .ate-dev-env.sh

2. Enable application-default credentials for gcloud:

   gcloud auth application-default login --project=${PROJECT_ID}
   

3. Provision the required GCP resources (GKE cluster, GCS, and IAM bindings):

   go run ./tools/setup-gcp bootstrap
   

On a fresh project this step also creates the atelet Workload Identity IAM grants that snapshots depend on — see what create iam actually grants to audit them or apply them manually. If you bring your own cluster instead, note the required Kubernetes beta APIs can only be enabled at cluster creation — see the Create Cluster warning.

4. Deploy the Agent Substrate system to your cluster:

   ./hack/install-ate.sh --deploy-ate-system
   

Nodes that GKE adds later (autoscaling, auto-repair, node upgrades) are born with the node pool's labels, so the pool needs ate.dev/substrate-version too; see Node version labels.

5. You can then deploy the sample applications. See demos/counter/README.md or demos/sandbox/README.md for detailed walkthroughs.

   ./hack/install-ate.sh --deploy-demo-counter
   

Custom Setup and Deployment

You can run individual setup steps to create GCP resources as needed. See go run ./tools/setup-gcp --help for available options. For example:

go run ./tools/setup-gcp create cluster
go run ./tools/setup-gcp create bucket

To run the PostgreSQL store backend on Cloud SQL — with IAM database authentication and no passwords — see tools/setup-gcp/cloud-sql.md.

Similarly, you can deploy or cleanup specific Agent Substrate components using the installation script. See ./hack/install-ate.sh --help for all options.

# Re-deploy only ate-apiserver of the ATE system
./hack/install-ate.sh --deploy-ate-apiserver

Delete everything (core system and all demos)

./hack/install-ate.sh --delete-all

Tearing down resources (GCP)

If you need to delete the resources created by the setup script, you can use the provided script hack/teardown.sh. This script will delete resources in the reverse order of creation and handles partial failures gracefully.

./hack/teardown.sh --all

Or run individual teardown steps as needed (see ./hack/teardown.sh for available options).

Tearing down local kind resources

If you need to delete the local kind cluster and its registry (if it was created by hack/create-kind-cluster.sh):

./hack/delete-kind-cluster.sh

Demos

We provide several sample applications demonstrating Agent Substrate's capabilities:

1. Counter Demo: A stateful Go HTTP server demonstrating state preservation across suspends/resumes, and on-demand actor resumption and routing via the Substrate router. 2. Sandbox Demo (Antigravity): A secure, sandboxed execution environment (running Alpine Linux) that allows arbitrary shell execution while preserving filesystem state across sessions. 3. Claude Code Multiplex: Demonstrates oversubscribing physical hardware by multiplexing multiple Claude Code agents onto a limited pool of workers. 4. Multi-Template: Two ActorTemplates running different binaries share one WorkerPool, even though the templates live in different atespaces. 5. Request Parking: An oversubscribed pool where the router holds inbound requests until a worker frees up, instead of returning 503. 6. Autoscaled WorkerPool: Scales a WorkerPool on its assigned-worker count with an HPA fed by prometheus-adapter.

Documentation & Guides

Tour

Commands

will eventually ship in upstream Kubernetes (with different names).

GitHub Stars & Activity

1,880Stars
322Forks
0Open issues
GoLanguage

GitHub Popularity

GitHub stars1,880
Forks322
Open issues0
Primary languageGo
License-
Stars gained today649
Created-
Last pushed-

Trending History

Monthly boardrank #60 · ▲ 649 stars

Related AI Projects

1

ollama / ollama

Go★ 181,102⑂ 17,896▲ 140 stars
2

alibaba / open-code-review

Go★ 29,434⑂ 2,095▲ 2,756 stars
3

Tencent / WeKnora

Go★ 24,589⑂ 3,414▲ 696 stars
4

vxcontrol / pentagi

Go★ 24,524⑂ 3,140▲ 98 stars
5

googleapis / mcp-toolbox

Go★ 16,430⑂ 1,721▲ 8 stars
6

TencentCloud / CubeSandbox

Go★ 12,533⑂ 1,123▲ 259 stars
7

kserve / kserve

Go★ 5,938⑂ 1,676▲ 21 stars
8

aldinokemal / go-whatsapp-web-multidevice

Go★ 4,819⑂ 1,141▲ 26 stars

More AI Rankings