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 for PostgreSQL, MySQL, SQLite, MongoDB, SQL Server, CockroachDB, and Prisma Postgres, including schema configuration, environment variables, and connection string formats. - Driver Adapter Setup: Instructions for installing and instantiating the correct driver adapter (such as @prisma/adapter-pg or @prisma/adapter-mariadb) for each SQL database. - Version Guidance: Clear rules on when to use Prisma 7's prisma.config.ts workflow versus staying on Prisma 6.x for MongoDB projects. - Use Case: When initializing a new Node.js project with PostgreSQL, follow the guide to write the schema datasource block, create prisma.config.ts, set DATABASE_URL, install @prisma/adapter-pg, and generate a working Prisma Client. ## Quick Start Ask the AI to configure Prisma with PostgreSQL in your project, including the schema, connection string, driver adapter, and client generation.