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 produces misconfigured connections. This Skill provides structured guidance for every provisioning and management path. ## Core Features & Use Cases - Instant database provisioning: Create temporary or persistent Prisma Postgres databases with create-db, create-pg, or the @prisma/cli platform commands, including region selection, TTL, and JSON output for CI. - Programmatic management: Automate workspace, project, branch, and database operations through the Management API or the typed @prisma/management-api-sdk with service token or OAuth authentication. - Connection setup: Link existing projects with prisma postgres link, retrieve direct TCP or pooled connection strings, and choose the right driver adapter (@prisma/adapter-pg vs @prisma/adapter-ppg). - Use Case: A backend developer needs a Postgres database for a CI preview environment. They run npx create-db@latest --json --ttl 2h to get a connection string that auto-deletes after the pipeline finishes. ## Quick Start Ask the assistant to create a new Prisma Postgres database in a specific region and write the connection string into your project's .env file.