What problem does it solve? Setting up a new Prisma Postgres database involves multiple manual steps: creating a project in the Console, obtaining a connection string, installing the right Prisma 7 packages, configuring prisma.config.ts, and verifying the connection. This Skill automates that entire provisioning and connection workflow through the Prisma Management API. ## Core Features & Use Cases - Automated Database Provisioning: Creates a Prisma Postgres project and database via the Management API, including region selection and polling until the database status is ready. - Local Project Configuration: Installs required packages (prisma, @prisma/client, @prisma/adapter-pg, pg, dotenv), writes the direct connection string to .env, and configures prisma.config.ts for Prisma 7. - Schema and Migration Setup: Offers starter schemas or generates one from a natural-language description, then runs prisma migrate dev and verifies the connection end-to-end. - Use Case: You are starting a new Next.js app and need a hosted Postgres database. Ask the agent to set up Prisma Postgres, pick a region from the interactive menu, and get a working, verified database connection with migrations in minutes. ## Quick Start Set up a new Prisma Postgres database for this project and connect it locally using my service token.