When creating Prisma database migrations, run from the repository root:
yarn dev:prisma:migrate:dev --name <migration_name>Do NOT use npx prisma migrate dev directly from packages/db.
To build a specific package:
yarn workspace @sourcebot/<package-name> buildUse Tailwind color classes directly instead of CSS variable syntax:
// Correct
className="border-border bg-card text-foreground text-muted-foreground bg-muted bg-secondary"
// Incorrect
className="border-[var(--border)] bg-[var(--card)] text-[var(--foreground)]"