What problem does it solve? Setting up Prisma with the correct database provider, connection string, driver adapter, and client generator 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 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: Keeps MongoDB projects on Prisma 6.x with prisma-client-js and prevents applying the Prisma 7 SQL adapter workflow to MongoDB. - Use Case: You are starting a new Node.js project on PostgreSQL. The skill gives you the datasource block, prisma.config.ts, DATABASE_URL format, the @prisma/adapter-pg setup, and the prisma generate workflow in one pass. ## Quick Start Ask the assistant to configure Prisma for your database, for example: set up Prisma with PostgreSQL including the driver adapter and client generation.