What problem does it solve? Developers working with Prisma ORM need accurate, up-to-date guidance on CLI commands like init, generate, migrate, db push, and studio, including correct flags, current configuration patterns, and workflow ordering. ## Core Features & Use Cases - Command Reference: Covers the full Prisma CLI surface including init, generate, migrate dev/deploy/reset/status/diff/resolve, db pull/push/seed/execute, dev, studio, validate, format, debug, and mcp. - Current Configuration Guidance: Documents the prisma.config.ts setup, explicit generate and seed follow-up steps, and Bun runtime usage with bunx --bun. - Use Case: When setting up a new project, follow the init reference to bootstrap the schema and config, then use migrate dev to create migrations, generate to build the client, and db seed to populate data. ## Quick Start Ask the assistant to show how to create and apply a named Prisma migration and then generate the client for your project.