What problem does it solve? Setting up and managing Prisma Postgres databases involves multiple workflows—Console UI, CLI provisioning, and programmatic APIs—and choosing the wrong path wastes time or breaks automation. This Skill provides structured guidance for every Prisma Postgres workflow so you pick the right tool for each scenario. ## Core Features & Use Cases - Instant CLI Provisioning: Spin up temporary databases with npx create-db, control regions, TTL, JSON output, and write DATABASE_URL directly to .env files. - Programmatic Management: Use the Management API with service tokens or OAuth 2.0, or the typed @prisma/management-api-sdk with token refresh for backend automation. - Project Linking & Connections: Link existing databases with prisma postgres link, configure direct TCP connections with sslmode=require, and choose between @prisma/adapter-pg and serverless drivers. - Use Case: You are building a multi-tenant SaaS and need to provision a fresh Postgres database per customer signup. Use the Management API SDK guidance to implement OAuth-based provisioning with automatic token refresh. ## Quick Start Ask the assistant to provision a new Prisma Postgres database in the eu-central-1 region and write the connection string into your project's .env file.