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 a local project, and configuring Prisma 7's new client instantiation pattern. This Skill automates that entire workflow end-to-end. ## Core Features & Use Cases - API-driven provisioning: Authenticate with a service token, list available regions, and create a project with a database through the Prisma Management API, including polling until the database status is ready. - Local project configuration: Install required packages, write the direct connection string to .env, scaffold prisma/schema.prisma and prisma.config.ts, and run prisma migrate dev to create migration history and generate the client. - Prisma 7 client setup: Configure the pg driver adapter pattern (pg.Pool + PrismaPg + PrismaClient) and verify 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 database in your chosen region, configures your project, pushes a starter schema, and verifies the connection works. ## Quick Start Ask the AI to set up a new Prisma Postgres database for this project and connect it locally using your service token.