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 - Command Reference: Covers the full Prisma CLI surface including init, generate, migrate, db push/pull/seed/execute, dev, studio, validate, format, debug, and mcp. - 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. - Use Case: When setting up a new project, follow the init reference to bootstrap prisma.config.ts, start a local database with prisma dev, create migrations with migrate dev, and generate the client with the correct output configuration. ## Quick Start Ask the assistant to show how to create and apply a new Prisma migration for a schema change in the current project.