What problem does it solve? Developers working with Prisma ORM need accurate, current guidance on CLI commands like init, generate, migrate, db push, and studio, including correct flags, configuration via prisma.config.ts, and safe production migration workflows. ## Core Features & Use Cases - Command Reference: Covers the full Prisma CLI surface including init, generate, migrate dev/deploy/reset/status/diff/resolve, db pull/push/seed/execute, dev, studio, validate, format, debug, and mcp. - Workflow Guidance: Explains when to use db push versus migrate dev, how to run migrate deploy safely in CI/CD, 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/schema.prisma and prisma.config.ts, start a local database with prisma dev, then create and apply your first migration with migrate dev. ## Quick Start Ask the assistant to show how to create and apply a named Prisma migration and then regenerate the Prisma Client.