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 so you get a working database with correct credentials and connection strings. ## Core Features & Use Cases - Instant 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 (https://api.prisma.io/v1) or the typed @prisma/management-api-sdk with service tokens or OAuth for backend automation and multi-tenant onboarding. - Project Linking & Connections: Link existing databases with prisma postgres link, retrieve direct TCP or pooled endpoints, and choose the right adapter (@prisma/adapter-pg vs @prisma/adapter-ppg). - Use Case: You are building a CI preview pipeline. Use npx create-db@latest --json --ttl 2h to spin up an auto-expiring database per pull request, then claim it via the claim URL if it needs to persist. ## Quick Start Ask the assistant to create a new Prisma Postgres database in the us-east-1 region and write the connection string into your project's .env file.