Adk expert
Skill jpantsjoha/ai-native-developer-experience/.agents/skills/adk-expert
Google ADK (Agent Development Kit) orchestration patterns — boundaries, agent composition, and tool seams. Trigger when designing or reviewing multi-agent systems built on ADK. Authoritative source: adk.dev.From its SKILL.md
npx -y skills add jpantsjoha/ai-native-developer-experience --skill adk-expertAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 11 stars11 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
- fetches URLsInstructs the agent to fetch 1 URL, including adk.dev.
SKILL.md
3.8 KB, 788 tokens by cl100k_base, as published. Nobody here has run it
ADK Expert
ADK is a mental model for agent composition, not a framework to learn. The patterns transfer to any orchestration foundation.
This skill covers how to think about agent boundaries, orchestration topology, and tool seams using Google ADK principles. It is not a tutorial on SDK methods — the official docs at adk.dev own that. This skill covers the architecture of agent systems.
When to use
- Designing a multi-agent system on Google ADK
- Deciding where to draw agent boundaries
- Choosing between orchestration topologies (supervisor-worker vs peer-to-peer vs sequential)
- Reviewing an existing ADK-based system for structural problems
- Integrating MCP servers or external tools into an ADK agent graph
Procedure
-
Verify current ADK documentation — before writing any agent topology or referencing API surface, fetch the latest docs from adk.dev. ADK evolves; training data lags.
-
Define agent responsibilities first — each agent in the system must have:
- A single, nameable responsibility
- A defined input contract (what it receives)
- A defined output contract (what it produces)
- A declared set of tools it may use (no raw DB access; use bounded tool seams)
-
Choose the orchestration topology:
Topology When to use Trade-off Supervisor → Worker Audit trails required; routing logic is complex Adds latency; supervisor is a bottleneck Sequential pipeline Tasks are strictly ordered; each step feeds the next Simple but no parallelism Parallel fan-out Independent sub-tasks that merge at a synthesis step Fast; coordination overhead at merge Peer-to-peer Speed over governance; tasks are loosely coupled Hard to audit; compliance risk -
Design the tool seams — tools are the boundary between an agent and the external world. Each tool should:
- Have a typed schema (inputs and outputs)
- Enforce the agent's permission scope (least-privilege)
- Be independently testable
- Return structured errors, not raw exceptions
-
Plan for agent failure — every agent in the graph must have a declared failure behaviour: retry, escalate to supervisor, return partial result, or halt. Unhandled agent failure silently corrupts downstream output.
-
Add observability at the boundary — log every agent invocation: agent name, input summary, output summary, latency, tool calls made. The agent graph is only debuggable if the boundary calls are visible.
-
Run the Adversarial Gate — before finalising the topology, invoke
adversarial-gateon the design. Common failure modes: supervisor SPOF, context window overflow at the synthesis step, tool permission creep, silent agent loops.
Outputs
- Agent topology diagram (C4 component or sequence diagram)
- Agent responsibility matrix: agent | input | output | tools | failure behaviour
- Tool schema definitions (typed inputs/outputs)
- ADR for topology choice (via
the-architect)
Guardrails
- The agent graph is not self-documenting. Name every agent, every tool, every edge. Implicit wiring creates invisible failure modes.
- No raw database access from agents. Agents call tools; tools call infrastructure. This boundary is the governance seam.
- Context window is finite. Design the graph so no single agent accumulates unbounded context. Summarise at synthesis points.
- Verify API surface before writing code. ADK API changes. Always ground against adk.dev before implementing.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.
Gives 0 of the 12 instructions most agent orchestration skills give in 788 tokens
Counted across 848 of the 1,300 authors here whose files we hold, read 2026-09-06
- Dispatch one agent per independent problem domainin 56 of 848, across 42 files
- Run full test suite after integrationin 55 of 848, across 42 files
- Verify fixes do not conflictin 40 of 848, across 32 files
- Review each summary when agents returnin 40 of 848, across 31 files
- Write a handoff document summarising the current conversationin 30 of 848, across 25 files
- Reference existing artifacts by path or URLin 26 of 848, across 24 files
- Give each agent a specific scopein 19 of 848, across 10 files
- Give each agent a clear goalin 19 of 848, across 10 files
- Include a suggested skills section in the documentin 18 of 848, across 16 files
- Tailor the doc to the user argumentsin 18 of 848, across 15 files
- Issue all subagent dispatches in the same responsein 17 of 848, across 11 files
- Use git worktrees for isolationin 17 of 848, across 8 files
Said here and by no other author read
- Verify current ADK documentation from adk.dev
- Define single responsibilities for each agent
- Choose an appropriate orchestration topology
- Design typed tool seams with least-privilege
- Declare failure behaviour for every agent
- Add observability at the agent boundary
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.