What problem does it solve? Developers working with Prisma ORM need accurate, current guidance on CLI commands for initializing projects, running migrations, generating clients, and managing databases, without confusing the ORM CLI with the separate 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. - 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 guidance to run prisma init, configure prisma.config.ts, start a local database with prisma dev, apply schema changes with prisma migrate dev, and generate the client with prisma generate. ## Quick Start Ask the assistant to show how to create and apply a named Prisma migration and then regenerate the Prisma Client for your project.