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's new client adapter pattern. This Skill automates the entire provisioning and local connection workflow through the Prisma Management API. ## Core Features & Use Cases - Automated Provisioning: Creates a Prisma Postgres project and database via the Management API, handles region selection, and polls until the database status is ready. - Prisma 7 Configuration: Installs required packages, writes the direct connection string to .env, scaffolds prisma.config.ts, and sets up the pg driver adapter pattern correctly. - End-to-End Verification: Runs a test connection script to confirm the database works before finishing, with self-correction guidance for 401, 404, 422, and 429 API errors. - Use Case: You start a new Node.js project and need a hosted Postgres database. The Skill provisions the database, configures schema.prisma and prisma.config.ts, runs prisma migrate dev, and verifies connectivity in one guided flow. ## Quick Start Set up a new Prisma Postgres database for this project and connect it locally.