prisma-cli

Guide Prisma CLI commands for schemas, migrations, and client generation.

Updated Feb 17, 2026
One-click install
npx skills add https://github.com/Fabianrzs/car-wash --skill prisma-cli-fabianrzs
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: prisma-cli
Source: https://github.com/Fabianrzs/car-wash/tree/main/.agents/skills/prisma-cli
Command: npx skills add https://github.com/Fabianrzs/car-wash --skill prisma-cli-fabianrzs

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This provides a concise guide to Prisma CLI commands, options, and workflows, helping developers quickly find how to bootstrap, generate clients, migrate databases, and manage Prisma projects.

Core Features & Use Cases

  • Comprehensive command reference for init, generate, dev, migrate, db, studio, and mcp.
  • Practical usage patterns and best practices for common Prisma workflows in Node.js projects.
  • Quick decision guidance for choosing the right CLI command based on project needs.

Quick Start

Run prisma generate to generate the Prisma Client after updating your schema.

Frequently Asked Questions about prisma-cli

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

FAQPage Schema
How do I run Prisma migrations and generate the client in a Node.js project?

To run Prisma migrations and generate the client, use Prisma CLI commands like `prisma migrate dev` to apply schema changes and `prisma generate` to update the Prisma Client for your Node.js project.

What is the best way to bootstrap a new Prisma database schema?

The best way to bootstrap a new Prisma database schema is using the `prisma init` CLI command, which sets up your initial configuration files and prepares the database connection for your workflow.

Can I use Prisma CLI to manage database workflows without writing raw SQL?

Yes, you can use Prisma CLI to manage database workflows without raw SQL by utilizing commands like `prisma db` for direct database access and `prisma studio` for a visual interface to view and edit data.

When do I need to use the prisma mcp command?

You need to use the `prisma mcp` command when integrating Prisma workflows with Model Context Protocol servers, allowing your applications to interact seamlessly with your database schema and client.

Does Prisma CLI support configuring schemas and managing migrations across different Node.js environments?

Yes, Prisma CLI supports configuring schemas and managing migrations across different Node.js environments by providing tailored commands like `prisma dev` and `prisma migrate` to handle development and production database states.