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: Creates a Prisma Postgres project and database through the Management API, handles region selection, and polls until the database is ready. - Local Project Configuration: Installs required packages, writes the direct connection string to .env, scaffolds prisma/schema.prisma and prisma.config.ts, and runs the initial migration. - Connection Verification: Generates and runs a test script using the Prisma 7 PrismaPg adapter to confirm the database connection works before finishing. - Use Case: You start a new Node.js project and say "set up a Prisma Postgres database for this app" — the Skill provisions the database, configures Prisma 7 correctly, runs the first migration, and verifies connectivity. ## Quick Start Set up a new Prisma Postgres database for this project and connect it to my local environment.