backend-prisma-model-generator

Generate Prisma models and execute migrations in the Luminaris monorepo.

Updated Jun 18, 2026
One-click install
npx skills add https://github.com/web3br1/luminaristest --skill backend-prisma-model-generator
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: backend-prisma-model-generator
Source: https://github.com/web3br1/luminaristest/tree/main/.claude/skills/backend-prisma-model-generator
Command: npx skills add https://github.com/web3br1/luminaristest --skill backend-prisma-model-generator

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires prisma, and includes scripts (resource) components.

What problem does it solve?

This Skill automates the process of adding new Prisma models to the schema.prisma file, following Luminaris conventions, and executing migrations, saving developers time and reducing the risk of errors.

Core Features & Use Cases

  • Automated Model Generation: Generates Prisma models with required fields and relationships, adhering to Luminaris standards.
  • Migration Execution: Executes prisma migrate dev to apply changes to the database.
  • Use Case: When creating a new database entity or adding a field that requires a migration, this Skill can be used to automate the process and ensure consistency.

Quick Start

Generate a new Prisma model for the 'Appointment' entity by running the command: backend-prisma-model-generator Appointment.

Frequently Asked Questions about backend-prisma-model-generator

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

FAQPage Schema
How do I automate Prisma schema updates and migrations?

Automate Prisma schema updates by generating new models and executing migrations through a CLI script. This process modifies the schema.prisma file and applies database changes automatically, reducing manual errors.

What is the best way to add a new Prisma model following monorepo conventions?

Adding a new Prisma model following monorepo conventions is handled by automated model generation. It creates the required fields and relationships while adhering to project standards for consistency.

Do I need Prisma CLI and SQLite to run database migrations?

Yes, you need Prisma CLI and SQLite installed to run database migrations. The automation executes destructive operations that modify the database, requiring these specific dependencies to function correctly.

Can I add multi-tenant soft-delete features to my Prisma schema?

Yes, you can add multi-tenant soft-delete features to your Prisma schema. The generation process handles the creation of fields requiring migrations, including specific multi-tenant soft-delete functionality.

When should I use an automated script for Prisma model generation?

You should use automated Prisma model generation when creating a new database entity or adding fields that require migrations. It ensures consistency and saves development time by automating the schema update process.