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 a database, leading to errors and lost time. ## 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, then use migrate dev and generate to create migrations and a typed client, and finally run db seed to populate development data. ## Quick Start Ask the assistant to show how to create and apply a named Prisma migration and then regenerate the client for your project.