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, extracting the connection string, and configuring Prisma 7 correctly. This Skill automates that entire workflow through the Prisma Management API so your local project is connected and verified in one guided session. ## Core Features & Use Cases - Database Provisioning via API: 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, and configures prisma.config.ts and schema.prisma following Prisma 7 conventions. - End-to-End Verification: Runs a test connection script using the pg driver adapter to confirm the generated Prisma Client works before finishing. - Use Case: You start a new Node.js project and need a hosted Postgres database. The Skill provisions the database, wires up the connection string, runs the initial migration, and verifies connectivity without opening the Prisma Console. ## Quick Start Ask the agent to set up a new Prisma Postgres database for this project and connect it locally using your service token.