You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+25-2Lines changed: 25 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ agents that you configure declaratively without writing or deploying any runtime
13
13
14
14
-**One-command super agent** — `ar super-agent run` creates a hosted agent and drops you into a chat REPL in seconds.
15
15
-**Declarative deployment** — Kubernetes-style YAML (`ar sa apply -f superagent.yaml`) for reproducible, version-controlled agents.
16
-
-**Runtime declarative deploy** — `ar runtime apply -f runtime.yaml`builds an Agent Runtime from a container image and waits for it to reach `READY`.
16
+
-**Runtime declarative deploy** — `ar runtime apply -f runtime.yaml`deploys an Agent Runtime from an image, or invokes a cloud build first when the YAML defines `cloudBuild`.
17
17
-**Seven resource groups** — `config`, `model`, `sandbox`, `tool`, `skill`, `super-agent`, `runtime`, all following the same `ar <group> <action>` pattern.
18
18
-**Multi-profile config** — store multiple sets of credentials in `~/.agentrun/config.json` and switch with `--profile`.
19
19
-**Multiple output formats** — `json` (default), `table`, `yaml`, and `quiet` for shell piping.
@@ -191,6 +191,29 @@ EOF
191
191
ar runtime apply -f runtime.yaml
192
192
```
193
193
194
+
To cloud-build the image before deploy, add `cloudBuild`. The target image is
195
+
the same `spec.container.image`; docker-image-builder skips existing tags by
0 commit comments