What problem does it solve? Setting up Prisma with the correct database provider, connection string format, driver adapter, and client generation workflow is error-prone, especially with the differences between Prisma 6 and Prisma 7 and between SQL and MongoDB setups. This Skill provides verified, provider-specific configuration guidance so you avoid misconfigured schemas, wrong adapters, and connection failures. ## Core Features & Use Cases - Provider-specific setup guides: Step-by-step configuration for PostgreSQL, MySQL, SQLite, MongoDB, SQL Server, CockroachDB, and Prisma Postgres, including schema blocks, prisma.config.ts, and .env connection strings. - Driver adapter selection: Maps each database to the correct @prisma/adapter-* package and underlying JS driver, with instantiation examples for Prisma Client. - Version guardrails: Keeps MongoDB projects on Prisma 6.x with prisma-client-js and prevents applying the Prisma 7 SQL adapter workflow where it does not belong. - Use Case: You are switching a Next.js app from SQLite to PostgreSQL. Use this Skill to update the datasource provider, install @prisma/adapter-pg, configure DATABASE_URL, and regenerate Prisma Client correctly. ## Quick Start Ask the AI to configure Prisma for your database, for example: set up Prisma with PostgreSQL including the driver adapter and client generation.