Skip to content

Commit 6d9c525

Browse files
committed
release v0.3.1 at 2026-06-08 20:48:10 UTC
1 parent 86d7e3a commit 6d9c525

10 files changed

Lines changed: 24 additions & 13 deletions

File tree

.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "google-agents-cli",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "Scaffold, develop, evaluate, and deploy AI agents with Google ADK. Bundles 7 skills for the agent development lifecycle.",
55
"author": { "name": "Google LLC" },
66
"homepage": "https://github.com/google/agents-cli",

RELEASE_NOTES.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [0.3.1] - 2026-06-04
6+
- `eval generate` now works on ADK 2.x projects that use built-in tools such as `VertexAiSearchTool`. Raised the `google-cloud-aiplatform` floor to 1.156.0, which carries the SDK fix.
7+
- https://github.com/google/agents-cli/issues/27
8+
- Skills installed via `agents-cli setup` are now visible to Antigravity. Global skills are mirrored into the Antigravity skill directories.
9+
- https://github.com/google/agents-cli/issues/26
10+
- `update` now surfaces errors clearly instead of failing silently.
11+
- Agent deploys tolerate a corrupt or malformed `deployment_metadata.json` instead of crashing.
12+
- Deployment timestamps are now timezone-aware.
13+
- A malformed `AGENTS_CLI_EXPERIMENTS` value no longer crashes the CLI.
14+
- `agents-cli install` now runs with `--locked`, so a drifted `uv.lock` fails fast instead of silently resolving new dependency versions.
15+
516
## [0.3.0] - 2026-05-29
617
### Breaking
718
- The eval data format changed from ADK `EvalSet` to Vertex AI `EvaluationDataset`. Existing `tests/eval/evalsets/*.evalset.json` files are no longer read by `agents-cli eval generate` and friends. See [Migrating Eval Datasets](docs/src/reference/eval-dataset-migration.md) for the conversion. `scaffold upgrade` now prints a notice when legacy files are detected.

gemini-extension.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "google-agents-cli",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"description": "Scaffold, develop, evaluate, and deploy AI agents with Google ADK. Bundles 7 skills for the agent development lifecycle."
55
}

skills/google-agents-cli-adk-code/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ description: >
1212
metadata:
1313
author: Google
1414
license: Apache-2.0
15-
version: 0.3.0
15+
version: 0.3.1
1616
requires:
1717
bins:
1818
- agents-cli

skills/google-agents-cli-deploy/SKILL.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ description: >
1212
metadata:
1313
author: Google
1414
license: Apache-2.0
15-
version: 0.3.0
15+
version: 0.3.1
1616
requires:
1717
bins:
1818
- agents-cli
@@ -101,7 +101,7 @@ agents-cli infra single-project
101101
| `--project` | GCP project ID | All |
102102
| `--region` | GCP region | All |
103103
| `--service-account` | Service account email for the deployed agent | All |
104-
| `--secrets` | Comma-separated `ENV=SECRET` or `ENV=SECRET:VERSION` pairs | Agent Runtime |
104+
| `--secrets` | Comma-separated `ENV=SECRET` or `ENV=SECRET:VERSION` pairs | Agent Runtime, Cloud Run |
105105
| `--update-env-vars` | Comma-separated `KEY=VALUE` environment variables | Agent Runtime, Cloud Run |
106106
| `--agent-identity` | Enable [agent identity](https://docs.cloud.google.com/gemini-enterprise-agent-platform/scale/runtime/agent-identity) (Preview) | Agent Runtime |
107107
| `--network-attachment` | Network attachment resource name for [PSC interface](https://docs.cloud.google.com/gemini-enterprise-agent-platform/scale/runtime/private-service-connect-interface) (enables private VPC connectivity) | Agent Runtime |
@@ -221,7 +221,7 @@ echo -n "NEW_API_KEY" | gcloud secrets versions add MY_SECRET_NAME --data-file=-
221221

222222
**Grant access:** For Cloud Run, grant `secretmanager.secretAccessor` to `app_sa`. For Agent Runtime, grant it to the platform-managed SA (`service-PROJECT_NUMBER@gcp-sa-aiplatform-re.iam.gserviceaccount.com`). For GKE, grant `secretmanager.secretAccessor` to `app_sa`. Access secrets via Kubernetes Secrets or directly via the Secret Manager API with Workload Identity.
223223

224-
**Pass secrets at deploy time (Agent Runtime):**
224+
**Pass secrets at deploy time (Agent Runtime, Cloud Run):**
225225
```bash
226226
agents-cli deploy --secrets "API_KEY=my-api-key,DB_PASS=db-password:2"
227227
```

skills/google-agents-cli-eval/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ description: >
1111
metadata:
1212
author: Google
1313
license: Apache-2.0
14-
version: 0.3.0
14+
version: 0.3.1
1515
requires:
1616
bins:
1717
- agents-cli

skills/google-agents-cli-observability/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ description: >
1313
metadata:
1414
author: Google
1515
license: Apache-2.0
16-
version: 0.3.0
16+
version: 0.3.1
1717
requires:
1818
bins:
1919
- agents-cli

skills/google-agents-cli-publish/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ description: >
1212
metadata:
1313
author: Google
1414
license: Apache-2.0
15-
version: 0.3.0
15+
version: 0.3.1
1616
requires:
1717
bins:
1818
- agents-cli

skills/google-agents-cli-scaffold/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ description: >
1212
metadata:
1313
author: Google
1414
license: Apache-2.0
15-
version: 0.3.0
15+
version: 0.3.1
1616
requires:
1717
bins:
1818
- agents-cli

skills/google-agents-cli-workflow/SKILL.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ description: >
1212
metadata:
1313
author: Google
1414
license: Apache-2.0
15-
version: 0.3.0
15+
version: 0.3.1
1616
requires:
1717
bins:
1818
- agents-cli
@@ -26,8 +26,8 @@ metadata:
2626
**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`.
2727

2828

29-
> Requires: google-agents-cli ~= 0.3.0
30-
> If version is behind, run: uv tool install "google-agents-cli~=0.3.0"
29+
> Requires: google-agents-cli ~= 0.3.1
30+
> If version is behind, run: uv tool install "google-agents-cli~=0.3.1"
3131
3232
> Check version: agents-cli info
3333
> [Install uv](https://docs.astral.sh/uv/getting-started/installation/index.md) first if needed.

0 commit comments

Comments
 (0)