gen-prisma-model

gen-prisma-model is a command for Claude Code from hmake98/nestjs-starter. It costs 0 tokens per session (448 once invoked), scanned A, original, MIT.

A code-generation command for adding a Prisma database model to an existing TypeScript codebase. Prisma is a tool that describes database tables in a schema and generates code for working with them.

In plain words
What is it for?
It is for adding the model to the Prisma schema and creating the matching entity interfaces and repository files required by the codebase.
Why use it?
It reduces the chance that a new model will ignore the project's naming, soft-delete, repository, interface, or enum conventions.

Command for Claude Code

Written for Claude Code: $ARGUMENTS substitution.

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 commands/hmake98/nestjs-starter/gen-prisma-model
Clone the repo
git clone --depth 1 https://github.com/hmake98/nestjs-starter

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 gen-prisma-model

README.md
[![agentmods](https://agentmods.dev/badge/commands/hmake98/nestjs-starter/gen-prisma-model.svg)](https://agentmods.dev/commands/hmake98/nestjs-starter/gen-prisma-model)
Your own site
<a href="https://agentmods.dev/commands/hmake98/nestjs-starter/gen-prisma-model"><img src="https://agentmods.dev/badge/commands/hmake98/nestjs-starter/gen-prisma-model.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 448 The whole file, excluding the scripts and references it only reads on demand.
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.1 $0.00000 $0.00448
Opus 5 $0.00000 $0.00224
Sonnet 5 $0.00000 $0.00090
Haiku 4.5 $0.00000 $0.00045

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

Security

Grade A, and why

gen-prisma-model 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.

.claude/commands/gen-prisma-model.md · 43 lines

What it actually says

Add a new Prisma model to this codebase: $ARGUMENTS

Read these files first:

  • prisma/schema.prisma — existing schema conventions
  • src/common/database/database.module.ts — where to register the new repository
  • src/common/database/interfaces/user.interface.ts — interface pattern
  • src/common/database/repositories/user.repository.ts — repository pattern

Follow these conventions from the existing schema:

  • Field names in camelCase, mapped to snake_case with @map("snake_case")
  • All models have: id String @id @default(uuid()), createdAt, updatedAt @updatedAt, deletedAt DateTime? for soft delete
  • Table names use @@map("plural_snake_case")
  • Enums defined in the schema and re-exported from src/common/database/enums/

Do all of the following:

  1. Add the model to prisma/schema.prisma following the conventions above

  2. Create src/common/database/interfaces/<name>.interface.ts

    import type { <Name> } from '@prisma/client';
    export type <Name>Entity = <Name>;
    export interface Create<Name>Input { ... }
    export interface Update<Name>Input { ... }
    
  3. Create src/common/database/repositories/<name>.repository.ts

    • Standard methods: findById, findAll (with optional pagination), existsById, create, update, softDelete
    • hardDeleteById for test cleanup
  4. Update src/common/database/database.module.ts — add the new repository to both providers and exports

  5. Run the migration command after schema changes:

    npm run db:generate
    

    Then remind me to run:

    npm run db:migrate -- --name <descriptive_migration_name>
    

If any new enum is needed, also create src/common/database/enums/<name>.enum.ts re-exporting from @prisma/client.

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 · 43 lines · 0 tokens per session scan A 61b35f78b2e0

Subscribe to this mod's changes

gen-prisma-model is a command published in the GitHub repository hmake98/nestjs-starter (61 stars, last pushed 3mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 448 tokens. 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.