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
The deployment target is set when you create your project:
44
+
45
+
```bash
46
+
agents-cli create my-agent -d cloud_run # or agent_runtime, gke
47
+
```
48
+
49
+
To change the deployment target for an existing project, use `scaffold enhance`:
50
+
51
+
```bash
52
+
agents-cli scaffold enhance -d cloud_run
53
+
```
54
+
55
+
Run `agents-cli scaffold enhance --help` to see all available options.
36
56
37
57
!!! tip
38
58
To enable observability features (prompt-response logging, content logs), run `agents-cli infra single-project` after deploying. Terraform provisions the telemetry resources and updates your service to use them. See the [Observability Guide](observability/index.md) for details.
If you need more advanced Cloud Run deployment features not exposed via `agents-cli` flags, use `--dry-run` (or `-n`) to print the full `gcloud` command. You can then copy it and add additional arguments as needed.
112
+
87
113
### GKE
88
114
115
+
*Selected with `agents-cli create my-agent -d gke` or `deployment_target = "gke"` in `pyproject.toml`.*
116
+
89
117
Deploys to a GKE cluster using Terraform and kubectl:
Copy file name to clipboardExpand all lines: skills/google-agents-cli-deploy/SKILL.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ description: >
12
12
metadata:
13
13
author: Google
14
14
license: Apache-2.0
15
-
version: 0.1.1
15
+
version: 0.1.2
16
16
requires:
17
17
bins:
18
18
- agents-cli
@@ -114,7 +114,9 @@ agents-cli infra single-project
114
114
|`--dry-run` / `-n`| Print what would be executed without running it | All |
115
115
|`--no-confirm-project`| Skip project confirmation prompt | All |
116
116
117
-
Run `agents-cli deploy --help` for the full flag reference. Cloud Run also accepts extra `gcloud` flags after `--` (e.g., `-- --timeout=600`).
117
+
Run `agents-cli deploy --help` for the full flag reference.
118
+
119
+
> **Advanced Cloud Run Deploys:** If you need features not exposed via `agents-cli` flags, use `--dry-run` (or `-n`) to print the full `gcloud` command, copy it, and add additional arguments as needed.
118
120
119
121
> **Project Confirmation:** If the project is resolved automatically (not passed via `--project`), the command will prompt for confirmation in interactive mode. Since agents typically run in non-interactive mode, you MUST pass `--no-confirm-project` to proceed if you are relying on automatic project resolution.
Copy file name to clipboardExpand all lines: skills/google-agents-cli-workflow/SKILL.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ description: >
12
12
metadata:
13
13
author: Google
14
14
license: Apache-2.0
15
-
version: 0.1.1
15
+
version: 0.1.2
16
16
requires:
17
17
bins:
18
18
- agents-cli
@@ -25,8 +25,8 @@ metadata:
25
25
26
26
**agents-cli** is a CLI and skills toolkit for building, evaluating, and deploying agents on Google Cloud using the [Agent Development Kit (ADK)](https://adk.dev/). It works with any coding agent — Gemini CLI, Claude Code, Codex, or others. Install with `uvx google-agents-cli setup`.
27
27
28
-
> Requires: google-agents-cli ~= 0.1.1
29
-
> If version is behind, run: uv tool install "google-agents-cli~=0.1.1"
28
+
> Requires: google-agents-cli ~= 0.1.2
29
+
> If version is behind, run: uv tool install "google-agents-cli~=0.1.2"
30
30
> Check version: agents-cli info
31
31
> [Install uv](https://docs.astral.sh/uv/getting-started/installation/index.md) first if needed.
0 commit comments