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 project, and configuring Prisma 7's new client adapter pattern. This Skill automates that entire workflow end-to-end. ## Core Features & Use Cases - Automated Provisioning: Authenticates with a service token, lists available regions, creates a project with a database, and extracts the direct connection string via the Prisma 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: Guides schema definition (manual, starter blog schema, or natural-language description), runs migrations, and verifies the connection with a test script. - Use Case: You just scaffolded a new Node.js app and need a hosted Postgres database. Ask the agent to set up Prisma Postgres, pick a region from an interactive menu, and get a working, verified database connection in minutes. ## Quick Start Set up a new Prisma Postgres database for this project and connect it locally using my service token.