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/cheeseburgertony/evoke/agents-mdgit clone --depth 1 https://github.com/cheeseburgertony/evokeWrote 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/cheeseburgertony/evoke/agents-md)<a href="https://agentmods.dev/instructions/cheeseburgertony/evoke/agents-md"><img src="https://agentmods.dev/badge/instructions/cheeseburgertony/evoke/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.00937 | $0.00937 |
| Opus 5 | $0.00468 | $0.00468 |
| Sonnet 5 | $0.00187 | $0.00187 |
| Haiku 4.5 | $0.00094 | $0.00094 |
Grade A, and why
evoke 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 5d 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.
Copies of this mod
1 near-identical copy found in the catalogue:
- evoke CLAUDE.md — 95% identical, 4 lines differ
How it starts
The opening of the file, as written. The whole thing — 78 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md
This file provides guidance to Codex (Codex.ai/code) when working with code in this repository.
Project Overview
Evoke is an AI-powered code generation platform that transforms natural language descriptions into working web applications. Users describe what they want to build, and AI agents generate and execute Next.js code in sandboxed environments.
Development Commands
# Development
npm run dev # Start Next.js dev server
# Build
npm run build # Production build
# Linting
npm run lint # Run ESLint
# Database
npx prisma generate # Generate Prisma client (runs automatically postinstall)
npx prisma db push # Push schema changes to database
npx prisma studio # Open Prisma Studio GUI
Architecture
Core Flow
- User describes app → tRPC mutation creates project + sends Inngest event
- Inngest AI agent generates code using tools (terminal, createOrUpdateFiles, readFiles)
- E2B sandbox executes code with hot reload
- SSE streams real-time progress to frontend
- Fragment saved with generated files and sandbox URL
Directory Structure
src/modules/- Feature modules (home, messages, projects, usage). Each module hasserver/procedures.tsfor tRPC routes andui/for React componentssrc/trpc/- tRPC setup.init.tsdefines context and auth middleware. Routers combined inrouters/_app.tssrc/inngest/- AI agent orchestration.functions.tscontains the main code generation agent with toolssrc/lib/- Utilities:ai-models.ts(model configs),sse-manager.ts(real-time updates),prisma.ts(db client)src/components/ui/- Shadcn/UI components (pre-installed, import from@/components/ui/*)prisma/schema.prisma- Database models: Project, Message, Fragment, Usage
Key Patterns
tRPC Routers: Feature modules export routers that are merged in src/trpc/routers/_app.ts. Use protectedProcedure for authenticated routes.
AI Models: Configured in src/lib/ai-models.ts. Multiple providers (Silicon, DeepSeek, LongCat, etc.) via OpenAI-compatible APIs. Add new models to AIModelIdType and aiModels array.
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.
- 5d ago First seen · 78 lines · 937 tokens per session scan A 251628920ee3
evoke AGENTS.md is an instructions file published in the GitHub repository cheeseburgertony/evoke (167 stars, last pushed 3mo ago), licensed MIT. It adds 937 tokens to every session, about $0.0047 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
core CLAUDE.md
Claude Code instructions for module-federation/core, covering claude task parallelization & development guidelines, core principles, maximum parallelization strategy, universal parallel task patterns and for any codebase task.
mastra AGENTS.md
AGENTS.md instructions for mastra-ai/mastra: Unless asked, don't inspect reference or modify examples. Use the most-specific AGENTS.md; for package work, read packages/ /AGENTS.md first.
souls-directory CLAUDE.md
Instructions for thedaviddias/souls-directory, covering claude.md — project context for ai assistants, project overview, tech stack, critical rules and database is convex.
nextarter-tailwind AGENTS.md
AGENTS.md instructions for agustinusnathaniel/nextarter-tailwind, covering next.js: always read docs before coding, ai agent guidance: nextarter-tailwind, 1. mental model for agents, implementation delegation and tooling strategy.
agentgram CLAUDE.md
Claude Code instructions for agentgram/agentgram, covering claude.md — agentgram development guide, project overview, tech stack, monorepo structure and core architecture patterns.
catatz AGENTS.md
AGENTS.md instructions for kupzed/catatz, covering catatz - codex operating instructions, origin, source of truth, ecc workflow overlay and design contract.