What problem does it solve? Developers working with Prisma ORM often struggle to remember the correct CLI commands, flags, and workflows for tasks like running migrations, generating the client, or seeding databases, especially with behavior changes in current Prisma releases. ## Core Features & Use Cases - Complete Command Reference: Covers init, generate, migrate, db push/pull/seed/execute, dev, studio, validate, format, debug, and mcp with options and examples. - 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. - Use Case: You are setting up a new project with Bun and Postgres. Use this Skill to initialize Prisma with the correct config, start a local Prisma Postgres instance, create your first migration, and generate the client without guessing flags. ## Quick Start Ask the assistant to show how to create and apply a named Prisma migration and then generate the client for your project.