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 you through every required migration 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 installation and configuration for PostgreSQL, MySQL, SQLite, SQL Server, Neon, 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 handle removed CLI flags and metrics. - Use Case: You upgrade a Next.js app to Prisma 7 and hit "Cannot find module" errors; this Skill walks you through setting the generator output path, creating prisma.config.ts, installing @prisma/adapter-pg, and fixing imports. ## Quick Start Ask the assistant to upgrade my Prisma project from v6 to v7 and fix any resulting errors.