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/a2aproject/a2a-python/agents-mdgit clone --depth 1 https://github.com/a2aproject/a2a-pythonWhat 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.00448 | $0.00448 |
| Opus 5 | $0.00224 | $0.00224 |
| Sonnet 5 | $0.00090 | $0.00090 |
| Haiku 4.5 | $0.00045 | $0.00045 |
Grade A, and why
a2a-python 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 yesterday.
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.
What it actually says
AGENTS.md
Python SDK for the Agent2Agent (A2A) Protocol
(a2a module, a2a-sdk distribution). It handles complex messaging, task management,
and communication across different transports (REST, gRPC, JSON-RPC).
Technology Stack & Architecture
- Language: Python 3.10+
- Package Manager:
uv - Lead Transports: Starlette (REST/JSON-RPC), gRPC
- Data Layer: SQLAlchemy (SQL), Pydantic (Logic/Legacy), Protobuf (Modern Messaging)
- Key Directories:
/src: Core implementation logic./tests: Comprehensive test suite./docs: AI guides and migration documentation.
Mandatory workflow
You MUST do all of the following:
-
At the start of every task that touches files, read
docs/ai/coding_conventions.md,docs/ai/mandatory_checks.md, anddocs/ai/evidence_rules.md. -
Before declaring any task done, run the full check sequence in
docs/ai/mandatory_checks.md— including for markdown/comment/whitespace-only changes. -
On any mistake, load the
mistake-reflectionskill at.agents/skills/mistake-reflection/SKILL.mdbefore continuing your response. The skill appends a structured entry todocs/ai/ai_learnings.md(gitignored local journal) so the user can use those findings to improve the workflow.When unsure: load the skill. False positives are free; false negatives are how the same mistake recurs.
Optional extras
pyproject.toml defines extras (grpc, telemetry, postgresql,
etc.). The dev group installs a2a-sdk[all], so anything gated behind
an extra must still import lazily at runtime — the install-smoke
harness verifies this per profile.
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.
- yesterday First seen · 45 lines · 448 tokens per session scan A 5bbaddd1c852
a2a-python AGENTS.md is an instructions file published in the GitHub repository a2aproject/a2a-python (2,116 stars, last pushed 5d ago), licensed Apache-2.0. It adds 448 tokens to every session, about $0.0022 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
lucid-agents AGENTS.md
Instructions for daydreamsai/lucid-agents, covering lucid agents monorepo - ai coding guide, project overview, brand system, architecture overview and package dependencies.
agentarea AGENTS.md
Instructions for agentarea/agentarea, covering agents.md, where to look, structure, commands and backend (from agentarea-platform/).
codex-a2a AGENTS.md
Instructions for liujuanjuan1984/codex-a2a, covering agents.md, 1. 核心原则, 2. git 工作流, 3. issue 与 pr 协作 and 4. 工具与文本规范.
a2amesh AGENTS.md
Instructions for oaslananka/a2amesh, covering a2a mesh agent map, what this repository is, setup, build and test and repository layout.
Handler AGENTS.md
AGENTS.md instructions for alDuncanson/Handler, covering development workflow and release process.
AgentStack convex.instructions.md
Instructions for ssdeanx/AgentStack, covering convex guidelines, function guidelines, new function syntax, http endpoint syntax and validators.