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. This Skill provides verified, provider-specific configuration guides so you avoid misconfigured schemas and broken client setups. ## Core Features & Use Cases - Provider-Specific Guides: Step-by-step setup for PostgreSQL, MySQL, SQLite, MongoDB, SQL Server, CockroachDB, and Prisma Postgres, including schema, config, and environment variable templates. - 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 Guidance: Clear rules for MongoDB projects to stay on Prisma 6.x and avoid the unsupported Prisma 7 SQL adapter path. - Use Case: You are migrating a Node.js app from SQLite to PostgreSQL. Use this Skill to update the datasource provider, rewrite the connection string, install @prisma/adapter-pg, and regenerate Prisma Client correctly. ## Quick Start Ask the AI to configure Prisma for your database, for example: set up Prisma with PostgreSQL using a driver adapter and generate the client.