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 your project, and configuring Prisma 7's new client adapter pattern. This Skill automates that entire workflow so you get a working, verified database connection without reading API docs. ## 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 the direct connection string to .env, and configures prisma.config.ts for Prisma 7. - Schema and migration setup: Offers a starter schema or generates one from a natural-language description, then runs prisma migrate dev to create migration history. - End-to-end verification: Runs a test-connection script using the PrismaPg adapter to confirm the database works before finishing. - Use Case: You just scaffolded 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 receive a verified DATABASE_URL plus a migrated schema in minutes. ## Quick Start Ask the agent to set up a new Prisma Postgres database for this project and connect it locally using your service token.