google-agents-cli-workflow

Guides the full ADK agent lifecycle from scaffolding through deployment 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-workflow-god-gamer-manyu
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: google-agents-cli-workflow
Source: https://github.com/God-Gamer-Manyu/Google_Agentic_Engineering/tree/main/.agents/skills/google-agents-cli-workflow
Command: npx skills add https://github.com/God-Gamer-Manyu/Google_Agentic_Engineering --skill google-agents-cli-workflow-god-gamer-manyu

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires google-agents-cli, and includes references (resource) components.

What problem does it solve? Building agents with Google's Agent Development Kit involves many phases—scaffolding, coding, evaluating, deploying, and monitoring—and skipping steps leads to missing eval boilerplate, broken CI/CD config, and unreliable agents. This Skill provides the complete, opinionated workflow so coding agents follow the right sequence every time. ## Core Features & Use Cases - Phased Development Workflow: Covers Phase 0 (requirements gathering and spec writing) through Phase 7 (observability), with explicit entry and exit criteria for each stage. - Code Preservation & Model Selection Rules: Enforces surgical code edits, prevents unrequested model changes, and provides commands to list the latest Gemini models. - Evaluation-First Methodology: Mandates agents-cli eval over pytest for behavior testing, with an eval-fix loop and debugging playbook. - Use Case: A user asks to build a research agent with citations. The Skill directs the assistant to study the deep-search sample, scaffold with agents-cli scaffold create, implement with ADK patterns, run evals, and deploy to Agent Runtime with approval. ## Quick Start Ask the assistant to develop an agent using ADK and it will begin by clarifying requirements, then scaffold the project with agents-cli.

Frequently Asked Questions about google-agents-cli-workflow

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

FAQPage Schema
How do I build an agent with Google ADK?

Start by clarifying requirements and writing a spec, then scaffold the project with agents-cli scaffold create. Implement the agent code, smoke test with agents-cli run, validate behavior with agents-cli eval, and deploy only after explicit approval.

How do I install the agents-cli tool for ADK development?

Install it with uv tool install google-agents-cli, then run uvx google-agents-cli setup to install the companion skills. Check your installation and project configuration anytime with agents-cli info.

What is the difference between pytest and agents-cli eval?

pytest tests code correctness such as imports and return types, while agents-cli eval tests agent behavior including response quality, tool usage, and safety compliance. Never write pytest assertions on LLM output content because responses are non-deterministic.

Which deployment targets does agents-cli support?

agents-cli supports Agent Runtime (formerly Vertex AI Agent Engine), Cloud Run, and GKE as deployment targets. Use agents-cli scaffold enhance with the --deployment-target flag to add deployment support to a prototype project.

Why does my ADK agent deployment fail with 403 or timeout errors?

Deployment failures often stem from missing permissions, wrong project configuration, or stale credentials. Run agents-cli login --status to verify auth, check agents-cli info for project config, and consult the deploy skill's troubleshooting section for target-specific fixes.

Can I change the Gemini model my scaffolded agent uses?

You should never change the model unless explicitly requested, since the scaffolded model was chosen deliberately and arbitrary changes can break location or version compatibility. For new agents, list available models with the google-genai client to pick the latest one.