What problem does it solve? Setting up a new Prisma Postgres database involves multiple manual steps: creating a project, choosing a region, obtaining a connection string, configuring Prisma 7, and verifying connectivity. This Skill automates that entire provisioning workflow through the Prisma Management API. ## Core Features & Use Cases - Automated Database Provisioning: Creates a Prisma Postgres project and database via the Management API, with interactive region selection and polling until the database is ready. - Prisma 7 Project Configuration: Installs required packages, writes the direct connection string to .env, configures prisma.config.ts, and runs migrations with client generation. - Connection Verification: Runs an end-to-end test script using the @prisma/adapter-pg driver adapter to confirm the database connection works. - Use Case: You are starting a new Node.js app and need a hosted Postgres database. Ask the agent to set up Prisma Postgres, and it provisions the database, configures your project, and verifies the connection in one flow. ## Quick Start Set up a new Prisma Postgres database for this project and connect it to my app.