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 commands/hmake98/nestjs-starter/gen-prisma-modelgit clone --depth 1 https://github.com/hmake98/nestjs-starterWrote 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/commands/hmake98/nestjs-starter/gen-prisma-model)<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>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.00000 | $0.00448 |
| Opus 5 | $0.00000 | $0.00224 |
| Sonnet 5 | $0.00000 | $0.00090 |
| Haiku 4.5 | $0.00000 | $0.00045 |
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.
What it actually says
Add a new Prisma model to this codebase: $ARGUMENTS
Read these files first:
prisma/schema.prisma— existing schema conventionssrc/common/database/database.module.ts— where to register the new repositorysrc/common/database/interfaces/user.interface.ts— interface patternsrc/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:
-
Add the model to
prisma/schema.prismafollowing the conventions above -
Create
src/common/database/interfaces/<name>.interface.tsimport type { <Name> } from '@prisma/client'; export type <Name>Entity = <Name>; export interface Create<Name>Input { ... } export interface Update<Name>Input { ... } -
Create
src/common/database/repositories/<name>.repository.ts- Standard methods:
findById,findAll(with optional pagination),existsById,create,update,softDelete hardDeleteByIdfor test cleanup
- Standard methods:
-
Update
src/common/database/database.module.ts— add the new repository to bothprovidersandexports -
Run the migration command after schema changes:
npm run db:generateThen 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.
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 · 43 lines · 0 tokens per session scan A 61b35f78b2e0
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.
Other commands, from other repositories
validate-auth-schema
Check that the Drizzle schema in db/schema/ still satisfies what Better Auth expects. Better Auth derives its required tables from the enabled plugins, so the generated JSON — not the upstream docs — is the source of truth.
index-management
Create, inspect, and drop search indexes. Wait for indexing to complete after data changes. Indexes automatically track Redis keys matching a specified prefix.
aliases
Index aliases provide an indirection layer between your application and the actual index. You can point an alias to any index and swap it atomically, enabling zero-downtime reindexing.
db-migration
建立 Supabase migration,確保符合安全規範.
unfreeze
Command "unfreeze" from YuDefine/nuxt-supabase-starter, covering /unfreeze — 解凍路徑, 流程 and 輸出.
crud
Generates a complete CRUD domain in the house pattern (NestJS or Express + Prisma — picked by the project's real stack, multi-tenant).