mcpbeat Sign in

Prisma CLI Dev Skill for Cursor

prisma dev. Reference when using this Prisma feature.

728 tokens
context cost
the whole folder, loaded on every use
2
files
instructions only
0
copies elsewhere
how many repositories repackaged it
8
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/prisma/cursor-plugin --skill prisma-cli-dev

What comes with it

94 bytes besides the instruction
metadata.json

The instruction itself

19 sections, as written by the author

prisma dev

Starts a local Prisma Postgres database for development. Provides a PostgreSQL-compatible database that runs entirely on your machine.

Command

prisma dev [options]

What It Does

  • Starts a local PostgreSQL-compatible database
  • Runs in your terminal or as a background process
  • Perfect for development and testing
  • Easy migration to Prisma Postgres cloud in production

Options

| Option | Description | Default |

|--------|-------------|---------|

| --name / -n | Name for the database instance | default |

| --port / -p | HTTP server port | 51213 |

| --db-port / -P | Database server port | 51214 |

| --shadow-db-port | Shadow database port (for migrations) | 51215 |

| --detach / -d | Run in background | false |

| --debug | Enable debug logging | false |

Examples

Start local database

prisma dev

Interactive mode with keyboard shortcuts:

  • q - Quit
  • h - Show HTTP URL
  • t - Show TCP URLs

Named instance

prisma dev --name myproject

Useful for multiple projects.

Background mode

prisma dev --detach

Frees your terminal for other commands.

Custom ports

prisma dev --port 5000 --db-port 5432

Instance Management

List all instances

prisma dev ls

Shows all local Prisma Postgres instances with status.

Start existing instance

prisma dev start myproject

Starts a previously created instance in background.

Stop instance

prisma dev stop myproject

Stop with glob pattern

prisma dev stop "myproject*"

Stops all instances matching pattern.

Remove instance

prisma dev rm myproject

Removes instance data from filesystem.

Force remove (stops first)

prisma dev rm myproject --force

Configuration

Configure your prisma.config.ts to use local Prisma Postgres:

import 'dotenv/config'
import { defineConfig, env } from 'prisma/config'

export default defineConfig({
  schema: 'prisma/schema.prisma',
  migrations: {
    path: 'prisma/migrations',
  },
  datasource: {
    // Local Prisma Postgres URL (from prisma dev output)
    url: env('DATABASE_URL'),
  },
})

Workflow

  • Start local database:
   prisma dev
  • In another terminal, run migrations:
   prisma migrate dev
  • Generate client:
   prisma generate
  • Run your application

Production Migration

When ready for production, switch to Prisma Postgres cloud:

prisma init --db

Update your DATABASE_URL to the cloud connection string.

How to use it

Copy the folder

Take prisma/prisma-cli-dev from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.