What problem does it solve? Developers working with Prisma ORM need accurate, current guidance on CLI commands for initializing projects, generating clients, running migrations, and managing databases, without confusing the ORM CLI with the separate Prisma Platform CLI. ## Core Features & Use Cases - Command Reference: Covers init, generate, migrate, db push/pull/seed/execute, dev, studio, validate, format, debug, complete, and mcp with options and examples. - Migration Workflows: Distinguishes development workflows (migrate dev) from production deployments (migrate deploy) and recovery tools (migrate resolve, migrate status). - AI Safety Checkpoint: Documents the consent requirement for destructive commands like migrate reset and db push --force-reset when run by AI agents. - Use Case: When setting up a new project, follow the init reference to create prisma.config.ts, start a local database with prisma dev, then run migrate dev and generate to get a working typed client. ## Quick Start Ask the assistant to show how to create and apply a named Prisma migration and then regenerate the Prisma Client.