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 a local project, and configuring Prisma 7's new client adapter pattern. This Skill automates that entire workflow end to end. ## Core Features & Use Cases - API-driven provisioning: Authenticates with a service token, lists available regions, creates a project with a database, and polls until the database status 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 prisma migrate dev. - Connection verification: Generates and runs a test script using the Prisma 7 pg adapter to confirm end-to-end connectivity before finishing. - Use Case: A developer starting a new Node.js app asks to "set up a database" and receives a fully provisioned Prisma Postgres instance with migrations, generated client, and a verified connection. ## Quick Start Ask the agent to set up a new Prisma Postgres database for this project and connect it locally using your workspace service token.