evoke CLAUDE.md

evoke CLAUDE.md is an instructions file for Claude Code from cheeseburgertony/evoke. It costs 938 tokens per session, scanned A, a copy of evoke AGENTS.md, MIT.

A project guide for Evoke, an AI-powered platform that turns written app descriptions into web applications. It documents the project structure, development commands, architecture, database work, and build process.

In plain words
What is it for?
Use it when developing, building, linting, or changing the database and code-generation workflow in the Evoke project.
Why use it?
Without the guide, an agent may not know how Evoke is organised or which commands and services are involved. It provides the repository-specific information needed to make and check changes.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: mentions CLAUDE.md; mentions Claude Code.

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/claude-md
Clone the repo
git clone --depth 1 https://github.com/cheeseburgertony/evoke

Made for: Claude Code.

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 CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/cheeseburgertony/evoke/claude-md.svg)](https://agentmods.dev/instructions/cheeseburgertony/evoke/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/cheeseburgertony/evoke/claude-md"><img src="https://agentmods.dev/badge/instructions/cheeseburgertony/evoke/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 938 This file is loaded in full into every session.
When invoked 938 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin 95% copy Near-identical to another mod 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.1 $0.00938 $0.00938
Opus 5 $0.00469 $0.00469
Sonnet 5 $0.00188 $0.00188
Haiku 4.5 $0.00094 $0.00094

Measured 6d ago against content hash 358beeacd315, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

evoke 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 6d 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

This is a copy

95% identical to evoke AGENTS.md — 4 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

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

CLAUDE.md

This file provides guidance to Claude Code (claude.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. 6d ago First seen · 78 lines · 938 tokens per session scan A 358beeacd315

Subscribe to this mod's changes

evoke CLAUDE.md is an instructions file published in the GitHub repository cheeseburgertony/evoke (167 stars, last pushed 3mo ago), licensed MIT. It adds 938 tokens to every session, about $0.0047 per session on Opus 5. A static security scan graded it A with 0 findings. It is 95% identical to evoke AGENTS.md, differing in 4 lines, and is treated as a copy.

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