What problem does it solve? Setting up and managing Prisma Postgres databases involves multiple workflows—Console UI, CLI provisioning, and programmatic APIs—and choosing the wrong path wastes time or breaks automation. This Skill consolidates the correct commands, flags, and integration patterns for each workflow. ## Core Features & Use Cases - Instant CLI Provisioning: Spin up temporary databases with npx create-db, control regions, TTL, JSON output, and write connection strings directly to .env files. - Programmatic Management: Use the Prisma Management API with service tokens or OAuth, or the typed @prisma/management-api-sdk for token refresh and endpoint calls. - Project Linking & Connections: Link existing databases with prisma postgres link, configure direct TCP connections with sslmode=require, and choose between @prisma/adapter-pg and serverless drivers. - Use Case: You are bootstrapping a CI preview environment. Run npx create-db@latest --json --ttl 2h to provision a temporary database, capture the connection string, and let it auto-delete after the pipeline finishes. ## Quick Start Ask the assistant to provision a new Prisma Postgres database in a specific region and write the connection string into your project's .env file.