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 instantiation pattern. This Skill automates that entire workflow end to end. ## Core Features & Use Cases - API-driven provisioning: Authenticate with a service token, list available regions, and create a project with a database through the Prisma Management API. - Local project configuration: Install required packages, write the direct connection string to .env, and set up prisma.config.ts and schema.prisma following Prisma 7 conventions. - Schema and migration workflow: Generate a starter schema or one from a natural-language description, then run prisma migrate dev to create migration history. - Connection verification: Run a test script using the pg driver and @prisma/adapter-pg adapter to confirm the database works before finishing. - Use Case: A developer starting a new Node.js project asks to "set up a database" and gets a fully provisioned Prisma Postgres instance with migrations, a 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 service token.