What problem does it solve? Setting up Prisma ORM with the correct database provider, connection string, driver adapter, and client generator is error-prone, especially with the differences between Prisma 6 and Prisma 7 workflows. This Skill provides verified, provider-specific configuration guidance so you avoid misconfigured schemas, wrong adapters, and connection failures. ## 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 .env connection strings. - Driver Adapter Setup: Correct adapter and driver pairings (e.g., @prisma/adapter-pg with pg, @prisma/adapter-mariadb with mariadb) with instantiation examples for Prisma Client. - Version Guardrails: Clear rules for MongoDB projects to stay on Prisma 6.x with prisma-client-js instead of the Prisma 7 SQL adapter workflow. - Use Case: You are initializing a new Node.js API with PostgreSQL. Use this Skill to generate the correct datasource block, configure prisma.config.ts, install @prisma/adapter-pg, and instantiate Prisma Client with the adapter. ## 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.