What problem does it solve? Setting up Prisma ORM with the correct database provider, connection string, driver adapter, and client generation involves many version-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 references for PostgreSQL, MySQL, SQLite, MongoDB, SQL Server, CockroachDB, and Prisma Postgres. - Driver Adapter Configuration: Maps each database to the correct @prisma/adapter-* package and JS driver, with ready-to-use PrismaClient instantiation code. - Version Guardrails: Clarifies that MongoDB projects should stay on Prisma 6.x with prisma-client-js, while SQL providers use the Prisma 7 prisma.config.ts workflow. - Use Case: When initializing a new project with PostgreSQL, follow the reference to set the datasource provider, configure DATABASE_URL in prisma.config.ts, install @prisma/adapter-pg, and generate the client with an explicit output path. ## Quick Start Ask the assistant to configure Prisma with your chosen database, for example: set up Prisma with PostgreSQL including the driver adapter and client generation.