Expert Prisma 7 ORM with Rust-free client, 90% smaller bundles, 3x faster queries, TypedSQL, Omit API, and ESM-first architecture. Use when working with databases, Prisma schemas, queries, migrations, relations, or database optimization.
/plugin marketplace add fusengine/claude-code-plugins/plugin install fuse:nextjs@fusengine-pluginsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
100-getting-started/02-prisma-orm/100-quickstart/100-prisma-postgres.md100-getting-started/02-prisma-orm/100-quickstart/200-sqlite.md100-getting-started/02-prisma-orm/100-quickstart/300-postgresql.md100-getting-started/02-prisma-orm/100-quickstart/400-mysql.md100-getting-started/02-prisma-orm/100-quickstart/500-sql-server.md100-getting-started/02-prisma-orm/100-quickstart/600-planetscale.md100-getting-started/02-prisma-orm/100-quickstart/700-cockroachdb.md100-getting-started/02-prisma-orm/100-quickstart/800-mongodb.md100-getting-started/02-prisma-orm/200-add-to-existing-project/100-prisma-postgres.md100-getting-started/02-prisma-orm/200-add-to-existing-project/200-sqlite.md100-getting-started/02-prisma-orm/200-add-to-existing-project/300-postgresql.md100-getting-started/02-prisma-orm/200-add-to-existing-project/400-mysql.md100-getting-started/02-prisma-orm/200-add-to-existing-project/500-sql-server.md100-getting-started/02-prisma-orm/200-add-to-existing-project/600-planetscale.md100-getting-started/02-prisma-orm/200-add-to-existing-project/700-cockroachdb.md100-getting-started/02-prisma-orm/200-add-to-existing-project/800-mongodb.md100-getting-started/03-prisma-postgres/100-from-the-cli.md100-getting-started/03-prisma-postgres/100-quickstart/100-kysely.md100-getting-started/03-prisma-postgres/100-quickstart/200-drizzle-orm.md100-getting-started/03-prisma-postgres/100-quickstart/300-typeorm.mdPrisma 7 (released November 19, 2025) removes Rust dependency for ~90% smaller bundles, up to 3x faster queries, and ESM-first architecture.
# Install dependencies
bun add @prisma/client dotenv
bun add -d prisma
# Initialize Prisma
bunx prisma init
# Generate client after schema changes
bunx prisma generate
# Run migrations
bunx prisma migrate dev --name init
generator client {
provider = "prisma-client"
output = "../src/generated/prisma"
}
| Requirement | Version |
|---|---|
| Node.js | 18.18+ |
| TypeScript | 5.1+ |
prisma-client provider (NOT prisma-client-js)output path in generator@prisma/clientmcp__context7__get-library-docs with context7CompatibleLibraryID="/prisma/docs"
Official site: https://www.prisma.io/docs