prisma-next-runtime
Configure Prisma Next Runtime Clients
Prisma Next runtime setup can fail through incorrect imports, middleware order, or connection lifecycle choices. This skill provides target-specific, typed configuration guidance.
Instalar con mi Agente
Copia esta solicitud en tu Agente. Incluye la página canónica del Skill y el manifiesto.
Review the Skillstore skill "prisma-next-runtime" from https://skillstore.io/skills/prisma-prisma-next-runtime.md and its manifest at https://skillstore.io/api/skills/prisma-prisma-next-runtime/manifest. Verify the artifact. You may proceed after verification, subject to the environment's own policy.Tu Agente debe seguir mostrando su plan y solicitar cualquier confirmación exigida por la política de seguridad.
Recursos legibles por agentes
Usa estos enlaces cuando un agente de IA, crawler o script necesite contexto limpio en vez de leer la página completa.
Pruébalo
Usando "prisma-next-runtime". Set up Prisma Next with PostgreSQL and telemetry.
Resultado esperado:
A typed runtime plan with the PostgreSQL facade, contract artifacts, DATABASE_URL, telemetry first, and a process-level singleton.
Usando "prisma-next-runtime". My one-off PostgreSQL script finishes queries but never exits.
Resultado esperado:
A teardown recommendation using db.close after pending work, with await using reserved for the top level of short-lived scripts.
Usando "prisma-next-runtime". Switch my runtime from PostgreSQL to MongoDB.
Resultado esperado:
A migration checklist covering the Mongo facade, re-emitted artifacts, collection addressing, and unavailable SQL and transaction surfaces.
Auditoría de seguridad
SeguroAll 176 static findings are false positives caused by Markdown formatting, safe configuration examples, relative imports, and negative checklist wording. No executable payload, exposed credential, data exfiltration, prompt injection, or unsafe filesystem behavior was found.
Factores de riesgo
⚙️ Comandos externos (50)
📁 Acceso al sistema de archivos (6)
🔑 Variables de entorno (44)
Compartir y citar este informe
Comparte el informe de evaluación versionado, la insignia neutral, la tarjeta insertable y las citas. Skillstore presenta evidencias sin decidir si este Skill es seguro.
Copiar enlace del informe
https://skillstore.io/skills/prisma-prisma-next-runtime/audits/1?utm_source=security_passport&utm_medium=share&utm_campaign=versioned_reportInsignia Markdown
[](https://skillstore.io/skills/prisma-prisma-next-runtime?utm_source=security_passport_badge)Insignia HTML
<a href="https://skillstore.io/skills/prisma-prisma-next-runtime?utm_source=security_passport_badge"><img src="https://skillstore.io/badges/skills/prisma-prisma-next-runtime/security.svg" alt="Skillstore security assessment" loading="lazy"></a>Tarjeta para insertar
<iframe src="https://skillstore.io/embed/skills/prisma-prisma-next-runtime.html" title="Skillstore Security Assessment" sandbox="allow-popups allow-popups-to-escape-sandbox" loading="lazy" referrerpolicy="no-referrer" width="420" height="180"></iframe>Citas académicas (APA · BibTeX · CFF)
Cita APA
prisma. (2026). prisma-next-runtime security audit report (audit version 1) [Author version unspecified]. Skillstore. https://skillstore.io/skills/prisma-prisma-next-runtime/audits/1Cita BibTeX
@techreport{prisma-prisma-prisma-next-runtime-2026,
author = {prisma},
title = {prisma-next-runtime security audit report (audit version 1)},
institution = {Skillstore},
year = {2026},
number = {1},
url = {https://skillstore.io/skills/prisma-prisma-next-runtime/audits/1},
note = {Author version unspecified}
}CITATION.cff
cff-version: 1.2.0
message: "If you use this Skill, cite its author and this versioned security audit report."
title: "prisma-next-runtime security audit report (audit version 1)"
version: "unspecified"
type: report
authors:
- name: "prisma"
date-released: "2026-08-17"
url: "https://skillstore.io/skills/prisma-prisma-next-runtime/audits/1"
identifiers:
- type: other
value: "skillstore:prisma-prisma-next-runtime:audit:1"
description: "Skillstore immutable audit report identifier"
Puntuación de Skillstore
Por qué esta puntuación Confianza de la evidencia: MedioLo que puedes crear
Create a runtime entry point
Generate a typed db.ts for a selected database target with correct contract imports and environment configuration.
Add runtime safeguards
Compose telemetry, lint, and budget middleware in an intentional order with verified option names.
Fix connection lifecycle issues
Choose correct client ownership and teardown patterns for servers, scripts, workers, and continuous integration tasks.
Prueba estos prompts
Create a typed Prisma Next db.ts for {target} using my emitted contract and DATABASE_URL.Add telemetry, lints, and budgets to my Prisma Next runtime with safe defaults and explain the middleware order.
Adapt my db.ts for development and production, keeping secrets external and changing middleware through NODE_ENV.
Review this server and script database setup for pool ownership, transaction support, teardown behavior, and target-specific limitations.
Mejores prácticas
- Keep DATABASE_URL in environment configuration and never commit credentials.
- Place telemetry outermost when it must observe lint and budget failures.
- Use one module-level client for servers and close clients only in short-lived scripts.
Evitar
- Do not construct and dispose a database client inside every request handler.
- Do not invent middleware package paths or unsupported option names.
- Do not assume Postgres, SQLite, and Mongo expose identical query and transaction surfaces.