What problem does it solve? Setting up a new Prisma Postgres database involves multiple manual steps: creating a project through the Management API, choosing a region, extracting the right connection string, configuring Prisma 7's new client adapter pattern, and verifying the connection. This Skill automates that entire provisioning and local configuration workflow. ## 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 (prisma, @prisma/client, @prisma/adapter-pg, pg, dotenv), writes DATABASE_URL to .env, and sets up prisma.config.ts following Prisma 7 conventions. - Schema and verification workflow: Offers starter schema options, runs prisma migrate dev, and executes a test-connection script to confirm end-to-end connectivity. - Use Case: A developer starting a new Next.js app asks the agent to "set up a Prisma Postgres database" and receives a fully provisioned database, configured schema, generated client, and verified connection without touching the Console UI. ## Quick Start Set up a new Prisma Postgres database for this project and connect it locally using my service token.