What problem does it solve? Setting up a new Prisma Postgres database involves multiple manual steps: creating a service token, choosing a region, provisioning a project through the Management API, wiring the connection string into your local environment, and configuring Prisma 7's new client adapter pattern. This Skill automates that entire workflow end-to-end. ## Core Features & Use Cases - API-driven provisioning: Creates projects and databases through the Prisma Management API, including region selection, provisioning status polling, and named connections. - Local project configuration: Installs required packages, writes the direct connection string to .env, scaffolds prisma/schema.prisma and prisma.config.ts, and runs the initial migration. - Prisma 7 client setup: Enforces the new driver adapter pattern (pg.Pool + PrismaPg adapter) and verifies the connection with a test script. - Use Case: You start a new Node.js project and say "set up a database" — the Skill provisions a Prisma Postgres instance in your chosen region, configures your project, runs the first migration, and confirms connectivity. ## Quick Start Ask the agent to set up a new Prisma Postgres database for this project and connect it locally using your service token.