Skip to content

Commit 4ee76b9

Browse files
committed
release v0.1.1 at 2026-04-22 19:51:24 UTC
1 parent 20518ba commit 4ee76b9

10 files changed

Lines changed: 152 additions & 12 deletions

File tree

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
# Copyright 2026 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
name: 'Bug Report'
16+
description: 'Report a bug to help us improve Agents CLI'
17+
labels: ['status/need-triage', 'type/bug']
18+
body:
19+
- type: 'markdown'
20+
attributes:
21+
value: |-
22+
> [!IMPORTANT]
23+
> Thanks for taking the time to fill out this bug report!
24+
>
25+
> Please search **[existing issues](https://github.com/google/agents-cli/issues)** to see if an issue already exists for the bug you encountered.
26+
27+
- type: 'textarea'
28+
id: 'problem'
29+
attributes:
30+
label: 'What happened?'
31+
description: 'A clear and concise description of what the bug is.'
32+
validations:
33+
required: true
34+
35+
- type: 'textarea'
36+
id: 'repro'
37+
attributes:
38+
label: 'Steps to Reproduce'
39+
description: 'Please provide the exact steps to reproduce the behavior.'
40+
placeholder: |-
41+
1. Run `agents-cli create my-agent`
42+
2. Modify `...`
43+
3. Run `agents-cli deploy`
44+
4. See error `...`
45+
validations:
46+
required: true
47+
48+
- type: 'textarea'
49+
id: 'expected'
50+
attributes:
51+
label: 'What did you expect to happen?'
52+
validations:
53+
required: true
54+
55+
- type: 'textarea'
56+
id: 'info'
57+
attributes:
58+
label: 'Client information'
59+
description: 'Please paste the full text from `agents-cli info`. Also include which platform (macOS, Windows, Linux).'
60+
value: |-
61+
<details>
62+
<summary>Client Information</summary>
63+
64+
Run `agents-cli info` to output debugging information about your client.
65+
66+
</details>
67+
validations:
68+
required: true
69+
70+
- type: 'textarea'
71+
id: 'logs'
72+
attributes:
73+
label: 'Command Output / Logs'
74+
description: 'Paste the full output of the command that failed. If possible, run with `--verbose`.'
75+
validations:
76+
required: false
77+
78+
- type: 'textarea'
79+
id: 'additional-context'
80+
attributes:
81+
label: 'Anything else we need to know?'
82+
description: 'Add any other context about the problem here.'
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# Copyright 2026 Google LLC
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
name: 'Feature Request'
16+
description: 'Suggest an idea for this project'
17+
labels: ['status/need-triage', 'type/feature']
18+
body:
19+
- type: 'markdown'
20+
attributes:
21+
value: |-
22+
> [!IMPORTANT]
23+
> Thanks for taking the time to suggest an enhancement!
24+
>
25+
> Please search **[existing issues](https://github.com/google/agents-cli/issues)** to see if a similar feature has already been requested.
26+
27+
- type: 'textarea'
28+
id: 'feature'
29+
attributes:
30+
label: 'What is your feature suggestion?'
31+
description: 'A clear and concise description of the feature you are requesting.'
32+
validations:
33+
required: true
34+
35+
- type: 'textarea'
36+
id: 'use-case'
37+
attributes:
38+
label: 'What will this enable you to do?'
39+
description: 'Please describe the use case or workflow that this feature will support.'
40+
validations:
41+
required: true
42+
43+
- type: 'textarea'
44+
id: 'additional-context'
45+
attributes:
46+
label: 'Additional context'
47+
description: 'Add any other context or screenshots about the feature request here.'
48+
validations:
49+
required: false

README.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ See the [full tutorial](https://google.github.io/agents-cli/guide/quickstart-tut
6464
| `google-agents-cli-adk-code` | ADK Python API — agents, tools, orchestration, callbacks, state |
6565
| `google-agents-cli-scaffold` | Project scaffolding — `create`, `enhance`, `upgrade` |
6666
| `google-agents-cli-eval` | Evaluation methodology — metrics, evalsets, LLM-as-judge, trajectory scoring |
67-
| `google-agents-cli-deploy` | Deployment — [Agent Runtime](https://cloud.google.com/vertex-ai/generative-ai/docs/agent-runtime/overview), [Cloud Run](https://cloud.google.com/run), [GKE](https://cloud.google.com/kubernetes-engine), CI/CD, secrets |
67+
| `google-agents-cli-deploy` | Deployment — [Agent Runtime](https://docs.cloud.google.com/gemini-enterprise-agent-platform/scale), [Cloud Run](https://cloud.google.com/run), [GKE](https://cloud.google.com/kubernetes-engine), CI/CD, secrets |
6868
| `google-agents-cli-publish` | Gemini Enterprise registration |
6969
| `google-agents-cli-observability` | Observability — Cloud Trace, logging, third-party integrations |
7070

@@ -161,3 +161,12 @@ See the [contributing guide](CONTRIBUTING.md) for details.
161161
## Terms of Service
162162

163163
`agents-cli` leverages Google Cloud APIs. When you deploy agents, you'll be deploying resources in your own Google Cloud project and will be responsible for those resources. Please review the [Google Cloud Service Terms](https://cloud.google.com/terms/service-terms) for details.
164+
165+
## Preview
166+
167+
This feature is subject to the "Pre-GA Offerings Terms" in the General Service
168+
Terms section of the
169+
[Service Specific Terms](https://cloud.google.com/terms/service-terms#1).
170+
Pre-GA features are available "as is" and might have limited support. For more
171+
information, see the
172+
[launch stage descriptions](https://cloud.google.com/products?hl=en#product-launch-stages).

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.1.0
15+
version: 0.1.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.1.0
15+
version: 0.1.1
1616
requires:
1717
bins:
1818
- agents-cli
@@ -103,7 +103,7 @@ agents-cli infra single-project
103103
| `--service-account` | Service account email for the deployed agent | All |
104104
| `--secrets` | Comma-separated `ENV=SECRET` or `ENV=SECRET:VERSION` pairs | Agent Runtime |
105105
| `--update-env-vars` | Comma-separated `KEY=VALUE` environment variables | Agent Runtime, Cloud Run |
106-
| `--agent-identity` | Enable [agent identity](https://cloud.google.com/vertex-ai/generative-ai/docs/agent-engine/agent-identity) (Preview) | Agent Runtime |
106+
| `--agent-identity` | Enable [agent identity](https://docs.cloud.google.com/gemini-enterprise-agent-platform/scale/runtime/agent-identity) (Preview) | Agent Runtime |
107107
| `--memory` | Memory limit (default: `4Gi`) | Cloud Run |
108108
| `--port` | Container port | Cloud Run |
109109
| `--iap` | Enable Identity-Aware Proxy | Cloud Run |
@@ -152,7 +152,7 @@ agents-cli deploy --status
152152

153153
When `--status` detects the operation has completed, it writes `deployment_metadata.json` and prints the same success output as a normal deploy.
154154

155-
For detailed infrastructure configuration (deploy.py flags, AdkApp pattern, Terraform resource, deployment metadata, session/artifact services, CI/CD differences), see `references/agent-runtime.md`. For ADK docs on Agent Runtime deployment, fetch `https://adk.dev/deploy/agent-engine/index.md`.
155+
For detailed infrastructure configuration (deploy.py flags, AdkApp pattern, Terraform resource, deployment metadata, session/artifact services, CI/CD differences), see `references/agent-runtime.md`. For ADK docs on Agent Runtime deployment, fetch `https://adk.dev/deploy/agent-runtime/index.md`.
156156

157157
---
158158

skills/google-agents-cli-eval/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.1.0
16+
version: 0.1.1
1717
requires:
1818
bins:
1919
- 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.1.0
16+
version: 0.1.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.1.0
15+
version: 0.1.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.1.0
15+
version: 0.1.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.1.0
15+
version: 0.1.1
1616
requires:
1717
bins:
1818
- agents-cli
@@ -25,8 +25,8 @@ metadata:
2525
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

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

0 commit comments

Comments
 (0)