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 that entire workflow through the Prisma Management API. ## Core Features & Use Cases - Automated Provisioning: Creates a Prisma Postgres project and database via the Management API, handling region selection, provisioning polling, and connection string extraction. - Prisma 7 Local Configuration: Installs required packages, writes the direct connection string to .env, configures prisma.config.ts, and scaffolds the schema with migrations. - Connection Verification: Runs an end-to-end test script using the PrismaPg driver adapter to confirm the database connection 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 Prisma 7 with the correct adapter pattern, and verifies connectivity in one guided flow. ## Quick Start Ask the assistant to set up a new Prisma Postgres database for this project and connect it locally using your service token.