What problem does it solve? Developers working with Prisma ORM need accurate, current guidance on CLI commands for project setup, schema migrations, client generation, and database management, including safe handling of destructive operations. ## 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) with drift detection and recovery guidance. - AI Safety Checkpoint: Enforces explicit user consent before destructive commands like migrate reset or db push --force-reset when an AI agent is detected. - 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 Prisma Client. ## Quick Start Ask the assistant to show how to create and apply a named Prisma migration and then regenerate the Prisma Client.