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 correctly. This Skill automates that entire workflow end-to-end so you get a working, verified database connection without reading API docs. ## Core Features & Use Cases - Guided API provisioning: Authenticates with a service token, lists available regions as an interactive menu, creates a project with a database, and polls until the database status is ready. - Local project configuration: Installs required packages (prisma, @prisma/client, @prisma/adapter-pg, pg, dotenv), writes the direct connection string to .env, and sets up prisma.config.ts following Prisma 7 conventions. - Schema and migration workflow: Offers starter schema options, runs prisma migrate dev, and verifies the connection with a test script before finishing. - Use Case: You start a new Node.js project and say "set up a Prisma Postgres database for this app" — the Skill provisions the database, configures your project, runs the initial migration, and confirms the connection works. ## Quick Start Ask the assistant to set up a new Prisma Postgres database and connect it to this project, providing your workspace service token if you have one.