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, and this Skill guides the full migration without missing any step. ## Core Features & Use Cases - Step-by-step migration path: Covers package updates, ESM or CommonJS module format selection, TypeScript configuration, schema generator changes, and client instantiation. - Driver adapter setup: Provides configuration for PostgreSQL, MySQL, SQLite, Neon, SQL Server, PlanetScale, Turso, D1, and Prisma Postgres adapters. - Removed feature replacements: Shows how to replace $use middleware with Client Extensions, Prisma.validator with TypeScript satisfies, and removed CLI flags with prisma.config.ts options. - Use Case: A team upgrading a Next.js app to Prisma 7 hits "Cannot find module" errors after regenerating the client; the Skill walks them through fixing the generator output path, imports, and adapter instantiation. ## Quick Start Ask the assistant to upgrade my project from Prisma 6 to Prisma 7 and fix the resulting import and driver adapter errors.