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 provides a complete migration guide so you avoid import errors, connection failures, and deprecated API usage after upgrading. ## Core Features & Use Cases - Step-by-step migration path: Covers package updates, ESM/CommonJS module format selection, tsconfig changes, schema generator block updates, and prisma.config.ts creation. - Driver adapter setup: Provides installation and configuration for PostgreSQL, MySQL, SQLite, SQL Server, Neon, PlanetScale, Turso, D1, 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 handle removed CLI flags and metrics. - Use Case: You upgrade a Node.js API to Prisma 7 and hit "Cannot find module" errors. Follow the schema-changes and driver-adapters references to fix the generator output path, install @prisma/adapter-pg, and update client instantiation. ## Quick Start Ask the AI to migrate your Prisma v6 project to v7, including updating the generator block, creating prisma.config.ts, and configuring a PostgreSQL driver adapter.