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, and explicit environment loading, and this Skill guides you through each migration step without missing critical changes. ## Core Features & Use Cases - Schema and Generator Migration: Updates the generator block to prisma-client with required output paths and new generated entrypoints (client, browser, models, enums). - Driver Adapter Setup: Configures required adapters for PostgreSQL, MySQL, SQLite, Neon, SQL Server, and Prisma Postgres, including pool and SSL settings. - Config and Environment Migration: Creates prisma.config.ts, sets up explicit dotenv loading, and replaces removed features like middleware, metrics, and Prisma.validator. - Use Case: You upgrade a Node.js API to Prisma 7 and hit "Cannot find module" errors; this Skill walks you through fixing the generator output path, installing @prisma/adapter-pg, and updating client instantiation. ## Quick Start Ask the assistant to upgrade your project from Prisma 6 to Prisma 7 and fix any resulting errors.