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 guides the full migration so projects do not break. ## Core Features & Use Cases - Step-by-step migration path: Covers package updates, ESM or CommonJS module format selection, tsconfig changes, schema generator updates, and client instantiation with driver adapters. - Detailed reference guides: Seven reference files cover schema changes, driver adapters, ESM support, prisma.config.ts, environment variables, removed features, and Accelerate users. - Troubleshooting and edge cases: Addresses module resolution errors, SSL certificate issues, connection pool differences, and explicitly excludes MongoDB projects from the v7 path. - Use Case: A team upgrading a PostgreSQL-backed Node.js API to Prisma 7 follows the guide to install @prisma/adapter-pg, create prisma.config.ts, update imports to the generated client entrypoint, and replace Prisma.validator with TypeScript satisfies. ## Quick Start Ask the assistant to migrate your Prisma v6 project to Prisma 7 and walk through the generator, driver adapter, and config changes.