google-agents-cli-deploy

Deploy ADK agents to Agent Runtime, Cloud Run, or GKE using agents-cli.

Updated Jun 27, 2026
One-click install
npx skills add https://github.com/God-Gamer-Manyu/Google_Agentic_Engineering --skill google-agents-cli-deploy-god-gamer-manyu
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: google-agents-cli-deploy
Source: https://github.com/God-Gamer-Manyu/Google_Agentic_Engineering/tree/main/.agents/skills/google-agents-cli-deploy
Command: npx skills add https://github.com/God-Gamer-Manyu/Google_Agentic_Engineering --skill google-agents-cli-deploy-god-gamer-manyu

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Deploying Google ADK agents to production involves coordinating Terraform infrastructure, container builds, service accounts, secrets, and CI/CD pipelines across multiple GCP targets. This Skill guides the full deployment workflow so agents reach Agent Runtime, Cloud Run, or GKE with correct IAM, scaling, and rollback configuration. ## Core Features & Use Cases - Deployment Target Selection: A decision matrix compares Agent Runtime, Cloud Run, and GKE across scaling, networking, session state, and cost so you pick the right target. - Guided Deploy Workflow: Covers agents-cli deploy flags, sizing parameters (CPU, memory, workers, concurrency), Secret Manager integration, and human approval gates before deployment. - CI/CD and Operations: Reference files detail GitHub Actions or Cloud Build pipelines with WIF authentication, Terraform custom infrastructure patterns, rollback procedures, and troubleshooting for common 403/503 errors. - Use Case: You have finished an ADK chemistry agent and need to ship it. Use this Skill to choose Cloud Run, configure secrets, deploy with agents-cli deploy, and set up a staging-to-production CI/CD pipeline. ## Quick Start Ask the assistant to deploy your ADK agent to Cloud Run using agents-cli with the appropriate project, region, and secrets configuration.

Frequently Asked Questions about google-agents-cli-deploy

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I deploy an ADK agent to Cloud Run?

Run agents-cli deploy with your GCP project and region flags after scaffolding a deployment target. The command builds the container from your Dockerfile and deploys it; pass --no-confirm-project in non-interactive environments.

Agent Runtime vs Cloud Run vs GKE for ADK agents?

Agent Runtime is a managed Vertex AI service with native persistent sessions and minimal ops. Cloud Run offers full networking control and per-instance billing. GKE provides complete Kubernetes control but requires the most expertise.

How do I set up CI/CD for an ADK agent deployment?

Run agents-cli infra cicd with your staging project, prod project, and GitHub repository name. It provisions WIF-based authentication and pipeline stages for CI, staging CD, and production CD with manual approval.

Why does my Cloud Run deployment return 403 errors?

Cloud Run deploys with --no-allow-unauthenticated by default, so requests need an Authorization Bearer identity token header. Also verify the runtime service account has required roles like secretmanager.secretAccessor.

How do I pass secrets to a deployed ADK agent?

Store values in GCP Secret Manager, then pass them at deploy time with agents-cli deploy --secrets using ENV_VAR=SECRET_ID format. Grant secretmanager.secretAccessor to the app service account first.

What should I do when an Agent Runtime deploy times out?

Agent Runtime deployments take 5-10 minutes and continue server-side even if the command times out. Run agents-cli deploy --status and poll every 60 seconds until it reports completion or failure.