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.
npx skills add ihatesea69/kiro-kit --skill google-adk-pythongit clone --depth 1 https://github.com/ihatesea69/kiro-kitWrote 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.
[](https://agentmods.dev/skills/ihatesea69/kiro-kit/google-adk-python)<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>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.
| Model | Per session | Once 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 |
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.
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
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.
- 3d ago First seen · 57 lines · 42 tokens per session scan A 70bc2d62f0df
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.
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.
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…
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.
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.
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…
adt-rag-drift
Detect and fix stale chunks (files that changed or were deleted since last indexing).