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, extracting the connection string, and configuring Prisma 7 client code correctly. This Skill automates that entire workflow end-to-end. ## Core Features & Use Cases - Database Provisioning via Management API: Authenticate with a service token, list available regions, create a project with a database, and poll until the database status is ready. - Local Project Configuration: Install required packages (prisma, @prisma/client, @prisma/adapter-pg, pg, dotenv), write the direct connection string to .env, and configure prisma.config.ts for Prisma 7. - Schema and Migration Setup: Generate a starter schema or build one from a natural-language description, then run prisma migrate dev and verify the connection with a test script. - Use Case: A developer starting a new Node.js microservice asks to "set up a database" and receives 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.