What problem does it solve? Developers working with Prisma ORM need accurate, current guidance on CLI commands like init, generate, migrate, and db push, including correct flags, configuration via prisma.config.ts, and safe handling of 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: 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 scaffold prisma/schema.prisma and prisma.config.ts, then run migrate dev and generate to create migrations and a typed Prisma Client. ## Quick Start Ask the assistant to show how to create and apply a named Prisma migration and regenerate the client for your schema.