Agent skill · Workflow & Productivity

ck:google-adk-python

Build AI agents with Google ADK Python. Multi-agent systems, A2A protocol, MCP tools, workflow agents, state/memory, callbacks/plugins, Vertex AI deployment, evaluation.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill google-adk-python-jorgezuloaga-audio-dev-mcps --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Version: 2.0.0
Path: skills/agent/google-adk-python-jorgezuloaga-audio-dev-mcps/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Google ADK Python Skill Expert guide for Google's Agent Development Kit (ADK) Python — open-source, code-first toolkit for building, evaluating, and deploying AI agents. Optimized for Gemini, model-agnostic by design. ## When to Activate - Build single or multi-agent systems with tool integration - Implement A2A protocol for remote agent communication - Integrate MCP servers as agent tools - Use workflow agents (sequential, parallel, loop) for pipelines - Manage sessions, state, memory, and artifacts - Add callbacks, plugins, or observability hooks - Deploy to Cloud Run, Vertex AI Agent Engine, or GKE - Evaluate agents with `adk eval` framework ## Agent Structure Convention (Required) ``` my_agent/ ├── __init__.py # MUST: from . import agent └── agent.py # MUST: root_agent = Agent(...) OR app = App(...) ``` ## Quick Start ```bash pip install google-adk # stable (weekly releases) uv sync --all-extras # dev setup (uv required, Python 3.10+, 3.11+ recommended) ``` ```python from google.adk import Agent root_agent = Agent( name="assistant", model="gemini-2.5-flash", instruction="You are a helpful assistant.", description="General assistant agent.", tools=[get_weather], ) ``` ## App P

What's inside
Steps it walks through
  1. When to Activate
  2. Agent Structure Convention (Required)
  3. Quick Start
  4. App Pattern (Production)
  5. CLI Tools
  6. Agent Types
  7. Key APIs
  8. Model Support
  9. Best Practices
  10. References
  11. External Resources
Ships with 1 file
  • metadata.json
Commands it runs
pip install google-adk          # stable (weekly releases)
uv sync --all-extras            # dev setup (uv required, Python 3.10+, 3.11+ recommended)
More from claude-skill-registry
All skills →
About this skill
What does the ck:google-adk-python skill do?

Build AI agents with Google ADK Python. Multi-agent systems, A2A protocol, MCP tools, workflow agents, state/memory, callbacks/plugins, Vertex AI deployment, evaluation.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill google-adk-python-jorgezuloaga-audio-dev-mcps --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going