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/markeljan/web3gpt/agents-mdgit clone --depth 1 https://github.com/Markeljan/web3gptWrote 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/markeljan/web3gpt/agents-md)<a href="https://agentmods.dev/instructions/markeljan/web3gpt/agents-md"><img src="https://agentmods.dev/badge/instructions/markeljan/web3gpt/agents-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.02264 | $0.02264 |
| Opus 5 | $0.01132 | $0.01132 |
| Sonnet 5 | $0.00453 | $0.00453 |
| Haiku 4.5 | $0.00226 | $0.00226 |
Grade A, and why
web3gpt 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 — 138 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
Overview
Web3GPT is a single-app Next.js 16 project for AI-assisted smart contract development. The app combines:
- App Router pages and API routes
- AI SDK chat flows backed by OpenAI models
- GitHub authentication via Better Auth
- Wallet connectivity through Wagmi and RainbowKit
- Contract compilation/deployment helpers built on
solcandviem - Persistence in Vercel KV for users, chats, agents, deployments, and verification jobs
Primary product flows:
- Chat with built-in or user-created agents
- Deploy Solidity contracts to supported EVM testnets
- Persist chats for signed-in users and share published chats
- Run a Vercel cron to process contract verifications
Stack
- Runtime/package manager: Bun (
bun.lockis committed) - Framework: Next.js 16 App Router
- Language: TypeScript with strict mode
- UI: React 19, Tailwind CSS, Radix UI, shadcn/ui-style primitives
- AI: Vercel AI SDK (
ai,@ai-sdk/react,@ai-sdk/openai) - Auth:
better-authwith GitHub provider, stateless (cookie) sessions - Web3:
wagmi,viem,@rainbow-me/rainbowkit - Storage/services:
@vercel/kv, Vercel Analytics, Pinata - Lint/format: Ultracite/Biome
Common Commands
- Install:
bun install - Dev server:
bun dev - Build:
bun run build - Start production server:
bun run start - Typecheck:
bun run typecheck - Lint:
bun run lint - Format:
bun run format
Git hooks are managed by lefthook.yml. Pre-commit runs bunx ultracite fix on JS/TS/JSON/CSS files.
Environment
Copy from .env.example. Important groups:
- RPC and explorer access:
NEXT_PUBLIC_ALCHEMY_API_KEY,NEXT_PUBLIC_TENDERLY_API_KEY,BLOCKSCOUT_API_KEY,ETHERSCAN_API_KEY - Wallet connectivity:
NEXT_PUBLIC_WALLETCONNECT_PROJECT_ID - Auth:
AUTH_GITHUB_ID,AUTH_GITHUB_SECRET,AUTH_SECRET(Better Auth also acceptsBETTER_AUTH_GITHUB_ID,BETTER_AUTH_GITHUB_SECRET,BETTER_AUTH_SECRET) - AI providers:
OPENAI_API_KEY, optionalXAI_API_KEY,STABILITY_API_KEY - Persistence:
KV_REST_API_URL,KV_REST_API_TOKEN,KV_REST_API_READ_ONLY_TOKEN,KV_URL - Deployment/signing:
DEPLOYER_PRIVATE_KEY - Cron auth:
CRON_SECRET - IPFS uploads:
PINATA_JWTandNEXT_PUBLIC_IPFS_GATEWAY(PINATA_API_KEY/PINATA_API_SECRETare legacy and unused by the app)
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 · 138 lines · 2,264 tokens per session scan A 704fe4e50211
web3gpt AGENTS.md is an instructions file published in the GitHub repository Markeljan/web3gpt (116 stars, last pushed 9d ago), licensed MIT. It adds 2,264 tokens to every session, about $0.0113 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
tevm CLAUDE.md
Claude Code instructions for evmts/tevm, covering tevm monorepo commands and style guide, project overview, forking implementation, json-rpc support and commands.
evmole AGENTS.md
Instructions for cdump/evmole: EVMole extracts structured facts from deployed EVM runtime bytecode.
solidity-typescript-hardhat-template CLAUDE.md
Instructions for protokol/solidity-typescript-hardhat-template, covering claude.md — project instructions, project overview, key commands, solidity conventions and test conventions.
staking-modules AGENTS.md
AGENTS.md instructions for lidofinance/staking-modules, covering repository guidelines, project structure & module organization, build, test, and development commands, coding style & naming conventions and testing guidelines.
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.
staking-modules CLAUDE.md
Claude Code instructions for lidofinance/staking-modules, a project described as: Smart contracts for the staking modules of the Lido protocol.