prisma-orm-v7-skills

Upgrades Prisma projects from v6 to v7 by scripting Git and GitHub workflows.

Updated Feb 4, 2026
One-click install
npx skills add https://github.com/junaid-ali-ruk/auto-linkedin --skill prisma-orm-v7-skills-junaid-ali-ruk
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: prisma-orm-v7-skills
Source: https://github.com/junaid-ali-ruk/auto-linkedin/tree/main/.gemini/skills/prisma-orm-v7-skills
Command: npx skills add https://github.com/junaid-ali-ruk/auto-linkedin --skill prisma-orm-v7-skills-junaid-ali-ruk

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill guides upgrading Prisma ORM from v6 to v7 by outlining breaking changes, migration steps, and best practices.

Core Features & Use Cases

  • Upgrade readiness: assesses version requirements (Node, TS) and ES module migration needs, guiding project updates.
  • Schema & generator updates: covers generator provider change to prisma-client and required output path, plus moving datasource config to prisma.config.ts.
  • Migration workflow: provides step-by-step upgrade checklist and seed/generate guidelines for post-migration consistency.
  • Use Case: teams upgrading a monorepo to Prisma v7 can follow this guide to adjust prisma schema, imports, and environment configuration.

Quick Start

Follow the upgrade checklist to migrate a sample project from Prisma v6 to v7, including updating schema.prisma, generator, and prisma.config.ts, then run bun prisma generate and bun prisma db seed.

Frequently Asked Questions about prisma-orm-v7-skills

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I upgrade Prisma ORM from v6 to v7?

Migrating Prisma ORM to v7 requires updating the generator provider to prisma-client with an explicit output path, moving datasource config to prisma.config.ts, enforcing ES module compliance, and running prisma generate and db seed.

What are the breaking changes in Prisma v7?

Breaking changes in Prisma v7 include switching the generator provider to prisma-client, requiring an explicit output path for generated clients, migrating datasource configuration to prisma.config.ts, and enforcing ES module compliance with explicit environment handling.

Do I need ES modules for Prisma v7?

Yes, ES module compliance is an enforced requirement for Prisma v7. You must update your Node.js and TypeScript project configuration to support ES modules alongside updating prisma.config.ts for explicit environment handling.

How do I configure prisma.config.ts in Prisma v7?

You configure prisma.config.ts in Prisma v7 by migrating datasource configuration into it and establishing explicit environment handling, replacing previous schema-based datasource blocks to ensure proper ES module variable loading.

Can I use Prisma v7 in a TypeScript monorepo?

Yes, Prisma v7 works in TypeScript monorepos. Teams can follow the v7 upgrade checklist to adjust prisma schema files, update import paths, and configure environment variables across workspace packages after migrating.

Why are my Prisma imports broken after upgrading to v7?

Prisma imports break after upgrading to v7 because the generator provider changed to prisma-client with a required explicit output path. You must update import paths to match the new generated client location after running prisma generate.