ASD

Google Agents Cli Publish

Guía para publicar un agente ADK o A2A en Gemini Enterprise, gestionar el Agent Registry y usar el comando `agents-cli publish gemini-enterprise`.

Oficial
Estrellas
5.6k

en todo el repo

Actividad
74

0–100, la ruta de este skill

Actualizado
hace 9 días

último commit aquí

Commits
15

últimos 90 días

Contexto
2.6k tok

163 tok en reposo

Paquete
1 archivo

10 KB

Instalar

Funciona con cualquier agente que lea SKILL.md

npx -y skills add google/agents-cli --skill google-agents-cli-publish --agent claude-code

Se instala solo en este repositorio.

Este skill makes network requests, reads environment config.

Qué hace

  • Registra un agente ADK o A2A en Gemini Enterprise mediante `agents-cli publish gemini-enterprise`
  • Auto-detecta agent runtime ID y tipo de registro desde `deployment_metadata.json`
  • Gestiona el fleet de Agent Registry con comandos `gcloud alpha agent-registry`
  • Ofrece modo interactivo (`--interactive`) y programático (flags/env vars) para CI/CD

Úsalo cuando

  • El usuario quiere "publicar un agente" o "registrar un agente con Gemini Enterprise"
  • Se necesita guía sobre el comando `agents-cli publish gemini-enterprise`
  • El usuario quiere listar, actualizar o eliminar agentes registrados en Agent Registry

No lo uses cuando

  • Para tareas de despliegue del agente (usar google-agents-cli-deploy)

Qué lo activa

Di cualquiera de estas frases y el agente debería cargar este skill.

  • Publica mi agente ADK en Gemini Enterprise
  • Registra este agente A2A en Cloud Run con Gemini Enterprise
  • Lista los agentes registrados en Agent Registry
  • ¿Cómo actualizo el endpoint de un agente en Agent Registry?

SKILL.md

En inglés

Gemini Enterprise Registration

Requires: A deployed agent. For Agent Runtime, deployment_metadata.json (created by agents-cli deploy) enables auto-detection. For Cloud Run or GKE, provide the agent card URL and flags directly.

Prerequisites

  1. Agent must be deployed — the agent must be running and reachable
  2. Gemini Enterprise app must exist — Create one in Google Cloud Console → Gemini Enterprise → Apps before registering
  3. deployment_metadata.json (Agent Runtime only) — Created automatically by agents-cli deploy; contains the agent runtime ID, deployment target, the A2A flag, and the agent directory

Required Permissions for A2A on Cloud Run

  • roles/run.servicesInvoker granted to the Discovery Engine service account (service-<PROJECT_NUMBER>@gcp-sa-discoveryengine.iam.gserviceaccount.com) on the Cloud Run service.

Registration Modes

A2A Registration (Cloud Run / GKE)

Every scaffolded agent serves the Agent-to-Agent protocol. A2A is the default — and only — registration type on Cloud Run and GKE, which have no reasoning engine, so Gemini Enterprise registers them over A2A. Pass the agent card URL and the command fetches the card and registers it; display name and description default to the card's name/description.

# A2A on Cloud Run / GKE
agents-cli publish gemini-enterprise \
  --agent-card-url https://my-service-abc123.us-east1.run.app/a2a/app/.well-known/agent-card.json \
  --gemini-enterprise-app-id projects/123456/locations/global/collections/default_collection/engines/my-app

Pass --display-name / --description to override the card defaults. For Agent Runtime, use ADK registration (below).

ADK Registration (default on Agent Runtime)

This is the default and recommended registration for Agent Runtime deployments: Gemini Enterprise invokes the agent natively via :streamQuery on its reasoning engine resource, authenticating end-to-end. Under the hood, :streamQuery dispatches to the AdkApp's streaming_agent_run_with_events method — when debugging an ADK invocation, search the runtime's reasoning_engine_stderr logs for that method name to trace the failure. It's also the path to use when the agent needs an OAuth authorization (--authorization-id). The agent is registered directly via its reasoning engine resource name; no agent card URL is needed.

agents-cli publish gemini-enterprise \
  --registration-type adk \
  --agent-runtime-id projects/123456/locations/us-east1/reasoningEngines/789 \
  --gemini-enterprise-app-id projects/123456/locations/global/collections/default_collection/engines/my-app \
  --display-name "My Agent" \
  --description "Handles customer queries" \
  --tool-description "Answers questions about products"

Programmatic Mode (CI/CD)

The command is non-interactive by default — pass all required values via flags or environment variables. This makes it safe for CI/CD pipelines.

Via flags

agents-cli publish gemini-enterprise \
  --agent-runtime-id "$AGENT_RUNTIME_ID" \
  --gemini-enterprise-app-id "$GEMINI_ENTERPRISE_APP_ID" \
  --display-name "Production Agent" \
  --registration-type adk

Via environment variables

Most flags have an env var alternative (--metadata-file, --interactive, and --list do not):

export AGENT_RUNTIME_ID="projects/123456/locations/us-east1/reasoningEngines/789"
export GEMINI_ENTERPRISE_APP_ID="projects/123456/locations/global/collections/default_collection/engines/my-app"
export GEMINI_DISPLAY_NAME="Production Agent"
export GEMINI_DESCRIPTION="Handles customer queries"

agents-cli publish gemini-enterprise

Interactive Mode (--interactive)

Pass --interactive (or -i) to be guided through any missing values with interactive prompts. The command will list available Gemini Enterprise apps, offer to auto-detect the agent runtime ID from metadata, and prompt for display name and description.

agents-cli publish gemini-enterprise --interactive

Complete Flag Reference

Flag Env Var Description
--agent-runtime-id AGENT_RUNTIME_ID Agent Runtime resource name (auto-detected from deployment_metadata.json)
--gemini-enterprise-app-id ID or GEMINI_ENTERPRISE_APP_ID Gemini Enterprise app full resource name
--display-name GEMINI_DISPLAY_NAME Display name in Gemini Enterprise
--description GEMINI_DESCRIPTION Agent description
--tool-description GEMINI_TOOL_DESCRIPTION Tool description (ADK mode only, defaults to description)
--registration-type REGISTRATION_TYPE adk or a2a (defaults to adk on Agent Runtime, a2a on Cloud Run / GKE)
--agent-card-url AGENT_CARD_URL Agent card URL for A2A registration
--deployment-target DEPLOYMENT_TARGET agent_runtime, cloud_run, or gke (sets the default registration type — ADK on Agent Runtime, A2A on Cloud Run / GKE — and the A2A auth method)
--project-id GOOGLE_CLOUD_PROJECT GCP project ID for billing
--project-number PROJECT_NUMBER GCP project number (used for Gemini Enterprise lookup)
--authorization-id GEMINI_AUTHORIZATION_ID OAuth authorization resource name
--metadata-file Path to deployment metadata (default: deployment_metadata.json)
--interactive / -i Enable interactive prompts
--list List Gemini Enterprise apps in the current project and exit

Auto-Detection from Metadata

When deployment_metadata.json exists, the command automatically:

  • Reads the agent runtime ID (remote_agent_runtime_id)
  • Determines the registration type: defaults to ADK (native :streamQuery) on Agent Runtime, and A2A on Cloud Run / GKE (which have no reasoning engine). Override with --registration-type.
  • Determines the deployment target for authentication

This means that for the simplest case (an agent on Agent Runtime, registered as ADK), you only need to provide the Gemini Enterprise app ID:

agents-cli publish gemini-enterprise \
  --gemini-enterprise-app-id projects/123456/locations/global/collections/default_collection/engines/my-app

SDK Compatibility

Agent Runtime deployments may encounter "Session not found" errors with google-cloud-aiplatform versions <= 1.128.0. In interactive mode (--interactive), the command checks the SDK version from uv.lock and offers to upgrade. In programmatic mode, ensure your SDK is up to date before registering.


Managing Agents in Agent Registry

Agent Registry (Preview) is the Google Cloud fleet-wide record of your agents. Agents deployed to a managed runtime (Agent Runtime on Gemini Enterprise Agent Platform) are auto-registered — no extra step after agents-cli deploy. Manage them with gcloud (requires roles/agentregistry.editor):

# List / filter
gcloud alpha agent-registry agents list --project PROJECT --location LOCATION
gcloud alpha agent-registry agents list --filter="displayName:my-agent"

# Inspect
gcloud alpha agent-registry agents describe AGENT_NAME

# Update endpoint/metadata — edit the Service resource, not the Agent
gcloud alpha agent-registry services update AGENT_NAME \
  --display-name "..." --description "..." \
  --interfaces "url=ENDPOINT_URL,protocol=HTTP_JSON"

# Remove: delete the underlying runtime agent (auto-registered) OR, for
# manually registered agents, delete the Service resource
gcloud alpha agent-registry services delete AGENT_NAME

Docs: https://docs.cloud.google.com/agent-registry/manage-agents


Troubleshooting

Issue Solution
"Session not found" after registration SDK version issue — upgrade google-cloud-aiplatform (see SDK Compatibility above), redeploy, then re-register
--registration-type is required Non-interactive mode needs --registration-type when no deployment_metadata.json exists
"Gemini Enterprise App ID is required" Provide --gemini-enterprise-app-id or set the ID / GEMINI_ENTERPRISE_APP_ID env var
Re-publishing the same agent Registration is idempotent — re-running updates the existing registration in place instead of creating a duplicate
HTTP 403 on registration Check that your account has Discovery Engine Editor permissions on the Gemini Enterprise project
Debugging ADK invocation failures on Agent Runtime Gemini Enterprise calls the agent via the AdkApp's streaming_agent_run_with_events method (the native :streamQuery contract). Grep the runtime's reasoning_engine_stderr logs for streaming_agent_run_with_events to find the underlying error
"Could not fetch agent card" Verify the agent is running and the URL is correct; for Cloud Run, ensure gcloud auth login is done

Related Skills

  • /google-agents-cli-deploy — Deployment targets, CI/CD pipelines, and production workflows (also covers Agent Gateway governed ingress/egress and Semantic Governance awareness)
  • /google-agents-cli-workflow — Development workflow, coding guidelines, and operational rules
  • /google-agents-cli-scaffold — Project creation and enhancement with agents-cli scaffold create / scaffold enhance

Reproducido de google/agents-cli bajo licencia Apache-2.0. Leer esta página en markdown.

Archivos

1 archivo en el paquete. Solo se lee SKILL.md al activarse — las referencias se cargan si el skill decide que las necesita.

Antes de instalar

Requiere un agente ya desplegado y una app de Gemini Enterprise existente; `agents-cli` se instala con `uv tool install google-agents-cli`.

Necesita en el PATH:gcloud

Variables de entorno:AGENT_RUNTIME_IDGEMINI_ENTERPRISE_APP_ID

Detalles

Creador
google
Licencia
Apache-2.0
Recursos incluidos
Solo SKILL.md
Código fuente
Ver SKILL.md

Etiquetas

Más de google/agents-cli

Este repo incluye 7 skills. Si instalas uno, normalmente ya tienes los demás.

Guía para desplegar un agente ADK, configurar CI/CD, gestionar secretos o solucionar despliegues en Agent Runtime, Cloud Run o GKE, incluyendo Agent Gateway.

Costo de contexto al activarse
6.5k tok
Tamaño del paquete
8 archivos
Última actualización
hace 9 días
Oficialdevops infraestructura

Guía sobre la metodología de evaluación de Agent Platform y el Quality Flywheel: métricas, esquema de dataset, scoring LLM-as-judge y causas comunes de fallo.

Costo de contexto al activarse
6.4k tok
Tamaño del paquete
6 archivos
Última actualización
hace 9 días
Oficialtesting qa

Referencia rápida de patrones de la API Python de ADK: tipos de agente, definición de tools, orquestación, callbacks, manejo de estado y recetas de referencia para estudiar.

Costo de contexto al activarse
984 tok
Tamaño del paquete
4 archivos
Última actualización
hace 9 días
Oficialherramientas desarrollo

Guía activa siempre para el ciclo de vida completo de desarrollo con ADK: scaffolding, construcción, evaluación, despliegue, publicación y observación de agentes, con reglas de preservación de código y selección de modelo.

Costo de contexto al activarse
5.2k tok
Tamaño del paquete
6 archivos
Última actualización
hace 9 días
Oficialherramientas desarrollo

Úsalo para 'crear un proyecto de agente', 'iniciar un proyecto ADK nuevo', 'añadir CI/CD' o 'mejorar/actualizar mi proyecto'. Cubre `scaffold create`, `scaffold enhance` y `scaffold upgrade`, plantillas y targets de deployment.

Costo de contexto al activarse
2.8k tok
Tamaño del paquete
2 archivos
Última actualización
hace 9 días
Oficialherramientas desarrollo

Úsalo para configurar tracing, monitorizar agentes ADK, configurar logging o depurar tráfico en producción; cubre Cloud Trace, prompt-response logging, BigQuery Agent Analytics e integraciones de terceros.

Costo de contexto al activarse
2.7k tok
Tamaño del paquete
3 archivos
Última actualización
hace 9 días
Oficialdevops infraestructura

Skills relacionados

Ai Sdk

26.2k

Responde preguntas sobre la AI SDK y ayuda a construir funciones con IA: agentes, chatbots, RAG, streaming, tool calling, salida estructurada, embeddings y hooks como useChat.

Costo de contexto al activarse
1.4k tok
Tamaño del paquete
1 archivo
Última actualización
el mes pasado
Oficialdesarrollo apis

Configura Turborepo para builds de monorepo eficientes con caché local y remota. Útil al configurar Turborepo, optimizar pipelines de build o implementar caching distribuido.

Costo de contexto al activarse
2k tok
Tamaño del paquete
1 archivo
Última actualización
hace 5 meses
devops infraestructura

Implementa observabilidad integral para service meshes, incluyendo tracing distribuido, métricas y visualización. Útil para monitoreo de mesh, depuración de latencia y SLOs.

Costo de contexto al activarse
708 tok
Tamaño del paquete
2 archivos
Última actualización
hace 2 meses
devops infraestructura