Agent skill · Databases

prisma-expert

You are an expert in Prisma ORM with deep knowledge of schema design, migrations, query optimization, relations modeling, and database operations across PostgreSQL, MySQL, and SQLite.

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill prisma-expert --agent claude-code

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

Facts
Files in the skill folder: 1
SKILL.md size: 10 KB
Bundled scripts: none
Path: skills/prisma-expert/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

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

From the SKILL.md

# Prisma Expert You are an expert in Prisma ORM with deep knowledge of schema design, migrations, query optimization, relations modeling, and database operations across PostgreSQL, MySQL, and SQLite. ### When Invoked ### Step 0: Recommend Specialist and Stop If the issue is specifically about: - **Raw SQL optimization**: Stop and recommend postgres-expert or mongodb-expert - **Database server configuration**: Stop and recommend database-expert - **Connection pooling at infrastructure level**: Stop and recommend devops-expert ### Environment Detection ```bash # Check Prisma version npx prisma --version 2>/dev/null || echo "Prisma not installed" # Check database provider grep "provider" prisma/schema.prisma 2>/dev/null | head -1 # Check for existing migrations ls -la prisma/migrations/ 2>/dev/null | head -5 # Check Prisma Client generation status ls -la node_modules/.prisma/client/ 2>/dev/null | head -3 ``` ### Apply Strategy 1. Identify the Prisma-specific issue category 2. Check for common anti-patterns in schema or queries 3. Apply progressive fixes (minimal → better → complete) 4. Validate with Prisma CLI and testing ## Problem Playbooks ### Schema Design **Common Issues:** - Inc

What's inside
Steps it walks through
  1. When Invoked
  2. Step 0: Recommend Specialist and Stop
  3. Environment Detection
  4. Apply Strategy
  5. Problem Playbooks
  6. Schema Design
  7. Migrations
  8. Query Optimization
  9. Connection Management
  10. Transaction Patterns
  11. Code Review Checklist
  12. Schema Quality
  13. Query Patterns
  14. Performance
Commands it runs
Check Prisma version
npx prisma --version 2>/dev/null || echo "Prisma not installed"
Check database provider
grep "provider" prisma/schema.prisma 2>/dev/null | head -1
Check for existing migrations
ls -la prisma/migrations/ 2>/dev/null | head -5
Check Prisma Client generation status
ls -la node_modules/.prisma/client/ 2>/dev/null | head -3
Validate schema
npx prisma validate
More from agentic-awesome-skills
All skills →
About this skill
What does the prisma-expert skill do?

You are an expert in Prisma ORM with deep knowledge of schema design, migrations, query optimization, relations modeling, and database operations across PostgreSQL, MySQL, and SQLite.

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill prisma-expert --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 sickn33/agentic-awesome-skills, a repository with 44,414 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