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 agentmods add instructions/inference-gateway/adk/claude-mdgit clone --depth 1 https://github.com/inference-gateway/adkWrote 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/instructions/inference-gateway/adk/claude-md)<a href="https://agentmods.dev/instructions/inference-gateway/adk/claude-md"><img src="https://agentmods.dev/badge/instructions/inference-gateway/adk/claude-md.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 | $0.02546 | $0.02546 |
| Opus 5 | $0.01273 | $0.01273 |
| Sonnet 5 | $0.00509 | $0.00509 |
| Haiku 4.5 | $0.00255 | $0.00255 |
Grade A, and why
adk CLAUDE.md 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 4d 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.
How it starts
The opening of the file, as written. The whole thing — 122 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
What this repo is
The A2A Agent Development Kit (ADK) — a Go library for building servers and clients that speak the Agent-to-Agent (A2A) protocol. Module path: github.com/inference-gateway/adk. It is not a binary — main.go is a placeholder; consumers import the server, client, and types packages. Runnable end-to-end demos live under examples/.
This repo is one of many in the inference-gateway GitHub org polyrepo. The A2A schema is owned by inference-gateway/schemas (see "Schema is upstream" below).
Commands
All commands run from the repo root. Discover the full list with task --list.
| Command | Purpose |
|---|---|
task test |
Run all tests (go test -v -cover ./...) |
task lint |
golangci-lint run |
task format |
gofmt -w on Go + prettier -w on Markdown |
task tidy |
Walks every go.mod in the tree (root + each examples/*/{server,client}) and runs go mod tidy |
task a2a:download-schema |
Pull the latest A2A schema YAML from inference-gateway/schemas into schema.yaml |
task a2a:generate-types |
Regenerate types/generated_types.go from schema.yaml |
task providers:download-schema |
Pull the canonical openapi.yaml from inference-gateway/schemas into providers-schema.yaml |
task generate:providers |
Regenerate all provider-enumerating artifacts (.env.example, docker-compose.yaml, READMEs) from providers-schema.yaml |
task generate |
Umbrella: runs a2a:generate-types, generate:providers, and generate:mocks |
task generate:mocks |
Regenerate every counterfeiter mock under client/mocks/ and server/mocks/ |
task generate:mocks:clean |
Wipe and regenerate all mocks |
task lint:examples |
markdownlint --fix 'examples/**/*.md' |
task precommit:install |
Copy .githooks/pre-commit into .git/hooks/ (recommended) |
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.
- 4d ago First seen · 122 lines · 2,546 tokens per session scan A 415f270fce64
adk CLAUDE.md is an instructions file published in the GitHub repository inference-gateway/adk (25 stars, last pushed yesterday), licensed Apache-2.0. It adds 2,546 tokens to every session, about $0.0127 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-08-30.
Other instructions, from other repositories
trpc-agent-go AGENTS.md
AGENTS.md instructions for trpc-group/trpc-agent-go, covering agents.md, project overview, engineering principles, go design conventions and implementation workflow.
codex-a2a AGENTS.md
AGENTS.md instructions for liujuanjuan1984/codex-a2a, covering agents.md, 1. 核心原则, 2. git 工作流, 3. issue 与 pr 协作 and 4. 工具与文本规范.
Handler AGENTS.md
AGENTS.md instructions for alDuncanson/Handler, covering development workflow and release process.
ag2 AGENTS.md
AGENTS.md instructions for ag2ai/ag2, covering ag2 development guidelines, ai-assisted contribution policy, architecture decision records (adr), code style guidelines and package structure.
a2a-java AGENTS.md
AGENTS.md instructions for a2aproject/a2a-java, covering agents.md, project overview, build, project structure and key conventions.
a2a-python AGENTS.md
Instructions for a2aproject/a2a-python, covering agents.md, technology stack & architecture, mandatory workflow and optional extras.