Agent skill · Databases

prisma-orm

Prisma ORM schema design, migrations, relations, query optimization, and database integration patterns.

a5c-aigithub.com/a5c-aiGitHub ↗
claude-codecodexcan modify filesMIT
Install
npx skills add a5c-ai/babysitter --skill prisma-orm --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 14 KB
Bundled scripts: none
Allowed tools: ReadWriteEditBashGlobGrep
Path: library/specializations/web-development/skills/prisma-orm/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,642
Language: JavaScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Prisma ORM Skill Expert assistance for Prisma ORM schema design, migrations, relations, query optimization, and database integration patterns. ## Capabilities - Design Prisma schemas with proper relations - Generate and manage database migrations - Optimize queries for performance - Implement type-safe database access - Configure multi-database support - Set up seeding and testing strategies ## Usage Invoke this skill when you need to: - Design database schemas with Prisma - Set up migrations and database workflows - Optimize database queries - Implement complex relations - Configure Prisma with Next.js or other frameworks ## Inputs | Parameter | Type | Required | Description | |-----------|------|----------|-------------| | database | string | No | postgresql, mysql, sqlite, mongodb | | models | array | No | List of models to create | | relations | array | No | Model relationships | | features | array | No | migrations, seeding, edge | ### Schema Configuration ```json { "database": "postgresql", "models": [ { "name": "User", "fields": [ { "name": "email", "type": "String", "unique": true }, { "name": "name", "type": "String", "optional": true }, { "name": "posts", "type": "Post"

What's inside
Steps it walks through
  1. Capabilities
  2. Usage
  3. Inputs
  4. Schema Configuration
  5. Output Structure
  6. Generated Code Patterns
  7. Prisma Schema
  8. Prisma Client Singleton
  9. Query Functions
  10. Post Queries with Relations
  11. Seed Script
  12. Migration Workflow
  13. Package.json Scripts
  14. Query Optimization Patterns
Ships with 1 file
  • README.md
Commands it runs
Create initial migration
npx prisma migrate dev --name init
Apply migrations to production
npx prisma migrate deploy
Reset database (development only)
npx prisma migrate reset
Generate Prisma Client
npx prisma generate
Seed database
npx prisma db seed
More from babysitter
All skills →
About this skill
What does the prisma-orm skill do?

Prisma ORM schema design, migrations, relations, query optimization, and database integration patterns.

How do I install it?

Run `npx skills add a5c-ai/babysitter --skill prisma-orm --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From a5c-ai/babysitter, a repository with 1,642 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going