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: Authenticates with a service token, lists available regions, creates a project with a database, and extracts the direct connection string from the Management API. - Local project configuration: Installs required packages (prisma, @prisma/client, @prisma/adapter-pg, pg, dotenv), writes DATABASE_URL to .env, and sets up prisma.config.ts following Prisma 7 conventions. - Schema and verification workflow: Offers starter schema options, runs prisma migrate dev, and verifies the connection with a test script using the PrismaPg driver adapter. - Use Case: A developer starting a new Next.js app asks to "set up a database" — the Skill provisions a Prisma Postgres instance in their chosen region, configures the project, and confirms connectivity in minutes. ## Quick Start Set up a new Prisma Postgres database for this project and connect it locally using my workspace service token.