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 guides you through the correct provisioning and management path for each scenario. ## Core Features & Use Cases - Instant Provisioning: Create temporary databases with npx create-db (aliases create-pg, create-postgres) using flags like --ttl, --json, --env, and --region. - Programmatic Management: Use the Management API at https://api.prisma.io/v1 or the typed @prisma/management-api-sdk with service tokens or OAuth for automation. - Project Linking & Connections: Wire existing databases to local projects with prisma postgres link, and configure direct TCP or serverless driver connections. - Use Case: A backend developer needs a throwaway Postgres database for a CI preview. They run npx create-db@latest --ttl 2h --json to get a connection string that auto-deletes after two hours. ## Quick Start Ask the AI to provision a new Prisma Postgres database using create-db and write the connection string into your project's .env file.