google-adk-python

google-adk-python is a skill for Kiro from ihatesea69/kiro-kit. It costs 42 tokens per session (342 once invoked), scanned A, original, MIT.

A guide to building AI agents in Python with Google's Agent Development Kit. It covers agents that use tools, keep conversation sessions, work together, and run multi-step tasks, including workflows that retrieve relevant information from stored data.

In plain words
What is it for?
Use it to create tool-using or multi-agent systems, connect agents to Google Cloud AI services, coordinate agent communication, and build retrieval-based workflows.
Why use it?
It helps organize complex AI work into separate agents and coordinated steps instead of one large, difficult-to-manage process.

Skill for Kiro

Written for Kiro: installed under .kiro/.

Good fit Use it to create tool-using or multi-agent systems, connect agents to Google Cloud AI services, coordinate agent communication, and build retrieval-based workflows.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/ihatesea69/kiro-kit/google-adk-python
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add ihatesea69/kiro-kit --skill google-adk-python
Clone the repo
git clone --depth 1 https://github.com/ihatesea69/kiro-kit

Made for: Kiro.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for google-adk-python

README.md
[![agentmods](https://agentmods.dev/badge/skills/ihatesea69/kiro-kit/google-adk-python.svg)](https://agentmods.dev/skills/ihatesea69/kiro-kit/google-adk-python)
Your own site
<a href="https://agentmods.dev/skills/ihatesea69/kiro-kit/google-adk-python"><img src="https://agentmods.dev/badge/skills/ihatesea69/kiro-kit/google-adk-python.svg" alt="Measured on agentmods" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 342 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00042 $0.00342
Opus 5 $0.00021 $0.00171
Sonnet 5 $0.00008 $0.00068
Haiku 4.5 $0.00004 $0.00034

Measured 3d ago against content hash 70bc2d62f0df, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-07, from the pricing page.

Security

Grade A, and why

google-adk-python scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.kiro/skills/google-adk-python/SKILL.md · 57 lines

What it actually says

Google ADK Python

Activate this skill when building AI agents with Google's Agent Development Kit.

When to Use

  • Creating multi-agent orchestration systems
  • Building tool-using AI agents
  • Integrating with Google Cloud AI services
  • Designing agent communication protocols
  • Implementing RAG pipelines with ADK

Core Concepts

  • Agent: Autonomous unit with instructions, tools, and model
  • Tool: Function callable by the agent (Python functions, APIs)
  • Session: Conversation state management
  • Runner: Execution engine for agent invocations
  • Orchestrator: Multi-agent coordination patterns

Setup

from google.adk import Agent, Tool, Runner

agent = Agent(
    name="data-analyst",
    model="gemini-2.0-flash",
    instructions="You analyze datasets and produce insights.",
    tools=[query_database, generate_chart],
)

runner = Runner(agent=agent)
response = runner.run("Analyze Q4 sales trends")

Patterns

  • Sequential agent chains for multi-step analysis
  • Parallel agents for independent data processing
  • Supervisor pattern for quality control
  • Tool composition for complex workflows

Rules

  • Define clear agent boundaries and responsibilities
  • Use typed tool parameters with Pydantic models
  • Handle tool failures gracefully with retries
  • Keep agent instructions concise and focused
  • Test agents with deterministic inputs first
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 57 lines · 42 tokens per session scan A 70bc2d62f0df

Subscribe to this mod's changes

google-adk-python is a skill published in the GitHub repository ihatesea69/kiro-kit (18 stars, last pushed 18d ago), licensed MIT. It adds 42 tokens to every session and 342 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

qmd-mcp-skill

Use a local QMD knowledge base through UXC over MCP stdio, with daemon-backed session reuse and typed retrieval flows that avoid repeated model warmup and unnecessary query-expansion latency.

holon-run/uxc · 44 tokens

kb-review

Read-only review of a retrieval-augmented setup, Amazon Bedrock Knowledge Bases first and hand-built RAG pipelines second: sources, chunking, metadata and tenant filtering, embedding model, vector store, sync, retrieval quality and cost per query. Builds a golden question set, measures recall@5 and MRR against the…

timurgaleev/vibestack · 112 tokens

ai-automation

Workflow automation skills using AI. Build chatbots, automate repetitive tasks, integrate LLMs into pipelines, design intent-based assistants. Triggers on: chatbot, automation, workflow, AI agent, RAG, LLM integration, intent recognition, conversation design.

fatihkan/badi · 56 tokens

graphify

Turn any folder of files into a navigable knowledge graph with community detection, an honest audit trail, and three outputs: interactive HTML, GraphRAG-ready JSON, and a plain-language GRAPHREPORT.md.

LucasSantana-Dev/sharekit · 55 tokens

recall

One-shot semantic lookup against the local RAG index — answers "what did we decide about X", "where did we hit this bug before", "is there a memory note for Y" in a single MCP call. Backed by the ragquery MCP tool over 21k chunks (memory, plans, handoffs, skills, standards, repo docs, changelogs, specs, code, commits…

LucasSantana-Dev/sharekit · 121 tokens

adt-rag-drift

Detect and fix stale chunks (files that changed or were deleted since last indexing).

LucasSantana-Dev/sharekit · 22 tokens