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 verified, working database connection without reading API docs. ## Core Features & Use Cases - End-to-end provisioning: Authenticates with a service token, lists available regions, creates a project with a database, and polls until the database status is ready. - Prisma 7 project configuration: Installs required packages, writes the direct connection string to .env, scaffolds schema.prisma and prisma.config.ts, and runs the initial migration. - Connection verification: Generates and runs a test script using the @prisma/adapter-pg driver adapter to confirm the client connects before finishing. - Use Case: You just created a new Next.js app and need a Postgres database. Ask the agent to set up Prisma Postgres, pick a region from the interactive menu, and receive a migrated schema plus a verified DATABASE_URL in minutes. ## Quick Start Set up a new Prisma Postgres database for this project and connect it locally using my service token.