skills/prisma-cli-studio/SKILL.md
prisma studio. Reference when using this Prisma feature.
npx skillsauth add prisma/cursor-plugin prisma-cli-studioInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Opens a visual database browser for viewing and editing data.
prisma studio [options]
| Option | Description | Default |
|--------|-------------|---------|
| --port / -p | Port to start Studio on | 5555 |
| --browser / -b | Browser to open Studio in | System default |
| --config | Custom path to your Prisma config file | - |
| --url | Database connection string (overrides the one in your Prisma config) | - |
prisma studio
Opens at http://localhost:5555
prisma studio --port 3000
prisma studio --browser firefox
BROWSER=none prisma studio
Useful for remote servers.
Run migrations:
prisma migrate dev
Seed data:
prisma db seed
Open Studio to verify:
prisma studio
Make manual edits if needed
Studio provides direct database access. Only run on:
databases
Schema Changes. Reference when using this Prisma feature.
tools
Removed Features. Reference when using this Prisma feature.
tools
Prisma Config. Reference when using this Prisma feature.
tools
ESM Support. Reference when using this Prisma feature.