What problem does it solve? Setting up Prisma ORM with the correct database provider, connection string format, driver adapter, and client generation workflow is error-prone, especially with the differences between Prisma 6 and Prisma 7 and the special handling MongoDB requires. ## Core Features & Use Cases - Provider-Specific Guides: Step-by-step configuration for PostgreSQL, MySQL, SQLite, MongoDB, SQL Server, CockroachDB, and Prisma Postgres, including schema blocks, prisma.config.ts, and .env connection strings. - Driver Adapter Setup: Maps each database to the correct @prisma/adapter-* package and JS driver, with ready-to-use PrismaClient instantiation code. - Version Guardrails: Enforces the Prisma 7 SQL adapter workflow while keeping MongoDB projects on Prisma 6.x with prisma-client-js. - Use Case: When migrating a Next.js app from SQLite to PostgreSQL, follow the postgresql reference to update the datasource provider, install @prisma/adapter-pg, set DATABASE_URL, and regenerate the client. ## Quick Start Ask the AI to configure Prisma to connect to your PostgreSQL database using the correct driver adapter and connection string.