What problem does it solve? Setting up and managing Prisma Postgres databases involves multiple surfaces—Console, CLI tools, and APIs—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 databases with npx create-db (aliases create-pg, create-postgres), with flags for region, TTL, JSON output, and .env writing. - Programmatic management: Use the Management API or @prisma/management-api-sdk for workspace, project, branch, and database automation with service tokens or OAuth. - Project linking and connections: Link existing databases with prisma postgres link, retrieve direct TCP connection strings, and choose the right driver adapter (@prisma/adapter-pg vs @prisma/adapter-ppg). - Use Case: A developer needs a Postgres database for a CI preview environment. They run npx create-db@latest --ttl 2h --json to get a temporary database that auto-deletes, then wire the connection string into their pipeline. ## Quick Start Ask the assistant to create a new Prisma Postgres database using create-db and write the connection string into your project's .env file.