GoogleAgentsSKILL.mdVerified source

Agent Skill

Google Agents CLI onboarding

Install and use the Agents CLI across local development, testing, evaluation, deployment, and monitoring.

agents-cliadkonboarding

Skill specification

Declared by Google in the package front matter. Trigger conditions are what the coding agent matches on before it loads the skill.

Google Agents CLI onboarding SKILL.md front matter fields
Skill namegoogle-agents-cli-onboarding
Trigger conditionsOnboarding 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.
Upstream categoryDevOps

Install google-agents-cli-onboarding

Agent Skills are a shared file format, but each client discovers them from a different directory. Copy the command for your agent, then start a new session so the skill is picked up.

Claude Code

.claude/skills/google-agents-cli-onboarding/SKILL.md

Project skills are committed with the repo. Use the user directory for a personal install across every project.

Project install

mkdir -p .claude/skills/google-agents-cli-onboarding && curl -fsSL 'https://raw.githubusercontent.com/google/skills/main/skills/cloud/google-agents-cli-onboarding/SKILL.md' -o .claude/skills/google-agents-cli-onboarding/SKILL.md

Personal install

mkdir -p ~/.claude/skills/google-agents-cli-onboarding && curl -fsSL 'https://raw.githubusercontent.com/google/skills/main/skills/cloud/google-agents-cli-onboarding/SKILL.md' -o ~/.claude/skills/google-agents-cli-onboarding/SKILL.md

Codex

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

Codex reads `.agents/skills/` as its primary location, which is also the cross-platform default other clients honour.

Project install

mkdir -p .agents/skills/google-agents-cli-onboarding && curl -fsSL 'https://raw.githubusercontent.com/google/skills/main/skills/cloud/google-agents-cli-onboarding/SKILL.md' -o .agents/skills/google-agents-cli-onboarding/SKILL.md

Personal install

mkdir -p ~/.agents/skills/google-agents-cli-onboarding && curl -fsSL 'https://raw.githubusercontent.com/google/skills/main/skills/cloud/google-agents-cli-onboarding/SKILL.md' -o ~/.agents/skills/google-agents-cli-onboarding/SKILL.md

Cursor

.cursor/skills/google-agents-cli-onboarding/SKILL.md

Cursor also loads `.agents/skills/`, `.claude/skills/`, and `.codex/skills/`, so one committed copy can serve several clients.

Project install

mkdir -p .cursor/skills/google-agents-cli-onboarding && curl -fsSL 'https://raw.githubusercontent.com/google/skills/main/skills/cloud/google-agents-cli-onboarding/SKILL.md' -o .cursor/skills/google-agents-cli-onboarding/SKILL.md

Personal install

mkdir -p ~/.cursor/skills/google-agents-cli-onboarding && curl -fsSL 'https://raw.githubusercontent.com/google/skills/main/skills/cloud/google-agents-cli-onboarding/SKILL.md' -o ~/.cursor/skills/google-agents-cli-onboarding/SKILL.md

Gemini CLI

.gemini/skills/google-agents-cli-onboarding/SKILL.md

Gemini CLI reads `.agents/skills/` first when both directories exist.

Project install

mkdir -p .gemini/skills/google-agents-cli-onboarding && curl -fsSL 'https://raw.githubusercontent.com/google/skills/main/skills/cloud/google-agents-cli-onboarding/SKILL.md' -o .gemini/skills/google-agents-cli-onboarding/SKILL.md

Personal install

mkdir -p ~/.gemini/skills/google-agents-cli-onboarding && curl -fsSL 'https://raw.githubusercontent.com/google/skills/main/skills/cloud/google-agents-cli-onboarding/SKILL.md' -o ~/.gemini/skills/google-agents-cli-onboarding/SKILL.md

GitHub Copilot

.github/skills/google-agents-cli-onboarding/SKILL.md

Copilot in VS Code discovers repository skills from `.github/skills/`.

Project install

mkdir -p .github/skills/google-agents-cli-onboarding && curl -fsSL 'https://raw.githubusercontent.com/google/skills/main/skills/cloud/google-agents-cli-onboarding/SKILL.md' -o .github/skills/google-agents-cli-onboarding/SKILL.md

Personal install

mkdir -p ~/.copilot/skills/google-agents-cli-onboarding && curl -fsSL 'https://raw.githubusercontent.com/google/skills/main/skills/cloud/google-agents-cli-onboarding/SKILL.md' -o ~/.copilot/skills/google-agents-cli-onboarding/SKILL.md

Published by Google under Apache-2.0. Rendered from the package in github.com/google/skills/tree/main/skills/cloud/google-agents-cli-onboarding.

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:

PhaseSpecialized SkillPurpose / When to Load
0 — Understandgoogle-agents-cli-workflowClarify intent. Define the agent spec in .agents-cli-spec.md before coding.
1 — Studygoogle-agents-cli-workflowLeverage samples. Study existing agent samples (e.g., ambient-expense) before scaffolding.
2 — Scaffoldgoogle-agents-cli-scaffoldCreate/Enhance. Initialize the project structure, CI/CD, and infrastructure templates.
3 — Buildgoogle-agents-cli-adk-codeImplement. Write agent logic, tools, callbacks, and manage state using ADK APIs.
4 — Evaluategoogle-agents-cli-evalValidate Quality. Run systematic evaluations (LLM-as-judge).
5 — Deploygoogle-agents-cli-deployGo Production. Deploy to Agent Runtime (Vertex AI), Cloud Run, or GKE.
6 — Publishgoogle-agents-cli-publishRegister. Make your agent available as a tool in Gemini Enterprise.
7 — Observegoogle-agents-cli-observabilityMonitor. 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:

CommandDescription
agents-cli setupInstall the CLI and configure skills in your coding agent.
agents-cli scaffold <name>Create a new agent project from a template.
agents-cli eval runRun the agent and grade the traces in a single step (generate + grade).
agents-cli deployDeploy your agent to Google Cloud (Agent Runtime, Cloud Run, GKE).
agents-cli publish gemini-enterpriseRegister 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:

  1. 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.
  2. Verify Installation: Run agents-cli info to confirm the installation and view the active project configuration.
  3. 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.

Supporting Links

Add the registry badge

Maintainers can link this listing from the skill's own README. Free, no account needed, and it points back at the rendered package for anyone browsing the repo.

Markdown

[![Google Agents CLI onboarding on tokens&](https://tokensand.com/api/badges/skill/google-agents-cli-onboarding)](https://tokensand.com/agent-skills/google-agents-cli-onboarding)

HTML

<a href="https://tokensand.com/agent-skills/google-agents-cli-onboarding" target="_blank" rel="noopener">
  <img src="https://tokensand.com/api/badges/skill/google-agents-cli-onboarding" alt="Google Agents CLI onboarding on tokens&" />
</a>

More Google Agent Skills

All Agent Skills