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 so you get a working, verified database connection without reading API docs. ## Core Features & Use Cases - Database Provisioning via Management API: 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 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 Migration Setup: Offers starter schemas or generates one from a natural-language description, then runs prisma migrate dev to create migration history and generate the client. - Connection Verification: Runs a test script against the database to confirm end-to-end connectivity before finishing. - Use Case: You are starting a new Node.js e-commerce backend and need a hosted Postgres database. The Skill provisions the database, configures your project, and verifies the connection in one guided flow. ## Quick Start Ask the agent to set up a new Prisma Postgres database for this project and connect it locally using your service token.