What problem does it solve? Setting up Prisma with the correct database provider, connection string, driver adapter, and client generator involves many provider-specific details that are easy to get wrong, especially with the differences between Prisma 6 and Prisma 7 workflows. ## Core Features & Use Cases - Provider-Specific Guides: Step-by-step setup for PostgreSQL, MySQL, SQLite, MongoDB, SQL Server, CockroachDB, and Prisma Postgres, including schema blocks, prisma.config.ts, and connection string formats. - Driver Adapter Setup: Correct adapter and driver pairings for each database (e.g., @prisma/adapter-pg with pg, @prisma/adapter-mariadb with mariadb) with instantiation examples. - Version Guardrails: Clear guidance that MongoDB projects must stay on Prisma 6.x with prisma-client-js and must not adopt the Prisma 7 SQL adapter workflow. - Use Case: When scaffolding a new Next.js app on Neon Postgres, follow the PostgreSQL reference to write the datasource block, set DATABASE_URL, install @prisma/adapter-pg, and generate a working Prisma Client in minutes. ## Quick Start Ask the AI to configure Prisma for your database, for example: "Set up Prisma with PostgreSQL using a driver adapter and generate the client."