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) for the Prisma 7 SQL workflow. - Prisma Client Generation: Instructions for the prisma-client generator with explicit output paths and single-instance client patterns. - Use Case: You are switching a project from SQLite to PostgreSQL. Use this Skill to update the datasource provider, install @prisma/adapter-pg, set the DATABASE_URL format, and regenerate Prisma Client without trial and error. ## Quick Start Ask the AI to configure Prisma with PostgreSQL in your project, including the schema datasource, connection string, driver adapter, and client generation.