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, extracting the connection string, and configuring Prisma 7 client code correctly. This Skill automates that entire workflow so a local project goes from zero to a verified database connection in one guided session. ## Core Features & Use Cases - API-driven provisioning: Authenticates with a service token, lists available regions, creates a project with a database, and polls until the database status is ready. - Local project configuration: Installs required npm packages, writes the direct connection string to .env, scaffolds prisma/schema.prisma and prisma.config.ts, and runs prisma migrate dev. - Prisma 7 client setup: Enforces the driver adapter pattern (pg.Pool + PrismaPg) and verifies the connection end-to-end with a test script. - Use Case: A developer starting a new Node.js app asks to "set up a database" — the Skill provisions a Prisma Postgres instance in their chosen region, configures the schema, runs the initial migration, and confirms connectivity. ## Quick Start Ask the assistant to set up a new Prisma Postgres database for this project and connect it locally using your service token.