What problem does it solve? Setting up and managing Prisma Postgres databases involves multiple surfaces—Console, CLI, Management API, and SDK—and choosing the wrong workflow wastes time or breaks automation. This Skill provides structured guidance for every provisioning and connection path. ## Core Features & Use Cases - Instant CLI Provisioning: Create 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. - Connection & Linking Guidance: Link existing databases with prisma postgres link, configure direct TCP connections with sslmode=require, and choose between @prisma/adapter-pg and @prisma/adapter-ppg. - Use Case: A developer building a multi-tenant SaaS needs to provision a fresh Postgres database per customer signup. The Skill guides them to use the Management API with a service token, retrieve connection credentials, and construct the DATABASE_URL programmatically. ## Quick Start Ask the AI to provision a new Prisma Postgres database using create-db and write the connection string into your project's .env file.