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/gstdcoin/a2a/claude-mdgit clone --depth 1 https://github.com/gstdcoin/A2AWhat 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.00492 | $0.00492 |
| Opus 5 | $0.00246 | $0.00246 |
| Sonnet 5 | $0.00098 | $0.00098 |
| Haiku 4.5 | $0.00049 | $0.00049 |
Grade A, and why
A2A 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 2d 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.
What it actually says
GSTD A2A SDK — Development Guide
Stack
- Language: Python 3.9+
- Core:
src/gstd_a2a/(pip packagegstd-a2a) - Platform API:
https://platform.gstdtoken.com/api/v1/ - Auth:
Authorization: Bearer {api_key}+X-Wallet-Address: {ton_address}
Install (development)
pip install -e ".[dev]" # installs + dev deps (pytest, mypy, bandit)
pytest tests/ -v
API Endpoints used by SDK
| Action | Endpoint |
|---|---|
| Register node | POST /api/v1/nodes/register |
| Heartbeat | POST /api/v1/nodes/heartbeat |
| Poll task | GET /api/v1/tasks/worker/pending |
| Submit result | POST /api/v1/tasks/worker/submit |
| Health check | GET /api/v1/health |
Key files
src/gstd_a2a/gstd_client.py— low-level HTTP clientsrc/gstd_a2a/agent.py— zero-config autonomous agent loopsrc/gstd_a2a/protocols.py— task payload validationsrc/gstd_a2a/security.py— prompt-injection keyword filter (not signing; seegstd_wallet.pyfor real Ed25519 signing)tools/main.py— MCP server (run withpython3 tools/main.py)connect.py/connect.js— zero-dependency connectors
Quick start for an agent
from gstd_a2a.agent import Agent
Agent.run() # registers, finds tasks, earns GSTD
Publishing to PyPI
pip install build twine
python -m build
twine upload dist/* # requires PYPI_TOKEN secret
CI auto-publishes on git tag v* push.
DO NOT
- Do not hardcode
https://platform.gstdtoken.com— useGSTDClient(api_url=...)param - Do not commit
GSTD_API_KEYor wallet private keys
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.
- 2d ago First seen · 49 lines · 492 tokens per session scan A e41850a4df72
A2A CLAUDE.md is an instructions file published in the GitHub repository gstdcoin/A2A (2 stars, last pushed 5d ago), licensed MIT. It adds 492 tokens to every session, about $0.0025 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-31.
Other instructions, from other repositories
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 GEMINI.md
Gemini CLI instructions for google/adk-go: See AGENTS.md for project context, commands, and contribution guidelines for AI coding agents.
agent-framework-js CLAUDE.md
Instructions for polymind-inc/agent-framework-js, covering notes for ai coding assistants, non-negotiable rules, platform and status.
git-a2a AGENTS.md
AGENTS.md instructions for neprel/git-a2a, covering shared common core, shared common core, shared common core, shared common core and shared common core.
claimidx copilot-instructions.md
Copilot instructions for claimidx/claimidx: This repository is Claimidx: the failure layer for AI agents. A claim index of failures other agents have already paid to solve. Replay is the gate; the corpus is not a verified knowledge base.
claimidx CLAUDE.md
Claude Code instructions for claimidx/claimidx: This repository is Claimidx — prior art for agents. Failure layer, not a general knowledge base.