What problem does it solve? Setting up a new Prisma Postgres database involves multiple manual steps: authenticating with the Management API, choosing a region, provisioning a project, extracting the connection string, and configuring Prisma 7 correctly in a local project. 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, polls until the database is ready, and extracts the direct connection string. - Prisma 7 local configuration: Installs required packages, writes DATABASE_URL to .env, configures prisma.config.ts with the pg driver adapter, and runs migrations with client generation. - Connection verification: Runs a test script against the database to confirm the setup 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, wires up the schema, runs the initial migration, and verifies connectivity. ## Quick Start Ask the agent to set up a new Prisma Postgres database and connect it to this project, providing your workspace service token if you have one.