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. This Skill guides the full migration so projects avoid import errors, connection failures, and removed-feature regressions. ## Core Features & Use Cases - Schema and Generator Migration: Switch from prisma-client-js to the prisma-client generator with a required output path and new client, browser, models, and enums 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 with Client Extensions and satisfies. - Use Case: A team upgrading a Node.js API to Prisma 7 follows the step-by-step references to update package.json, tsconfig, the schema generator block, and client instantiation, then runs prisma generate to verify the migration. ## Quick Start Ask the assistant to upgrade your project from Prisma 6 to Prisma 7 and fix any resulting import or connection errors.