What problem does it solve? Setting up and managing Prisma Postgres databases involves multiple surfaces—Console, CLI, REST API, and SDK—and choosing the wrong workflow wastes time or breaks automation. This Skill provides structured guidance for every provisioning and management path. ## Core Features & Use Cases - Instant CLI Provisioning: Create temporary databases with npx create-db using flags like --ttl, --region, --json, and --env for CI-friendly output. - Programmatic Management: Use the Management API with service tokens or OAuth, or the typed @prisma/management-api-sdk with token refresh handling. - Project Linking & Connections: Link existing databases with prisma postgres link, configure direct TCP connections, and choose the right adapter (@prisma/adapter-pg vs @prisma/adapter-ppg). - Use Case: A backend developer needs a Postgres database for a CI preview environment. Run npx create-db@latest --json --ttl 2h to get a machine-readable connection string that auto-deletes after two hours. ## Quick Start Ask the assistant to create a temporary Prisma Postgres database in a specific region and write the connection string to your .env file.