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 you through each migration step without missing critical changes. ## Core Features & Use Cases - Step-by-Step Migration: Covers package updates, ESM/CommonJS module format selection, TypeScript configuration, schema generator changes, and client instantiation updates. - Driver Adapter Setup: Provides installation and configuration for PostgreSQL, MySQL, SQLite, Neon, SQL Server, and Prisma Postgres adapters, including pool and SSL settings. - Removed Feature Replacements: Shows how to replace $use middleware with Client Extensions, Prisma.validator with TypeScript satisfies, and removed CLI flags with prisma.config.ts equivalents. - Use Case: You upgrade a Node.js API to Prisma 7 and hit "Cannot find module" errors; the Skill walks you through setting the generator output path, installing @prisma/adapter-pg, creating prisma.config.ts, and regenerating the client. ## Quick Start Ask the assistant to upgrade my project from Prisma 6 to Prisma 7 and fix any resulting import or connection errors.