What problem does it solve? Setting up Prisma with the correct database provider, connection string, driver adapter, and client generation 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 references for PostgreSQL, MySQL, SQLite, MongoDB, SQL Server, CockroachDB, and Prisma Postgres. - Driver Adapter Configuration: Correct adapter and driver pairings for each database, including edge/serverless options like Turso and Prisma Postgres serverless. - Version Guidance: Clear rules for keeping MongoDB projects on Prisma 6.x while SQL providers use the Prisma 7 adapter workflow. - Use Case: When initializing a new Node.js API with PostgreSQL, follow the reference to write the schema datasource block, configure prisma.config.ts, set DATABASE_URL, install @prisma/adapter-pg, and instantiate PrismaClient correctly. ## Quick Start Ask the AI to configure Prisma with PostgreSQL in your project, including the schema datasource, environment variable, driver adapter, and Prisma Client generation.