From prisma
Guides Prisma Postgres database setup, provisioning, and management using Console, create-db CLI, Management API, and @prisma/management-api-sdk for programmatic workflows with service tokens or OAuth.
How this skill is triggered — by the user, by Claude, or both
Slash command
/prisma:prisma-postgresThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Guidance for creating, managing, and integrating Prisma Postgres across interactive and programmatic workflows.
Guidance for creating, managing, and integrating Prisma Postgres across interactive and programmatic workflows.
Reference this skill when:
create-db@prisma/management-api-sdk in TypeScript/JavaScript| Priority | Category | Impact | Prefix |
|---|---|---|---|
| 1 | CLI Provisioning | CRITICAL | create-db-cli |
| 2 | Management API | CRITICAL | management-api |
| 3 | Management API SDK | HIGH | management-api-sdk |
| 4 | Console and Connections | HIGH | console-and-connections |
create-db-cli - instant databases and CLI optionsmanagement-api - service token and OAuth API workflowsmanagement-api-sdk - typed SDK usage with token storageconsole-and-connections - Console operations and connection setupUse Prisma Console for manual setup and operations:
https://console.prisma.ioUse create-db when you need a database immediately:
npx create-db@latest
Aliases:
npx create-pg@latest
npx create-postgres@latest
For app integrations, you can also use the programmatic API (create() / regions()) from the create-db npm package.
Temporary databases auto-delete after ~24 hours unless claimed.
Use API endpoints on:
https://api.prisma.io/v1
Explore the schema and endpoints using:
https://api.prisma.io/v1/dochttps://api.prisma.io/v1/swagger-editorAuth options:
Install and use:
npm install @prisma/management-api-sdk
Use createManagementApiClient for existing tokens, or createManagementApiSdk for OAuth + token refresh.
Detailed guidance lives in:
references/console-and-connections.md
references/create-db-cli.md
references/management-api.md
references/management-api-sdk.md
Start with references/create-db-cli.md for fast setup, then switch to references/management-api.md or references/management-api-sdk.md when you need programmatic provisioning.
npx claudepluginhub pleaseai/claude-code-plugins --plugin prismaProvides fast reference for Prisma 5+ ORM: schema design, migrations, type-safe CRUD, relations, transactions, error handling, testing, and integrations with Supabase, PlanetScale, Neon for TypeScript/JavaScript database access.
Provisions instant temporary Postgres databases via Neon's Claimable Postgres (pg.new). Provides DATABASE_URL for prototyping, demos, tests without login or credit card.
Automates Prisma operations via Composio's Prisma toolkit through Rube MCP. Discovers tools, manages connections, and executes Prisma workflows.