prisma-orm-v7-skills

Upgrade Prisma ORM projects to version 7 with breaking changes and migration guidance.

Updated May 6, 2026
One-click install
npx skills add https://github.com/Abdullahmohammadaref/acar --skill prisma-orm-v7-skills-abdullahmohammadaref
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: prisma-orm-v7-skills
Source: https://github.com/Abdullahmohammadaref/acar/tree/main/.agents/skills/prisma-orm-v7-skills
Command: npx skills add https://github.com/Abdullahmohammadaref/acar --skill prisma-orm-v7-skills-abdullahmohammadaref

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Prisma ORM upgrade to v7 requires coordinated changes across schema, client, and config; this skill consolidates essential breaking changes and guidance to reduce upgrade risk.

Core Features & Use Cases

  • Clear breaking changes overview and upgrade checklist for schema, generator, and client configurations
  • Migration prompts, compatibility guidance, and best-practice recommendations for Prisma 7
  • Use cases focused on upgrading existing projects and scaffolding new Prisma configurations

Quick Start

Review the Prisma 7 upgrade guide and apply the required changes to your schema, client, and configuration to enable a successful migration.

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 my Prisma ORM project to version 7?

Prisma ORM 7 requires moving datasource configuration to prisma.config.ts, updating the generator provider to prisma-client, setting explicit output paths, and adopting ES modules across your TypeScript project.

What breaking changes are introduced in Prisma ORM 7?

Prisma ORM 7 breaking changes include updating the generator provider to prisma-client, defining explicit output paths, migrating datasource config to prisma.config.ts, and configuring environment variable loading and driver adapters.

Does Prisma 7 require moving datasource configuration out of schema.prisma?

Yes, Prisma 7 requires moving your datasource configuration out of schema.prisma into a dedicated prisma.config.ts file. You must also load environment variables explicitly through this new configuration structure.

Can I use Prisma 7 with CommonJS instead of ES modules?

Prisma 7 strongly guides the adoption of ES modules (ESM) for your Node.js or TypeScript projects. Migration notes and configuration guidance are specifically tailored to help you transition your project to ESM successfully.

How do I configure driver adapters when upgrading to Prisma ORM 7?

When upgrading to Prisma ORM 7, you configure driver adapters by following the migration notes and best-practice recommendations provided within the upgrade guide to ensure proper database connectivity and compatibility.