What problem does it solve? Upgrading from Prisma ORM v6 to v7 introduces breaking changes around the new prisma-client generator, required driver adapters, prisma.config.ts, explicit environment loading, and new generated client entrypoints, and this Skill guides the full migration. ## Core Features & Use Cases - Schema and Generator Migration: Switch from prisma-client-js to the prisma-client generator with a required output path and updated import entrypoints. - Driver Adapter Setup: Install and configure 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 and Prisma.validator. - Use Case: A team upgrading a PostgreSQL Node.js app to Prisma 7 follows the step-by-step guide to update packages, configure the pg adapter, create prisma.config.ts, and fix import errors after regeneration. ## Quick Start Ask the AI to upgrade your Prisma v6 project to Prisma 7 and walk through the generator, driver adapter, and prisma.config.ts changes.