Skip to content

Normalist-K/adk-python-plugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ADK Python Plugin for Claude Code

Google Agent Development Kit (ADK) Python development guide plugin for Claude Code.

Features

  • 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)

Installation

Claude Code 세션 내에서 다음 명령어를 실행하세요:

# 1. 마켓플레이스 추가
/plugin marketplace add Normalist-K/adk-python-plugin

# 2. 플러그인 설치
/plugin install adk-python@adk-python-plugin

# 3. 설치 확인
/plugin list

What's Included

SKILL.md

Quick reference covering:

  • ADK 5 core concepts (Agent, Tool, Session, Callback, Memory)
  • Agent types (LlmAgent, Sequential, Parallel, Loop, Custom)
  • Quick start guide
  • Project structure

Reference Documents (22 files)

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

Sample Agents (40+ examples)

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

Usage

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

Trigger Keywords

The skill triggers on keywords like:

  • google-adk, adk-python, adk
  • agent, gemini, multi-agent
  • workflow agent, sequential, parallel, loop
  • tool, mcp, a2a, grounding

Quick Start with ADK

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],
)

Official Documentation

License

MIT License

About

Google ADK Python development guide plugin for Claude Code

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors