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/0xendale/evm-agent-toolkit/agents-mdgit clone --depth 1 https://github.com/0xendale/evm-agent-toolkitWhat 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.00776 | $0.00776 |
| Opus 5 | $0.00388 | $0.00388 |
| Sonnet 5 | $0.00155 | $0.00155 |
| Haiku 4.5 | $0.00078 | $0.00078 |
Grade A, and why
evm-agent-toolkit 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 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.
How it starts
The opening of the file, as written. The whole thing — 70 lines — stays where its author put it; the contents beside it link to each section on GitHub.
EVM MCP Server — Contributor & Architecture Guide
This file orients any agent (or human) working inside this repository.
What this repo is
A professional MCP (Model Context Protocol) server that gives autonomous coding agents deterministic, schema-validated tools for EVM smart contract development.
Architecture
evm-agent-toolkit/
├── src/
│ ├── mcp/index.ts # MCP server entry point (registerTool API)
│ ├── tools/ # Zod-validated CLI output parsers
│ ├── rules/ # System prompt injection files (.md)
│ └── hooks/ # Lifecycle hooks (UserPromptSubmit, Statusline)
├── tests/ # Vitest unit tests for all parsers
├── bench/ # Parser performance benchmarks
├── evals/ # Agent evaluation framework
├── skills/ # Markdown reference libraries (read-only knowledge base)
├── docs/ # Design documents and proposals
├── .claude-plugin/ # Claude Code plugin manifest
├── gemini-extension.json # Antigravity plugin manifest
├── package.json # npm package: evm-agent-toolkit
└── tsconfig.json # Strict TypeScript, ESM, declarations enabled
Key conventions
Naming
- Server:
evm-agent-toolkit - Tools:
evm_{action}_{resource}(e.g.,evm_scan_vulnerabilities)
API
- Use
server.registerTool()— neverserver.tool()(deprecated) - Every tool must have
title,description,inputSchema(Zod), andannotations - Use
z.looseObject()— never.passthrough()(deprecated in Zod v4) - Use
z.unknown()— neverz.any()(deprecated in Zod v4) - Use
catch (error: unknown)— nevercatch (error: any) - All logging goes to
stderr— stdio servers must never write to stdout - Tool errors return
isError: true
Build
npm run buildmust pass with zero errors before any commitnpm run testmust pass all parser tests- Output goes to
build/(gitignored)
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 · 70 lines · 776 tokens per session scan A f70708732d2e
evm-agent-toolkit AGENTS.md is an instructions file published in the GitHub repository 0xendale/evm-agent-toolkit (1 stars, last pushed 1mo ago), licensed MIT. It adds 776 tokens to every session, about $0.0039 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
evmole AGENTS.md
Instructions for cdump/evmole: EVMole extracts structured facts from deployed EVM runtime bytecode.
nft-mint-agent AGENTS.md
Instructions for dhasap/nft-mint-agent, covering agents.md, your job, pick the path (decision tree), how to call the tools and hard rules.
mcp-tenderly CLAUDE.md
Claude Code instructions for py-zoid/mcp-tenderly, covering mcp-tenderly, commands, layout, constraints worth knowing before you change anything and testing against real tenderly.
foundry-template CLAUDE.md
Instructions for PaulRBerg/foundry-template, a project described as: Foundry-based template for developing Solidity smart contracts.
prb-math AGENTS.md
Instructions for PaulRBerg/prb-math, covering prbmath, stack, structure, commands and development.
walletbeat AGENTS.md
Instructions for walletbeat/walletbeat, covering general walletbeat knowledge base, development commands, development, quality checks (run after code changes) and building.