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 provides a complete step-by-step migration path. ## Core Features & Use Cases - Schema and Generator Migration: Switch from prisma-client-js to the prisma-client generator with required output paths, moduleFormat options, 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: A Next.js app on Prisma v6 with Neon Postgres needs to upgrade to v7; follow the guide to install @prisma/adapter-pg, update the generator block, create prisma.config.ts, and fix all client imports. ## Quick Start Ask the assistant to upgrade your Prisma v6 project to Prisma 7 and walk through the generator, driver adapter, and prisma.config.ts changes.