What problem does it solve?
This Skill prevents broken builds and runtime failures when migrating a project from Prisma ORM v6 to v7 by providing a complete, breaking-changes-focused upgrade path.
Core Features & Use Cases
- End-to-end v6 → v7 Migration Guide: Covers generator changes, required output paths, new client entrypoints, and updated import/instantiation patterns.
- Driver Adapter Integration for SQL: Explains how to install and configure the correct
@prisma/adapter-* packages and how adapter requirements differ by provider and pooling behavior.
- ESM-first and Environment Loading Fixes: Addresses ESM/CommonJS compatibility via
moduleFormat = "cjs" and resolves the need for explicit .env loading using prisma.config.ts + dotenv.
- Use Case: When your application fails after upgrading Prisma (for example import errors, missing generated files, or connection/adapter misconfiguration), this Skill helps you identify the exact change causing it and apply the correct fix across schema, config, and runtime client code.
Quick Start
Ask the AI to produce a Prisma v7 upgrade plan for your stack (Node.js version, ESM vs CommonJS, database provider, and whether you use Accelerate) starting from your current generator block and prisma.config.ts status.