skills/smithery.ai/database-operation

database-operation

Installation
SKILL.md

Database Operations with Prisma

Create database operations following Pixel Studio's established patterns.

Prisma Client Import

Always use the singleton client:

import { prisma } from "~/services/prisma.server";

Never create a new PrismaClient instance directly.

Server Function Structure

Server functions go in app/server/ with .server.ts suffix:

Installs
1
First Seen
Apr 3, 2026
database-operation from smithery.ai