prisma-postgres

Provision and manage Prisma Postgres databases via Console, create-db, and Management API.

3|3|Updated Jun 1, 2026
One-click install
npx skills add https://github.com/lawalletio/lawallet-nwc --skill prisma-postgres-lawalletio
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: prisma-postgres
Source: https://github.com/lawalletio/lawallet-nwc/tree/main/.agents/skills/prisma-postgres
Command: npx skills add https://github.com/lawalletio/lawallet-nwc --skill prisma-postgres-lawalletio

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Prisma users often struggle to consistently provision, configure, and manage Postgres databases across multiple tools and APIs. This skill consolidates guidance for interactive Console work, CLI provisioning with create-db, and programmatic workflows via the Management API and its SDK, helping teams move from ad-hoc setups to repeatable, automated database provisioning.

Core Features & Use Cases

  • Guidance for creating and provisioning Prisma Postgres databases from Prisma Console and the CLI (create-db) for fast, temporary or long-lived environments.
  • Steps for linking local projects, retrieving and configuring direct connection strings (DATABASE_URL), and using the Management API and SDK for programmatic workflow automation.
  • Real-world usage: automate environment provisioning in CI, provision shared databases for multi-project workspaces, and integrate OAuth/token-based provisioning with service tokens.

Quick Start

Provision a database with create-db and wire the resulting DATABASE_URL into your Prisma project.

Frequently Asked Questions about prisma-postgres

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I provision a Prisma Postgres database using the command line?

Provision a Prisma Postgres database by running the create-db command, which generates a direct connection string. You then wire the resulting DATABASE_URL into your Prisma project to establish database connectivity.

What's the best way to automate Postgres database provisioning in CI pipelines?

Automate Postgres database provisioning in CI by using the Prisma Management API and SDK. This approach supports token-based authentication to programmatically create and manage environments without manual Console interaction.

How do I configure Prisma Postgres authentication for programmatic workflows?

Configure Prisma Postgres authentication for programmatic workflows by integrating OAuth or service tokens with the Management API. This secures automated provisioning and integration requests across your application ecosystem.

Can I use the Prisma Console to manage Postgres databases for multiple projects?

Yes, you can use Prisma Console to provision and manage Postgres databases for multi-project workspaces. It provides interactive guidance for configuring both long-lived and temporary database environments.

How do I link a local Prisma project to a newly provisioned Postgres database?

Link a local Prisma project to a provisioned Postgres database by retrieving the direct connection string from Prisma Console or create-db. You then configure this DATABASE_URL within your project environment.