mcpbeat Sign in

Google Agents CLI Onboarding Agent Skill

>- Onboarding entrypoint for agents-cli in Agent Platform. It should be used when the user wants to "create a new agent", "develop an agent", "build an agent using ADK", "run the agent locally", "debug agent code", "test an agent", "evaluate an agent", "deploy an agent", "publish an agent", "monitor an agent", or needs the ADK (Agent Development Kit) development lifecycle.

1k tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
15506
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/google/skills --skill google-agents-cli-onboarding

The instruction itself

7 sections, as written by the author

Google Agents CLI Onboarding

> [!TIP] One-Time Setup: To install the CLI and enable all 7 specialized

> development skills in your coding agent, run the setup command:

>

> `bash

> uvx google-agents-cli setup

> `

>

> Alternatively, to install only the expert skills and let the agent handle

> execution:

>

> `bash

> npx skills add google/agents-cli

> `

Overview

This skill serves as the entrypoint for agents-cli — Google's toolkit for

building, evaluating, and deploying AI agents on the Gemini Enterprise Agent

Platform.

Use this skill to perform the initial setup and identify the correct specialized

workflows for your task.

The Agent Development Lifecycle

After running the setup, the following specialized skills become available and

will activate automatically based on your requests. Use this table to identify

which skill to load for your current phase:

| Phase | Specialized Skill | Purpose / When to Load |

| :--- | :--- | :--- |

| 0 — Understand | google-agents-cli-workflow | Clarify intent. Define the agent spec in .agents-cli-spec.md before coding. |

| 1 — Study | google-agents-cli-workflow | Leverage samples. Study existing agent samples (e.g., ambient-expense) before scaffolding. |

| 2 — Scaffold | google-agents-cli-scaffold | Create/Enhance. Initialize the project structure, CI/CD, and infrastructure templates. |

| 3 — Build | google-agents-cli-adk-code | Implement. Write agent logic, tools, callbacks, and manage state using ADK APIs. |

| 4 — Evaluate | google-agents-cli-eval | Validate Quality. Run systematic evaluations (LLM-as-judge). |

| 5 — Deploy | google-agents-cli-deploy | Go Production. Deploy to Agent Runtime (Vertex AI), Cloud Run, or GKE. |

| 6 — Publish | google-agents-cli-publish | Register. Make your agent available as a tool in Gemini Enterprise. |

| 7 — Observe | google-agents-cli-observability | Monitor. Set up Cloud Trace, prompt-response logging, and BigQuery analytics. |

Key CLI Commands

Below are the primary commands you will use throughout the development

lifecycle:

| Command | Description |

| :--- | :--- |

| agents-cli setup | Install the CLI and configure skills in your coding agent. |

| agents-cli scaffold <name> | Create a new agent project from a template. |

| agents-cli eval run | Run the agent and grade the traces in a single step (generate + grade). |

| agents-cli deploy | Deploy your agent to Google Cloud (Agent Runtime, Cloud Run, GKE). |

| agents-cli publish gemini-enterprise | Register your deployed agent with Gemini Enterprise. |

*For the full list of available commands and global options, run `agents-cli

--help`.*

Next Steps

Follow this sequence to initiate the development workflow:

  • Execute Setup: Run the uvx or npx command in the [!TIP] box above

to install the CLI and enable the specialized skills in your environment.

  • Verify Installation: Run agents-cli info to confirm the installation

and view the active project configuration.

  • Initiate Phase 0: Ask the user for their core requirements (agent

purpose, external tools, deployment target) and document them in

.agents-cli-spec.md before writing any code.

Reporting Issues

Report bugs or improvements at Google Agents CLI Issues.

Other skills for the same job

different authors, same section of the catalogue
MCP Builder
by anthropics
vendor ×13

Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).

30k tokens scripts
Changelog Generator
by frostant
×9

Automatically creates user-facing changelogs from git commits by analyzing commit history, categorizing changes, and transforming technical commits into clear, customer-friendly release notes. Turns hours of manual changelog writing into minutes of automated generation.

774 tokens
Finishing A Development Branch
by ZhanlinCui
×7

Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup

1k tokens
MCP Builder
by JayZeeDesign
×7

Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).

37k tokens scripts
Vercel React Native Skills
by vercel-labs
vendor ×6

React Native and Expo best practices for building performant mobile apps. Use when building React Native components, optimizing list performance, implementing animations, or working with native modules. Triggers on tasks involving React Native, Expo, mobile performance, or native platform APIs.

39k tokens
Vercel React Best Practices
by ratacat
×5

React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.

34k tokens
Next Best Practices
by vercel-labs
vendor ×4

Next.js best practices - file conventions, RSC boundaries, data patterns, async APIs, metadata, error handling, route handlers, image/font optimization, bundling

20k tokens
Using Git Worktrees
by ZhanlinCui
×4

Use when starting feature work that needs isolation from current workspace or before executing implementation plans - creates isolated git worktrees with smart directory selection and safety verification

1k tokens

How to use it

Copy the folder

Take google/google-agents-cli-onboarding from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.

Install what it needs

The instructions reference npx, uvx. Without those the skill loads but fails at the first command.