prisma-orm-v7-skills

Summarize Prisma ORM v7 breaking changes and migration steps for Node.js/TypeScript codebases.

1|Updated Jan 26, 2026
One-click install
npx skills add https://github.com/fyndx/coinx-backend --skill prisma-orm-v7-skills-fyndx
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: prisma-orm-v7-skills
Source: https://github.com/fyndx/coinx-backend/tree/main/.agents/skills/prisma-orm-v7-skills
Command: npx skills add https://github.com/fyndx/coinx-backend --skill prisma-orm-v7-skills-fyndx

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill helps teams understand and execute upgrades to Prisma ORM version 7 by clarifying breaking changes, required configuration updates, and practical migration guidance to minimize downtime.

Core Features & Use Cases

  • Upgrade planning: Outlines the key changes between Prisma 6 and 7 and maps them to concrete project tasks.
  • Migration guidance: Details required changes to generator provider, datasource configuration, and Prisma Client imports.
  • Validation & rollout: Provides steps to validate migrations, run migrations explicitly, and verify compatibility across environments.

Quick Start

Follow the plan to upgrade your Prisma project to version 7 by updating generator to prisma-client, moving datasource config to prisma.config.ts, and validating the migration with explicit generate and migrate checks.

Frequently Asked Questions about prisma-orm-v7-skills

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

FAQPage Schema
What are the breaking changes when upgrading to Prisma ORM 7?

Prisma 7 requires updating your generator provider to prisma-client, moving datasource configuration to a prisma.config.ts file, and adjusting Prisma Client imports to successfully migrate your Node.js and TypeScript project.

How do I migrate my datasource configuration for Prisma 7?

To migrate your datasource configuration for Prisma 7, you need to move your existing datasource settings into a new prisma.config.ts file, replacing the previous schema-based block configuration approach.

Can I use Prisma 7 with my existing Node.js and TypeScript project?

Prisma 7 supports Node.js and TypeScript projects, but you must update generator providers, move datasource configuration to prisma.config.ts, and validate the migration using explicit generate and migrate checks.

Why do I need to change my generator provider for the Prisma 7 upgrade?

You must change your generator provider to prisma-client during the Prisma 7 upgrade to align with breaking changes in the client generation system and ensure correct Prisma Client imports.

What is the best way to validate a Prisma 7 migration across environments?

Validate a Prisma 7 migration by running explicit generate and migrate checks to ensure updated generator, datasource, and client configurations function correctly across all deployment environments.

When should I plan my upgrade from Prisma 6 to 7?

Plan your upgrade from Prisma 6 to 7 when ready to map breaking changes to concrete project tasks, update configurations, and validate migrations to minimize downtime safely.