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 - Automated Provisioning: Creates a Prisma Postgres project and database through the Management API, including region selection and polling until the database status is ready. - Local Project Configuration: Installs required packages, writes the direct connection string to .env, scaffolds prisma.config.ts, and sets up the Prisma 7 ESM client with the pg driver adapter. - End-to-End Verification: Runs a test connection script against the live database to confirm everything works before finishing. - Use Case: You are starting 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 receive a migrated schema, generated client, and verified connection in minutes. ## Quick Start Set up a new Prisma Postgres database for this project and connect it locally using my service token.