Skip to content

Commit f3a132a

Browse files
committed
release v0.6.1 at 2026-06-28 17:17:03 UTC
1 parent 2493534 commit f3a132a

35 files changed

Lines changed: 2684 additions & 1987 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.6.0",
3+
"version": "0.6.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",

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Turn your favorite coding assistant into an expert at building and deploying age
2222
**Agents CLI in Agent Platform** (`agents-cli`) gives your coding agent the skills and commands to build, scale, govern, and optimize enterprise-grade agents — so you don't have to learn every CLI and service yourself.
2323

2424
**Works seamlessly with:**
25-
[Gemini CLI](https://github.com/google-gemini/gemini-cli)    [Claude Code](https://docs.anthropic.com/en/docs/claude-code)    [Codex](https://github.com/openai/codex)    [Antigravity](https://antigravity.google/)    *and any other coding agent.*
25+
[Antigravity CLI](https://antigravity.google/)    [Claude Code](https://docs.anthropic.com/en/docs/claude-code)    [Codex](https://github.com/openai/codex)    *and any other coding agent.*
2626

2727
## Get Started
2828

@@ -45,7 +45,7 @@ npx skills add google/agents-cli
4545

4646
### 2. Open your coding agent
4747

48-
Launch [Gemini CLI](https://github.com/google-gemini/gemini-cli), [Claude Code](https://docs.anthropic.com/en/docs/claude-code), [Codex](https://github.com/openai/codex), or any coding agent you prefer.
48+
Launch [Antigravity CLI](https://antigravity.google/), [Claude Code](https://docs.anthropic.com/en/docs/claude-code), [Codex](https://github.com/openai/codex), or any coding agent you prefer.
4949

5050
### 3. Build your first agent
5151

@@ -137,7 +137,7 @@ The Google Cloud agent stack that `agents-cli` builds on:
137137

138138
## FAQ
139139

140-
**Is this an alternative to Gemini CLI, Claude Code, or Codex?**<br>
140+
**Is this an alternative to Antigravity CLI, Claude Code, or Codex?**<br>
141141
No. **`agents-cli` is a tool *for* coding agents, not a coding agent itself.** It provides the CLI commands and skills that make your coding agent better at building, evaluating, and deploying ADK agents on Google Cloud.
142142

143143
**How is this different from just using `adk` directly?**<br>

RELEASE_NOTES.md

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

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

5+
## [0.6.1] - 2026-06-28
6+
- `publish gemini-enterprise` now registers Agent Runtime deployments via ADK by default, which Gemini Enterprise invokes natively and reliably. A2A registration remains the default for Cloud Run and GKE; requesting A2A on Agent Runtime now warns and recommends ADK. Re-publishing an A2A agent no longer creates duplicate registrations, and A2A agent cards now carry the correct public URL on the first deploy.
7+
- `agents-cli update` now exits non-zero and clearly reports when a skill fails to update, instead of always printing a misleading green "Skills updated." banner. Also fixes failure messages rendering in the wrong color on Windows PowerShell.
8+
- Refreshed the generated project `uv.lock` files for all templated agents, updating bundled `google-adk` from 2.2.0 to 2.3.0.
9+
510
## [0.6.0] - 2026-06-23
611
- Agent Runtime deploys now serve ADK web, A2A, and the reasoning engine from a single unified container app.
712
- Cloud Trace spans no longer capture LLM prompts and responses, keeping sensitive content out of traces.

docs/hooks/skills_reference.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
HEADER = """# Skills Reference
2424
25-
Skills are context files installed to coding agents (Gemini CLI, Claude Code, GitHub Copilot) via `agents-cli setup`. They provide domain-specific guidance for working with generated agent projects.
25+
Skills are context files installed to coding agents (Antigravity CLI, Claude Code, GitHub Copilot) via `agents-cli setup`. They provide domain-specific guidance for working with generated agent projects.
2626
2727
```bash
2828
agents-cli setup # Install all skills
@@ -58,11 +58,9 @@ def _clean_description(desc: str) -> str:
5858
# Remove leading preamble up to the actual description.
5959
# Descriptions follow the pattern: routing text. Actual description.
6060
# Split on first sentence that starts with a capital and isn't the preamble.
61-
match = re.search(
62-
r"(?:Covers |Always active|It provides |Provides )", desc
63-
)
61+
match = re.search(r"(?:Covers |Always active|It provides |Provides )", desc)
6462
if match:
65-
desc = desc[match.start():]
63+
desc = desc[match.start() :]
6664
# Remove trailing ">" from YAML folded strings
6765
desc = desc.strip().rstrip(">").strip()
6866
# Capitalize first letter

docs/src/guide/authentication.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,13 @@ agents-cli sits on top of multiple tools, each with its own authentication needs
66

77
## Level 1: Coding Agent Auth
88

9-
Your coding agent (Gemini CLI, Claude Code, Codex, etc.) needs its own authentication to function. **agents-cli does not control this** — each agent handles its own credentials.
9+
Your coding agent (Antigravity CLI, Claude Code, Codex, etc.) needs its own authentication to function. **agents-cli does not control this** — each agent handles its own credentials.
1010

1111
| Coding Agent | How to authenticate |
1212
|-------------|---------------------|
13-
| [Gemini CLI](https://github.com/google-gemini/gemini-cli) | Google account — runs `gcloud auth login` on first use |
13+
| [Antigravity CLI](https://antigravity.google/) | Google account |
1414
| [Claude Code](https://docs.anthropic.com/en/docs/claude-code) | Anthropic account or API key |
1515
| [Codex](https://github.com/openai/codex) | OpenAI API key |
16-
| [Antigravity](https://antigravity.google/) | Google account |
1716

1817
Refer to your coding agent's documentation for setup instructions. This is independent of agents-cli.
1918

docs/src/guide/getting-started.md

Lines changed: 6 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
It works two ways:
66

7-
1. **With a coding agent** — install skills into Gemini CLI, Claude Code, Codex, or others. Your coding agent uses them to make the right decisions at every step.
7+
1. **With a coding agent** — install skills into Antigravity CLI, Claude Code, Codex, or others. Your coding agent uses them to make the right decisions at every step.
88
2. **Without a coding agent** — run CLI commands directly from your terminal. Every command works standalone.
99

1010
Agents CLI bundles **7 skills** that give your coding agent deep knowledge across the full ADK lifecycle:
@@ -64,29 +64,23 @@ See [Authentication](authentication.md) for full details.
6464

6565
## Start Building with Your Coding Agent
6666

67-
=== "Gemini CLI"
67+
=== "Antigravity CLI"
6868

69-
1. **Open Gemini CLI**
69+
1. **Open Antigravity CLI**
7070

71-
```bash
72-
gemini
73-
```
71+
Launch Antigravity from your IDE or terminal.
7472

7573
2. **Verify skills are installed**
7674

77-
```
78-
/skills
79-
```
80-
81-
You should see `google-agents-cli-workflow` and other Agents CLI skills listed.
75+
Check that Agents CLI skills are available in your environment.
8276

8377
3. **Ask it to build something**
8478

8579
```
8680
Build a support agent that answers questions from our docs
8781
```
8882

89-
Gemini will use the installed skills to scaffold, build, and evaluate your agent.
83+
Antigravity will use the installed skills to scaffold, build, and evaluate your agent.
9084

9185
=== "Claude Code"
9286

@@ -132,24 +126,6 @@ See [Authentication](authentication.md) for full details.
132126

133127
Codex will use the installed skills to scaffold, build, and evaluate your agent.
134128

135-
=== "Antigravity"
136-
137-
1. **Open Antigravity**
138-
139-
Launch Antigravity from your IDE or terminal.
140-
141-
2. **Verify skills are installed**
142-
143-
Check that Agents CLI skills are available in your environment.
144-
145-
3. **Ask it to build something**
146-
147-
```
148-
Build a support agent that answers questions from our docs
149-
```
150-
151-
Antigravity will use the installed skills to scaffold, build, and evaluate your agent.
152-
153129
=== "Any Other Agent"
154130

155131
Agents CLI works with any coding agent that supports [skills](https://agentskills.io/what-are-skills).

docs/src/guide/project-structure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ Default evaluation cases. Each case defines a user message and the session conte
124124

125125
### `GEMINI.md`
126126

127-
A guidance file that coding agents (Gemini CLI, Claude Code, etc.) read automatically. It contains project-specific instructions — ADK patterns, coding conventions, and workflow guidance. You don't need to read or edit this file unless you want to customize how coding agents work with your project.
127+
A guidance file that coding agents (Antigravity CLI, Claude Code, etc.) read automatically. It contains project-specific instructions — ADK patterns, coding conventions, and workflow guidance. You don't need to read or edit this file unless you want to customize how coding agents work with your project.
128128

129129
### `.env`
130130

docs/src/guide/quickstart-tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The only command you run yourself. Everything else goes through your coding agen
2020
uvx google-agents-cli setup
2121
```
2222

23-
Then open your coding agent — [Gemini CLI](https://github.com/google-gemini/gemini-cli), [Claude Code](https://docs.anthropic.com/en/docs/claude-code), [Codex](https://github.com/openai/codex), or any other.
23+
Then open your coding agent — [Antigravity CLI](https://antigravity.google/), [Claude Code](https://docs.anthropic.com/en/docs/claude-code), [Codex](https://github.com/openai/codex), or any other.
2424

2525
---
2626

docs/src/index.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,9 @@ hide:
2323
<div class="works-with">
2424
<p class="works-with-text">Works with your coding agent</p>
2525
<div class="works-with-logos">
26-
<a href="https://github.com/google-gemini/gemini-cli" title="Gemini CLI" target="_blank" rel="noopener noreferrer"><img src="assets/logos/gemini.png" alt="Gemini CLI"></a>
26+
<a href="https://antigravity.google/" title="Antigravity CLI" target="_blank" rel="noopener noreferrer"><img src="assets/logos/antigravity.png" alt="Antigravity CLI"></a>
2727
<a href="https://docs.anthropic.com/en/docs/claude-code" title="Claude Code" target="_blank" rel="noopener noreferrer"><img src="assets/logos/claude.png" alt="Claude Code"></a>
2828
<a href="https://github.com/openai/codex" title="Codex" target="_blank" rel="noopener noreferrer"><img src="assets/logos/openai.svg" alt="Codex"></a>
29-
<a href="https://antigravity.google/" title="Antigravity" target="_blank" rel="noopener noreferrer"><img src="assets/logos/antigravity.png" alt="Antigravity"></a>
3029
<span class="works-with-more">& more</span>
3130
</div>
3231
</div>

docs/src/reference/skills.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Skills Reference
22

3-
Skills are context files installed to coding agents (Gemini CLI, Claude Code, GitHub Copilot) via `agents-cli setup`. They provide domain-specific guidance for working with generated agent projects.
3+
Skills are context files installed to coding agents (Antigravity CLI, Claude Code, GitHub Copilot) via `agents-cli setup`. They provide domain-specific guidance for working with generated agent projects.
44

55
```bash
66
agents-cli setup # Install all skills

0 commit comments

Comments
 (0)