What problem does it solve? Setting up Prisma ORM with a database involves provider-specific schema syntax, connection strings, driver adapters, and version constraints that differ across PostgreSQL, MySQL, SQLite, MongoDB, SQL Server, and CockroachDB. This Skill provides the correct configuration for each provider so you avoid misconfigured clients 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 JS driver, with instantiation examples for Prisma Client. - Version guardrails: Enforces the Prisma 7 SQL adapter workflow while keeping MongoDB projects on Prisma 6.x with prisma-client-js. - Use Case: You are switching a Next.js app from SQLite to PostgreSQL. The Skill gives you the new datasource block, the @prisma/adapter-pg setup, the DATABASE_URL format, and the regenerated Prisma Client wiring. ## Quick Start Ask the AI to configure Prisma to connect to your database, for example by saying "set up Prisma with PostgreSQL in my project".