What problem does it solve? Developers working with Prisma ORM need accurate, up-to-date guidance on CLI commands like init, generate, migrate, and db push, including correct flags, current v7 behavior, and safety rules for destructive operations. ## Core Features & Use Cases - Command Reference: Covers the full Prisma ORM CLI surface including init, generate, migrate dev/deploy/reset/status/diff/resolve, db pull/push/seed/execute, dev, studio, validate, format, debug, complete, and mcp. - AI Safety Checkpoint: Documents the consent workflow required before destructive commands like migrate reset or db push --force-reset when an AI agent is detected. - Current v7 Behavior: Explains prisma.config.ts setup, explicit generate and seed follow-ups, Bun runtime flags, and the boundary between the ORM CLI and the Platform CLI. - Use Case: When setting up a new project, follow the init reference to scaffold prisma.config.ts, run prisma dev for a local Postgres database, then apply migrate dev and generate the client. ## Quick Start Ask the assistant to show how to create and apply a named Prisma migration and then regenerate the client for your project.