What problem does it solve? Developers working with Prisma ORM need accurate, up-to-date 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 resolution 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 asked to add a new field to a production-backed schema, the skill guides creating a named migration with prisma migrate dev, regenerating the client, and deploying with prisma migrate deploy in CI. ## Quick Start Ask the assistant to create and apply a new Prisma migration named add_users_table and then regenerate the Prisma Client.