Skip to main content

Source facts

Repository
elie222/inbox-zero
Last source activity
March 13, 2026 at 11:31
Detected SKILL.md language
English
Stars
12,227
Forks
1,534

Install options

The review-first prompt is selected by default. You can switch to a direct command or download a local copy.

Review the source files

Read SKILL.md and any companion files shown by SkillsMP before deciding whether to install.

Showing SKILL.md

SKILL.md
Source instructions · Read-only preview
name
prisma
description
How to use Prisma
# Prisma Usage We use PostgreSQL with Prisma 7. ## Imports ```typescript // Prisma client instance import prisma from "@/utils/prisma"; // Enums (NOT from @prisma/client) import { ActionType, SystemType } from "@/generated/prisma/enums"; // Types (NOT from @prisma/client) import type { Rule, PrismaClient } from "@/generated/prisma/client"; import { Prisma } from "@/generated/prisma/client"; ``` Never import from `@prisma/client` — always use `@/generated/prisma/enums` and `@/generated/prisma/client`. Schema: `apps/web/prisma/schema.prisma`
View on GitHub