What problem does it solve? Upgrading from Prisma ORM v6 to v7 introduces breaking changes around the new prisma-client generator, mandatory driver adapters, prisma.config.ts, explicit environment loading, and new generated client entrypoints. This Skill provides a complete, step-by-step migration path so you avoid import errors, connection failures, and removed-feature regressions. ## Core Features & Use Cases - Schema and Generator Migration: Switch from prisma-client-js to the prisma-client generator with required output paths, ESM or CommonJS module formats, and new client/browser/models/enums entrypoints. - Driver Adapter Setup: Configure required adapters for PostgreSQL, MySQL, SQLite, Neon, SQL Server, and Prisma Postgres, including pool and SSL settings. - Config and Environment Migration: Create prisma.config.ts, load .env files explicitly with dotenv, and replace removed features like $use middleware, metrics, and Prisma.validator. - Use Case: Your Next.js app fails after running npm install prisma@7 with "Cannot find module" errors. Follow the skill to update the generator block, install @prisma/adapter-pg, create prisma.config.ts, and fix client imports. ## Quick Start Ask the AI to upgrade my project from Prisma 6 to Prisma 7 and fix all resulting errors.