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/kimjbstar/prisma-class-generator/claude-mdgit clone --depth 1 https://github.com/kimjbstar/prisma-class-generatorWrote 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/kimjbstar/prisma-class-generator/claude-md)<a href="https://agentmods.dev/instructions/kimjbstar/prisma-class-generator/claude-md"><img src="https://agentmods.dev/badge/instructions/kimjbstar/prisma-class-generator/claude-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.1 | $0.02495 | $0.02495 |
| Opus 5 | $0.01247 | $0.01247 |
| Sonnet 5 | $0.00499 | $0.00499 |
| Haiku 4.5 | $0.00249 | $0.00249 |
Grade C, and why
prisma-class-generator CLAUDE.md scanned grade C with 1 finding 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.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
npm run build # rm -rf dist && tsc — always clean-builds, never leaves stale output How it starts
The opening of the file, as written. The whole thing — 152 lines — stays where its author put it; the contents beside it link to each section on GitHub.
CLAUDE.md
Guidance for AI coding assistants (and human contributors) working in this repo. For what this package does and how to use it, see README.md — this file is about working on the generator itself. For the PR mechanics (checklist, what tends to get merged quickly), see CONTRIBUTING.md.
What this is
A Prisma generator (prisma-class-generator) that reads a schema's DMMF and emits one
TypeScript class per model/composite-type, decorated for @nestjs/swagger and/or
@nestjs/graphql. It runs as a subprocess Prisma's CLI spawns via the JSON-RPC generator
protocol (@prisma/generator-helper's generatorHandler), not as a library the user imports.
Architecture
src/
index.ts generatorHandler entry point (what Prisma's CLI actually spawns)
bin.ts CLI entry point (the "prisma-class-generator" bin)
generator.ts PrismaClassGenerator — orchestrates one full run()
convertor.ts PrismaConvertor — DMMF.Field -> FieldComponent/ClassComponent
components/ Class/Field/Decorator/Import/File components (string-template assembly)
templates/ `#!{PLACEHOLDER}` string templates the components fill in
This is deliberately a string-template pipeline, not an AST transform. It's simple to reason about at this size — don't reach for ts-morph or similar without a concrete reason.
Runtime dependencies are deliberately kept to two (@prisma/generator-helper, prettier) —
everything a user installs to run this generator. @prisma/internals is a devDependency on
purpose: the specs use its getDMMF, but it installs 28MB and prisma itself doesn't depend
on it (so it never dedupes), and the only two things the generator needed from it —
parseEnvValue and logger.info — are transcribed into util.ts. Before adding any runtime
import, check whether it's really worth what it costs a user; npm run verify:packed is what
catches a runtime import that only resolves because this repo has everything installed.
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.
- 6d ago First seen · 152 lines · 2,495 tokens per session scan C 40b098265d1c
prisma-class-generator CLAUDE.md is an instructions file published in the GitHub repository kimjbstar/prisma-class-generator (192 stars, last pushed 4d ago), licensed MIT. It adds 2,495 tokens to every session, about $0.0125 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
nestjs-starter copilot-instructions.md
Instructions for hmake98/nestjs-starter, covering nestjs starter — github copilot instructions, stack, directory layout, module wiring rules and guard order & auth decorators.
StateCore CLAUDE.md
Claude Code instructions for yul761/StateCore, covering statecore — claude context, what this is, commands, running locally and enable semantic retrieval (optional).
wasp CLAUDE.md
Claude Code instructions for wasp-lang/wasp, a project described as: The batteries-included full-stack framework for the AI era. Develop JS/TS web apps (React, Node.js, and Prisma) using declarative code that abstracts away complex full-stack features like auth, background jobs, RPC, email sending, end-to-end type…
Oficina AGENTS.md
AGENTS.md instructions for JoaoEquer/Oficina: Entry point for harnesses that read AGENTS.md (Codex, Cursor, OpenCode, Gemini CLI and similar).
vscode-schemaforge AGENTS.md
Instructions for Coding-Dev-Tools/vscode-schemaforge, covering vscode-schemaforge, purpose, build & test commands, architecture and conventions.
nestjs-starter prisma.instructions.md
Instructions for hmake98/nestjs-starter, a project described as: Production-ready NestJS boilerplate — JWT auth, Prisma, Redis, BullMQ, Swagger, i18n, and full AI developer workflows (Claude Code + GitHub Copilot) with spec-driven feature scaffolding.