What problem does it solve? Upgrading from Prisma ORM v6 to v7 introduces breaking changes across the generator, driver adapters, configuration, and module system, and missing any one of them leaves a project with import errors, connection failures, or a non-functional client. ## Core Features & Use Cases - Complete migration path: Covers the new prisma-client generator, required output paths, driver adapter setup for SQL providers, prisma.config.ts creation, and explicit dotenv loading. - Detailed reference guides: Seven focused references on schema changes, driver adapters, ESM/CommonJS support, config, environment variables, removed features, and Accelerate users. - Removed feature replacements: Shows how to replace $use() middleware with Client Extensions, Prisma.validator with TypeScript satisfies, and removed CLI flags with explicit commands. - Use Case: A team upgrades to Prisma 7 and hits "Cannot find module" errors after regenerating the client; the skill walks them 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 it will apply the schema, config, adapter, and import changes step by step.