ADK Engineer
Engineer production-ready Agent Development Kit (ADK) agents and multi-agent systems: clean structure, testability, safe tool usage, and deployment automation.
Overview
Use this skill to design and implement ADK agent code that is maintainable and shippable: clear module boundaries, structured tool interfaces, regression tests, and a deployment checklist (local or Agent Engine).
Prerequisites
- A target runtime (Python/Java/Go) consistent with the project’s pinned versions
- ADK installed (and any required model/provider SDKs configured)
- A test runner available in the repo (unit tests at minimum)
- If deploying: access to a Google Cloud project and permissions for the chosen deployment target
Instructions
- Clarify requirements: agent goals, tool surface, latency/cost constraints, and deployment target.
- Propose architecture: single agent vs multi-agent, orchestration pattern, state strategy (Memory Bank / external store).
- Scaffold structure: agent entrypoint(s), tool modules, config, and tests.
- Implement incrementally:
- add one tool at a time with input validation and structured outputs
- add regression tests for each tool and critical prompt flows
- Add operational guardrails: retries/backoff, timeouts, logging, and safe error messages.
- Validate locally (tests + smoke prompts) and provide a deployment plan (when requested).
Output
- A concrete architecture plan and file layout
- Agent and tool implementations (or patches) with tests
- A validation checklist (commands to run, expected outputs, and failure triage)
- Optional: deployment instructions and post-deploy health checks
Error Handling
- Build/test failures: isolate the failing module, minimize the repro, fix, and add a regression test.
- Tool/runtime errors: enforce structured error responses and safe retries where appropriate.
- Deployment failures: provide the exact failing command, logs to inspect, and least-privilege IAM fixes.
Examples
Example: Productionizing an existing ADK agent
- Request: “Refactor this agent into a clean module structure and add tests before we deploy.”
- Result: reorganized
src/ layout, tool boundaries, a test suite, and a deployment checklist.
Example: Multi-agent workflow
- Request: “Build a validator + deployer + monitor agent team with a sequential orchestrator.”
- Result: orchestrator skeleton, per-agent responsibilities, and smoke tests for each step.
Resources
- Full detailed playbook (kept for reference):
${CLAUDE_SKILL_DIR}/references/SKILL.full.md
- Repo standards (source of truth):
000-docs/6767-a-SPEC-DR-STND-claude-code-plugins-standard.md
000-docs/6767-b-SPEC-DR-STND-claude-skills-standard.md
- ADK / Agent Engine docs:
Source: jeremylongshore/claude-code-plugins-plus-skills → skills/.curated/adk-engineer/SKILL.md
Also appears in: jeremylongshore/claude-code-plugins-plus-skills/plugins/ai-ml/jeremy-adk-software-engineer/skills/adk-engineer/SKILL.md
1---2name: adk-engineer3description: 'Execute software engineer specializing in creating production-ready ADK agents with best practices, code structure, testing, and deployment automation. Use when asked to "build ADK agent", "create agent code", or "engineer ADK application". Trigger with relevant phrases based on skill purpose. '4---5
6# ADK Engineer
7
8Engineer production-ready Agent Development Kit (ADK) agents and multi-agent systems: clean structure, testability, safe tool usage, and deployment automation.
9
10## Overview
11
12Use this skill to design and implement ADK agent code that is maintainable and shippable: clear module boundaries, structured tool interfaces, regression tests, and a deployment checklist (local or Agent Engine).
13
14## Prerequisites
15
16- A target runtime (Python/Java/Go) consistent with the project’s pinned versions
17- ADK installed (and any required model/provider SDKs configured)
18- A test runner available in the repo (unit tests at minimum)
19- If deploying: access to a Google Cloud project and permissions for the chosen deployment target
20
21## Instructions
22
231. Clarify requirements: agent goals, tool surface, latency/cost constraints, and deployment target.
242. Propose architecture: single agent vs multi-agent, orchestration pattern, state strategy (Memory Bank / external store).
253. Scaffold structure: agent entrypoint(s), tool modules, config, and tests.
264. Implement incrementally:
27 - add one tool at a time with input validation and structured outputs
28 - add regression tests for each tool and critical prompt flows
295. Add operational guardrails: retries/backoff, timeouts, logging, and safe error messages.
306. Validate locally (tests + smoke prompts) and provide a deployment plan (when requested).
31
32## Output
33
34- A concrete architecture plan and file layout
35- Agent and tool implementations (or patches) with tests
36- A validation checklist (commands to run, expected outputs, and failure triage)
37- Optional: deployment instructions and post-deploy health checks
38
39## Error Handling
40
41- Build/test failures: isolate the failing module, minimize the repro, fix, and add a regression test.
42- Tool/runtime errors: enforce structured error responses and safe retries where appropriate.
43- Deployment failures: provide the exact failing command, logs to inspect, and least-privilege IAM fixes.
44
45## Examples
46
47**Example: Productionizing an existing ADK agent**
48
49- Request: “Refactor this agent into a clean module structure and add tests before we deploy.”
50- Result: reorganized `src/` layout, tool boundaries, a test suite, and a deployment checklist.
51
52**Example: Multi-agent workflow**
53
54- Request: “Build a validator + deployer + monitor agent team with a sequential orchestrator.”
55- Result: orchestrator skeleton, per-agent responsibilities, and smoke tests for each step.
56
57## Resources
58
59- Full detailed playbook (kept for reference): `${CLAUDE_SKILL_DIR}/references/SKILL.full.md`
60- Repo standards (source of truth):
61 - `000-docs/6767-a-SPEC-DR-STND-claude-code-plugins-standard.md`
62 - `000-docs/6767-b-SPEC-DR-STND-claude-skills-standard.md`
63- ADK / Agent Engine docs:
64
65---
66
67**Source:** [`jeremylongshore/claude-code-plugins-plus-skills`](https://github.com/jeremylongshore/claude-code-plugins-plus-skills) → `skills/.curated/adk-engineer/SKILL.md`
68
69**Also appears in:** `jeremylongshore/claude-code-plugins-plus-skills/plugins/ai-ml/jeremy-adk-software-engineer/skills/adk-engineer/SKILL.md`