evoke AGENTS.md

evoke AGENTS.md is an instructions file for Codex, OpenCode from cheeseburgertony/evoke. It costs 937 tokens per session, scanned A, original, MIT.

A project guide named AGENTS.md for Evoke, an AI platform that turns written app descriptions into web applications. It documents the project structure, development commands, build process, database tasks, and main code-generation flow.

In plain words
What is it for?
Use it when developing or maintaining Evoke, including starting the development server, building, linting, managing Prisma database code, and understanding its agent and sandbox workflow.
Why use it?
It gives coding agents the context and commands needed to work in the repository. This reduces guesswork about how the project is built, tested, and run.

Instructions file for CodexOpenCode

Install

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.

agentmods
npx agentmods add instructions/cheeseburgertony/evoke/agents-md
Clone the repo
git clone --depth 1 https://github.com/cheeseburgertony/evoke

Made for: Codex, OpenCode.

Wrote 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.

agentmods badge for evoke AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/cheeseburgertony/evoke/agents-md.svg)](https://agentmods.dev/instructions/cheeseburgertony/evoke/agents-md)
Your own site
<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>
Per session 937 This file is loaded in full into every session.
When invoked 937 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 5d ago against content hash 251628920ee3, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

Origin

Copies of this mod

1 near-identical copy found in the catalogue:

AGENTS.md · 78 lines

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

  1. User describes app → tRPC mutation creates project + sends Inngest event
  2. Inngest AI agent generates code using tools (terminal, createOrUpdateFiles, readFiles)
  3. E2B sandbox executes code with hot reload
  4. SSE streams real-time progress to frontend
  5. Fragment saved with generated files and sandbox URL

Directory Structure

  • src/modules/ - Feature modules (home, messages, projects, usage). Each module has server/procedures.ts for tRPC routes and ui/ for React components
  • src/trpc/ - tRPC setup. init.ts defines context and auth middleware. Routers combined in routers/_app.ts
  • src/inngest/ - AI agent orchestration. functions.ts contains the main code generation agent with tools
  • src/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.

Read the full file on GitHub · 78 lines

Changes

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.

  1. 5d ago First seen · 78 lines · 937 tokens per session scan A 251628920ee3

Subscribe to this mod's changes

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.

Related

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.

module-federation/core · 3,933 tokens

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.

mastra-ai/mastra · 411 tokens

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.

thedaviddias/souls-directory · 1,675 tokens

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.

agustinusnathaniel/nextarter-tailwind · 1,839 tokens

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.

agentgram/agentgram · 4,467 tokens

catatz AGENTS.md

AGENTS.md instructions for kupzed/catatz, covering catatz - codex operating instructions, origin, source of truth, ecc workflow overlay and design contract.

kupzed/catatz · 2,814 tokens