google-adk-python

Builds, evaluates, and deploys AI agents with Google ADK Python to Vertex AI or Cloud Run.

Updated Nov 9, 2025
One-click install
npx skills add https://github.com/wollfoo/setup-opencode --skill google-adk-python-wollfoo
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: google-adk-python
Source: https://github.com/wollfoo/setup-opencode/tree/main/skills/google-adk-python
Command: npx skills add https://github.com/wollfoo/setup-opencode --skill google-adk-python-wollfoo

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Builds, evaluates, and deploys AI agents using Google's ADK Python.

Core Features & Use Cases

  • Code-first agent orchestration for LlmAgent, WorkflowAgent, and BaseAgent
  • Multi-agent coordination with sub-agents and coordinators
  • Workflow patterns (Sequential, Parallel, Loop) and deployment to Vertex AI or Cloud Run
  • Tool integration with Google tools (web search, code execution) and custom tools

Quick Start

Use the google-adk-python skill to instantiate a multi-agent workflow where a Researcher agent searches the web and a Writer agent composes a report, orchestrated by a Coordinator.

Frequently Asked Questions about google-adk-python

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

FAQPage Schema
How do I orchestrate multi-agent workflows in Python using Google's ADK?

Google's ADK Python enables code-first orchestration of multi-agent workflows by coordinating LlmAgent, WorkflowAgent, and BaseAgent classes with sub-agents and coordinators. It supports sequential, parallel, and loop workflow patterns for complex task execution.

What is code-first agent orchestration and when do I need it for AI agents?

Code-first agent orchestration is building and deploying AI agents programmatically. You need it when coordinating multiple agents, integrating custom or Google tools like web search, and deploying workflows to Vertex AI or Cloud Run.

Can I deploy ADK Python agents to Vertex AI or Cloud Run?

Yes, you can deploy ADK Python agents to Vertex AI or Cloud Run. The deployment process involves building and evaluating your agents locally before pushing the workflow pipelines to your chosen Google Cloud environment.

How do I integrate web search and code execution tools with AI agents?

You integrate web search and code execution tools with AI agents by using the built-in Google tools provided in the ADK Python package. You can also attach custom tools to your LlmAgent or WorkflowAgent for specialized task execution.

What's the best way to coordinate a Researcher agent and a Writer agent in Python?

The best way to coordinate a Researcher and Writer agent is by using a Coordinator agent in Google's ADK Python. The Coordinator orchestrates the multi-agent workflow, routing web search results from the Researcher to the Writer for report composition.