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, installing Prisma 7 dependencies, configuring prisma.config.ts, and verifying the connection. This Skill automates that entire provisioning and local configuration workflow. ## Core Features & Use Cases - API-driven provisioning: 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 the required Prisma 7 packages, write the direct connection string to .env, scaffold schema.prisma and prisma.config.ts, and run the initial migration. - End-to-end verification: Generate and run a test-connection script using the pg driver adapter to confirm the database works before finishing. - Use Case: You start a new Node.js project and need a hosted Postgres database. The Skill creates the Prisma Postgres project, retrieves the direct connection string, configures Prisma 7 with ESM output, runs prisma migrate dev, and verifies connectivity in one guided flow. ## Quick Start Ask the agent to set up a new Prisma Postgres database for this project and connect it locally using your service token.