What problem does it solve? Developers working with Prisma ORM often struggle to remember the exact CLI commands, flags, and workflows for tasks like running migrations, generating the client, or seeding databases. This Skill provides a structured, up-to-date reference for the entire Prisma CLI surface so you get the right command with the right options every time. ## Core Features & Use Cases - Complete Command Reference: Covers init, generate, migrate (dev, deploy, reset, status, diff, resolve), db (pull, push, seed, execute), dev, studio, validate, format, debug, and mcp with detailed per-command documentation. - Workflow Guidance: Explains when to use db push versus migrate dev, how to handle production deployments with migrate deploy, and how to recover from failed migrations with migrate resolve. - Current Configuration Patterns: Documents the prisma.config.ts setup, Bun runtime flags, and explicit follow-up steps like running prisma generate and prisma db seed after migrations. - Use Case: You are setting up a new project and need to initialize Prisma, create your first migration, generate the client, and seed the database. This Skill walks you through each command in the correct order with the right flags. ## Quick Start Ask the assistant to show you how to create and apply a new Prisma migration for a schema change in your project.