prisma-database

Scaffold and audit Prisma database packages across MetaSaver monorepos.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/metasaver/claude-marketplace --skill prisma-database
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: prisma-database
Source: https://github.com/metasaver/claude-marketplace/tree/main/plugins/metasaver-core/skills/domain/prisma-database
Command: npx skills add https://github.com/metasaver/claude-marketplace --skill prisma-database

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill codifies the complete Prisma database package structure (schema, client, seeds, migrations) to ensure consistency across domains.

Core Features & Use Cases

  • Prisma-centric architecture: Prisma schema, client singleton, and seed workflows.
  • Standardized exports: Barrel/type exports and consistent public API.
  • Audit-ready templates: Guidance for audits of Prisma schemas and migrations.

Quick Start

Use the Prisma-database skill to scaffold rugby-crm-database or audit an existing database package.

Frequently Asked Questions about prisma-database

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

FAQPage Schema
How do I scaffold a new Prisma database package with standardized structure?

Scaffold Prisma database packages using this Skill to generate consistent schema, client, seeds, and migrations. It ensures environment templates, UUID keys, timestamps, snake_case mapping, and seed upsert strategies across monorepo domains like rugby-crm-database.

What does auditing a Prisma database package involve?

Audit existing Prisma packages to verify schema compliance, migration patterns, and export consistency. This Skill provides audit workflows and templates that validate datasource configuration, generator setup, and public API exports against standardized requirements.

Can I use this for adding new models and seeds to an existing Prisma schema?

Yes. Add models and seeds following Prisma-database patterns: define models with UUID primaries and createdAt/updatedAt fields, implement seed upsert strategies, and maintain snake_case database mapping across your monorepo packages.

Why standardize Prisma schema patterns across multiple database packages?

Standardization ensures consistent client exports, migration workflows, and seed strategies across domains. This Skill codifies the complete structure—schema, client singleton, migrations—reducing configuration drift and maintenance overhead in monorepos.

What environment setup does a Prisma database package need?

Prisma packages require environment variable templates for datasource configuration, Prisma client generation setup, and seed execution paths. This Skill provides templates satisfying these requirements and ensures exports work across projects.