惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Last Week in AI
Last Week in AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园_首页
雷峰网
雷峰网
IT之家
IT之家
I
InfoQ
酷 壳 – CoolShell
酷 壳 – CoolShell
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
B
Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 【当耐特】
大猫的无限游戏
大猫的无限游戏
博客园 - 聂微东
Hugging Face - Blog
Hugging Face - Blog
A
About on SuperTechFans
月光博客
月光博客
P
Proofpoint News Feed
博客园 - 三生石上(FineUI控件)
J
Java Code Geeks
G
Google Developers Blog
小众软件
小众软件
宝玉的分享
宝玉的分享
Jina AI
Jina AI
V
Visual Studio Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Google Agents CLI + Claude Code: Building Production-Styl...
Vivek Shetye · 2026-04-29 · via DEV Community

Google released something that could significantly accelerate how developers build AI agents:

Google Agents CLI

Combined with:

  • Google ADK (Agent Development Kit)
  • Claude Code (or Gemini CLI / OpenCode)

it creates one of the fastest workflows currently available for building, testing, evaluating, and deploying multi-agent systems.

In this project, I built a full Multi-agent Customer Support team in under 30 minutes.


What I Built

A production-style customer support team powered by four specialized AI agents:

🎧 Concierge Agent

  • First point of contact
  • User intent classification
  • Request routing

📦 Logistician Agent

  • Order status
  • Shipping updates
  • Inventory checks

🎭 Stylist Agent

  • Product recommendations
  • Catalog discovery
  • Personalized suggestions

🛡️ Resolver Agent

  • Returns
  • Refunds
  • Human escalation for high-value disputes

Full Video Walkthrough


Core Stack

Google ADK

Google’s Python-native Agent Development Kit that provides:

  • Agent abstractions
  • Tool integration
  • Session handling
  • Multi-agent architecture patterns

Google Agents CLI

A workflow layer that enables:

  • Scaffold
  • Build
  • Validate
  • Deploy

Claude Code

Your implementation accelerator:

  • Writes code
  • Generates tests
  • Creates evals
  • Performs security audits
  • Assists deployment

Workflow

1. Scaffold the Foundation with Google Agents CLI

The process starts by using Google Agents CLI to rapidly initialize and scaffold the entire multi-agent project structure.

This includes:

  • Base architecture
  • Agent framework setup
  • Development workflow
  • Deployment pathways

Instead of manually creating boilerplate, the CLI provides a production-oriented foundation from day one.

2. Define the Multi-Agent System Through Natural Language

Next, Claude Code acts as the implementation engine.

By providing detailed system requirements in plain language, I specified:

  • Individual agent roles
  • Responsibilities for each specialist
  • Agent-to-agent communication patterns
  • Human-in-the-loop workflows
  • Session memory requirements
  • Mock data sources
  • Deployment targets

This transforms high-level business logic directly into executable architecture.

3. Rapid End-to-End System Generation

From those instructions, Claude Code + Agents CLI collaboratively generated:

System Design:

  • Full design specification
  • Agent hierarchy
  • Routing logic
  • Communication workflows

Development Assets:

  • Agent definitions
  • Tool integrations
  • Mock datasets
  • Core application code

Quality Assurance:

  • Unit tests
  • Integration tests
  • Evaluation suites
  • Security audit recommendations

4. Deployment

The system successfully:

  • Containerized the application
  • Pushed to Artifact Registry
  • Configured IAM
  • Deployed to Google Cloud Run
  • Created GitHub Actions CI/CD workflows

Which means every future code push can:

Test → Eval → Deploy automatically

This workflow creates a streamlined path from concept → validated production prototype in dramatically less time than traditional development workflows.


Key Takeaway

The hardest part is no longer building AI agents.

It’s deciding what to build.

That’s a massive shift.

As tooling matures, developer leverage increases dramatically.


Production Advice

If you’re planning to use this stack seriously:

Prioritize:

  • Prompt injection defenses
  • Adversarial evals
  • Human oversight
  • Security hardening
  • Guardrails
  • Monitoring

Fast building does NOT remove production responsibility.


Final Thoughts

Google Agents CLI + Claude Code feels like an early glimpse into the future of AI product development.

For:

  • AI engineers
  • Startup founders
  • Automation builders
  • Developer tool creators

This workflow could meaningfully compress idea-to-production timelines.


Full Code Repository

👉 https://github.com/vivekshetye/google-adk-multi-agent-customer-support