What problem does it solve? Setting up and managing Prisma Postgres databases involves multiple surfaces — the Prisma Console, the create-db CLI, the Management API, and its TypeScript SDK — and choosing the right workflow for each scenario is confusing without consolidated guidance. ## Core Features & Use Cases - Instant Provisioning: Create temporary or persistent databases with npx create-db, including region selection, TTL, JSON output, and .env writing. - Programmatic Management: Automate workspace, project, branch, and database operations through the Management API with service tokens or OAuth 2.0. - Typed SDK Integration: Use @prisma/management-api-sdk for typed endpoint calls with OAuth token refresh and storage. - Use Case: A backend engineer building a multi-tenant SaaS needs to provision an isolated Postgres database per customer; the skill guides them through Management API authentication, database creation endpoints, and one-time connection string handling. ## Quick Start Ask the assistant to provision a new Prisma Postgres database with create-db and write the connection string into your project's .env file.