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/agents-mdgit clone --depth 1 https://github.com/inference-gateway/adkWhat 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.00705 | $0.00705 |
| Opus 5 | $0.00352 | $0.00352 |
| Sonnet 5 | $0.00141 | $0.00141 |
| Haiku 4.5 | $0.00071 | $0.00071 |
Grade A, and why
adk AGENTS.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 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.
How it starts
The opening of the file, as written. The whole thing — 45 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Inference Gateway A2A ADK
This file is a README for AI coding agents working in this repository. See README.md for user-facing docs; CONTRIBUTING.md has the full contributor workflow.
Project Overview
Go library for building Agent-to-Agent (A2A) protocol agents. Core packages: client/ (A2A client), server/ (server builders, storage, middlewares, telemetry), types/ (protocol types). The root module and every examples/<scenario>/client and examples/<scenario>/server directory are separate Go modules.
Build, Test, and Development Commands
Use Task for common workflows (task lists all tasks):
task format— gofmt on Go files, Prettier on Markdowntask lint—golangci-lint runtask test—go test -v -cover ./...task tidy—go mod tidyin every module (root + examples)task a2a:generate-types— regeneratetypes/generated_types.gofromschema.yamltask generate:providers— regenerate provider artifacts fromproviders-schema.yamltask generate:mocks— regenerate Counterfeiter mocks inclient/mocks/andserver/mocks/task generate— regenerate types, providers, and mocks;go build .verifies the root package
Install the optional pre-commit hook with task precommit:install.
Generated Files
types/generated_types.go, client/mocks/*.go, and server/mocks/*.go are generated. Never edit them by hand: change the source (schema.yaml, providers-schema.yaml, or the interface) and rerun the matching task target.
Code Style
Tabs for Go, LF endings, final newlines, 120-column guideline (.editorconfig). No inline comments inside function bodies; docblocks sit above exported symbols, at most 3 lines, no issue links. Prefer early returns, interface-driven dependencies, table-driven tests, and structured logging with lowercase messages.
All non-standard-library imports MUST use explicit named imports (aliases), grouped in this order with a blank line between groups: (1) stdlib, (2) external testing libraries, (3) external libraries, (4) internal testing libraries, (5) internal libraries.
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 · 45 lines · 705 tokens per session scan A 2e0e3d39d44f
adk AGENTS.md is an instructions file published in the GitHub repository inference-gateway/adk (25 stars, last pushed 4d ago), licensed Apache-2.0. It adds 705 tokens to every session, about $0.0035 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.
forge CLAUDE.md
Instructions for initializ/forge, covering forge - claude.md, project structure, platform-integration contracts (used by initializ aip), pre-commit requirements and format all modules.
adk-go AGENTS.md
AGENTS.md instructions for google/adk-go, covering agents.md, project overview, skills, setup & core commands and definition of done.
adk-go CLAUDE.md
Claude Code instructions for google/adk-go: See AGENTS.md for project context, commands, and contribution guidelines for AI coding agents.
a2a-python AGENTS.md
Instructions for a2aproject/a2a-python, covering agents.md, technology stack & architecture, mandatory workflow and optional extras.
a2a-java AGENTS.md
Instructions for a2aproject/a2a-java, covering agents.md, project overview, build, project structure and key conventions.