prisma-workflow

Installation
SKILL.md

Prisma Workflow

Schema Design

model User {
  id        String   @id @default(cuid())
  email     String   @unique
  name      String?
  role      Role     @default(USER)
  posts     Post[]
  createdAt DateTime @default(now())
  updatedAt DateTime @updatedAt

  @@index([email])
}
Installs
2
GitHub Stars
13
First Seen
Feb 14, 2026
prisma-workflow — sabahattinkalkan/antigravity-fullstack-hq