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 entire migration. ## Core Features & Use Cases - Step-by-Step Migration: Walks through package updates, ESM or CommonJS module format selection, TypeScript configuration, schema generator changes, and client instantiation. - Driver Adapter Setup: Covers required adapter installation and configuration for PostgreSQL, MySQL, SQLite, SQL Server, Neon, PlanetScale, and Prisma Postgres. - 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 NestJS project on Prisma 6 fails after upgrading packages with "Cannot find module" and missing adapter errors; follow the schema-changes and driver-adapters references to update the generator block, install @prisma/adapter-pg, and regenerate the client. ## Quick Start Ask the assistant to upgrade my project from Prisma 6 to Prisma 7 and fix the resulting generator, adapter, and import errors.