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 so you get a working, verified database connection without reading API docs. ## Core Features & Use Cases - End-to-end 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, writes DATABASE_URL to .env, scaffolds prisma/schema.prisma and prisma.config.ts, and runs the initial migration. - Prisma 7 client setup: Configures the pg driver adapter pattern and verifies the connection with a test script before finishing. - Use Case: You just created a new Node.js app and need a hosted Postgres database. Ask the agent to set up Prisma Postgres, pick a region from the interactive menu, and within minutes you have a migrated schema and a verified connection. ## Quick Start Set up a new Prisma Postgres database for this project and connect it locally using my service token.