prisma-class-generator CLAUDE.md

prisma-class-generator CLAUDE.md is an instructions file for Claude Code from kimjbstar/prisma-class-generator. It costs 2,495 tokens per session, scanned C, original, MIT.

Repository instructions for a Prisma generator that reads a database schema and creates TypeScript classes for each data model. Prisma is a tool that works with databases, while NestJS Swagger and GraphQL are systems for describing and exposing APIs.

In plain words
What is it for?
Use them when changing schema-to-class generation, templates, decorators, imports, or the generator's command-line and Prisma entry points.
Why use it?
They explain the generator's internal parts and how Prisma starts it, which helps avoid treating it like an ordinary library.

Instructions file for Claude Code

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

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/kimjbstar/prisma-class-generator/claude-md
Clone the repo
git clone --depth 1 https://github.com/kimjbstar/prisma-class-generator

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 prisma-class-generator CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/kimjbstar/prisma-class-generator/claude-md.svg)](https://agentmods.dev/instructions/kimjbstar/prisma-class-generator/claude-md)
Your own site
<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>
Per session 2,495 This file is loaded in full into every session.
When invoked 2,495 The same file — it is already loaded in full.
Security scan C 1 finding. 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.1 $0.02495 $0.02495
Opus 5 $0.01247 $0.01247
Sonnet 5 $0.00499 $0.00499
Haiku 4.5 $0.00249 $0.00249

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

Security

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
CLAUDE.md · 152 lines

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.

Read the full file on GitHub · 152 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 · 152 lines · 2,495 tokens per session scan C 40b098265d1c

Subscribe to this mod's changes

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.

Related

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.

hmake98/nestjs-starter · 4,492 tokens

StateCore CLAUDE.md

Claude Code instructions for yul761/StateCore, covering statecore — claude context, what this is, commands, running locally and enable semantic retrieval (optional).

yul761/StateCore · 2,688 tokens

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…

wasp-lang/wasp · 3 tokens

Oficina AGENTS.md

AGENTS.md instructions for JoaoEquer/Oficina: Entry point for harnesses that read AGENTS.md (Codex, Cursor, OpenCode, Gemini CLI and similar).

JoaoEquer/Oficina · 662 tokens

vscode-schemaforge AGENTS.md

Instructions for Coding-Dev-Tools/vscode-schemaforge, covering vscode-schemaforge, purpose, build & test commands, architecture and conventions.

Coding-Dev-Tools/vscode-schemaforge · 313 tokens

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.

hmake98/nestjs-starter · 193 tokens