@@ -263,23 +263,37 @@ has resources that are helpful for contributors.
263263## AI-Assisted Development
264264
265265This repo includes built-in skills for AI coding agents
266- (Antigravity, Gemini CLI, and others) to help with ADK development:
267-
268- - ** ` setup-dev-env ` ** — Set up the local development environment:
269- install dependencies, configure pre-commit hooks, and verify
270- the setup.
271-
266+ (Antigravity, Gemini CLI, Claude Code, and others) to help with ADK
267+ development:
268+
269+ - ** ` adk-setup ` ** — Set up the local development environment: install
270+ dependencies, configure pre-commit hooks, verify the setup.
271+ - ** ` adk-agent-builder ` ** — Build, test, and iterate on ADK agents:
272+ function nodes, LLM agent nodes, routing, fan-out, human-in-the-loop,
273+ and session state.
274+ - ** ` adk-architecture ` ** — ADK internals: the runner, node contracts,
275+ context, resumption, observability.
272276- ** ` adk-debug ` ** — Debug ADK agents: inspect sessions, trace event
273277 flows, check LLM requests/responses, diagnose tool call issues.
274278 Supports both ` adk web ` (browser UI) and ` adk run ` (CLI) workflows.
275-
276- - ** ` adk-workflow ` ** — Build graph-based workflow agents: function
277- nodes, LLM agent nodes, edge patterns, routing, parallel processing
278- (fan-out and ParallelWorker), human-in-the-loop, state management,
279- and best practices. Includes reference docs and tested samples.
280-
281- These skills are in ` .agents/skills/ ` and are automatically available
282- when using compatible AI coding tools in this repo.
279+ - ** ` adk-style ` ** — Codebase conventions: Python idioms, imports,
280+ typing, Pydantic usage.
281+ - ** ` adk-review ` ** — Review local changes for errors, style compliance,
282+ and missing tests before opening a pull request.
283+ - ** ` adk-git ` ** — Git operations and the commit message conventions
284+ this repo uses.
285+ - ** ` adk-sample-creator ` ** — Author a new sample under
286+ ` contributing/samples/ ` .
287+ - ** ` adk-unit-design ` ** , ** ` adk-unit-guide ` ** — Write code unit design
288+ documents and code unit guides.
289+ - ** ` adk-verify-snippets ` ** — Extract the Python code blocks from a
290+ Markdown file and check that they still run.
291+
292+ These skills live in ` .agents/skills/ ` . Each one is a directory holding
293+ a ` SKILL.md ` file plus its reference Markdown, and nothing installs
294+ them: a coding agent started from a clone of this repo picks them up
295+ where they are. To use one outside the repo, copy its directory into
296+ the skills folder your agent reads (commonly ` ~/.agents/skills/ ` ).
283297
284298The ` AGENTS.md ` file provides additional project context that can
285299be used as LLM input.
0 commit comments