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 skills add andresquirogadev/skillsense --skill prismagit clone --depth 1 https://github.com/andresquirogadev/skillsenseWrote 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/skills/andresquirogadev/skillsense/prisma)<a href="https://agentmods.dev/skills/andresquirogadev/skillsense/prisma"><img src="https://agentmods.dev/badge/skills/andresquirogadev/skillsense/prisma/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/andresquirogadev/skillsense/prisma"><img src="https://agentmods.dev/badge/skills/andresquirogadev/skillsense/prisma.svg" alt="Reviewed on agentmods" width="80" 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.00535 |
| Opus 5 | $0.00000 | $0.00267 |
| Sonnet 5 | $0.00000 | $0.00107 |
| Haiku 4.5 | $0.00000 | $0.00053 |
Grade A, and why
prisma 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 9d 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.
How it starts
The opening of the file, as written. The whole thing — 46 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Prisma Skill
You are working with Prisma ORM. Apply these conventions.
Schema (schema.prisma)
- Use
@@map("snake_case_table")on models to keep DB tables in snake_case while Prisma models stay PascalCase. - Use
@map("snake_case_col")on fields for the same reason. - Always add
@@index([field])for columns used inWHERE,ORDER BY, or as foreign keys. - Use
@db.Textfor long strings; use@db.VarChar(255)for constrained strings on PostgreSQL. - Use
@updatedAtfor auto-updating timestamps. - Use
enumfor fixed value sets; map to DB enums or use a string with@db.VarChar.
Migrations
- Run
npx prisma migrate dev --name descriptive-nameduring development — generates SQL and applies it. - Run
npx prisma migrate deployin CI/production — nevermigrate devin production. - Never edit migration files by hand; instead, update schema and create a new migration.
- Use
npx prisma db pushfor rapid prototyping when migration history doesn't matter. - Introspect existing databases with
npx prisma db pull.
Prisma Client
- Instantiate a single PrismaClient and reuse it (module singleton pattern):
// lib/prisma.ts import { PrismaClient } from '@prisma/client'; const globalForPrisma = globalThis as unknown as { prisma: PrismaClient }; export const prisma = globalForPrisma.prisma ?? new PrismaClient(); if (process.env.NODE_ENV !== 'production') globalForPrisma.prisma = prisma; - Always call
$disconnect()in CLI scripts and tests; managed services handle it automatically. - Use
$transaction([…])for atomic operations or$transaction(async (tx) => { … })for interactive transactions.
Queries
- Use
selectto fetch only needed fields — never over-fetch entire records. - Use
includefor eager-loading relations; use nestedselectinsideincludeto limit relation fields. - Use
where: { id: { in: ids } }for bulk lookups. - Paginate with
skipandtake; use cursor-based pagination for large datasets.
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.
- 9d ago First seen · 46 lines · 0 tokens per session scan A bcfd01a43e33
prisma is a skill published in the GitHub repository andresquirogadev/skillsense (2 stars, last pushed 5mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 535 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-31.
Other skills, from other repositories
rework-rate
Measure and interpret PR rework rate — the emerging 5th DORA metric.
solr-extending
To build Solr plugins: SearchComponent, QParser, URP, DocTransformer.
solr-semantic-search
To build Solr phrase-tagging semantic search: concept tagging, taxonomy, graph paths.
My Skill
Content here.
solr-schema
To design and audit Solr schemas: field types, analyzers, docValues, solrconfig.
solr-query
To build and debug Solr queries: eDisMax, block join, JSON facets, kNN, explain.