Google Agent Development Kit (ADK) Python development guide plugin for Claude Code.
- Comprehensive ADK Python development guide
- 22 reference documents covering all ADK concepts
- 40+ official sample agents from google/adk-samples
- Keywords:
google-adk,adk-python,agent,gemini,multi-agent,tool,workflow
Size: ~60MB (code only, media files removed)
Claude Code 세션 내에서 다음 명령어를 실행하세요:
# 1. 마켓플레이스 추가
/plugin marketplace add Normalist-K/adk-python-plugin
# 2. 플러그인 설치
/plugin install adk-python@adk-python-plugin
# 3. 설치 확인
/plugin listQuick reference covering:
- ADK 5 core concepts (Agent, Tool, Session, Callback, Memory)
- Agent types (LlmAgent, Sequential, Parallel, Loop, Custom)
- Quick start guide
- Project structure
| Category | Topics |
|---|---|
| Build Agents | Getting Started, Agents, Models, Built-in Tools, Custom Tools |
| Run Agents | Runtime, Deployment, Observability, Evaluation, Safety |
| Components | Context, Sessions, Memory, Callbacks, Artifacts, Events |
| Advanced | Apps, Plugins, MCP, A2A Protocol, Streaming, Grounding |
Note: Media files (images, GIFs, PDFs) have been removed to reduce repository size. For original assets, see google/adk-samples.
Official ADK sample agents organized by category:
| Category | Examples |
|---|---|
| Research | academic-research, fomc-research, deep-search |
| E-commerce | brand-search-optimization, personalized-shopping |
| Customer Service | customer-service, travel-concierge |
| Finance | currency-agent, financial-advisor, auto-insurance-agent |
| Data | data-engineering, data-science, google-trends-agent |
| Healthcare | medical-pre-authorization |
| Safety | llm-auditor, safety-plugins, ai-security-agent |
| Media | short-movie-agents, image-scoring |
| Marketing | marketing-agency, brand-aligner |
| DevOps | software-bug-assistant, incident-management |
| Workflow | hierarchical-workflow-automation, parallel_task_decomposition_execution |
After installation, the skill activates automatically when working with:
- Google ADK agent development
- Gemini model integration
- Workflow agents (Sequential, Loop, Parallel)
- Multi-agent systems
- Custom tools and MCP integration
- Agent deployment and evaluation
- Streaming and A2A protocol
The skill triggers on keywords like:
google-adk,adk-python,adkagent,gemini,multi-agentworkflow agent,sequential,parallel,looptool,mcp,a2a,grounding
from google.adk.agents import Agent
def get_weather(city: str) -> str:
"""Get weather for a city."""
return f"{city}: Sunny, 25°C"
agent = Agent(
name="weather_agent",
model="gemini-2.5-flash",
description="Provides weather information",
instruction="Answer weather questions using the tool.",
tools=[get_weather],
)MIT License