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 so projects do not break. ## Core Features & Use Cases - Step-by-Step Migration: Covers package updates, ESM/CommonJS module format selection, tsconfig changes, schema generator block updates, and prisma.config.ts creation. - Driver Adapter Setup: Provides installation and configuration for PostgreSQL, MySQL, SQLite, Neon, SQL Server, PlanetScale, Turso, D1, and Prisma Postgres adapters, including pool and SSL settings. - Removed Feature Replacements: Shows how to replace $use middleware with Client Extensions, Prisma.validator with TypeScript satisfies, and removed CLI flags with explicit commands. - Use Case: A team upgrading a Next.js app hits "Cannot find module" errors after installing Prisma 7; this Skill walks them through setting the generator output path, installing @prisma/adapter-pg, and updating client imports. ## Quick Start Ask the assistant to upgrade your project to Prisma 7 and fix any resulting errors using this migration guide.