بنقرة واحدة
db-migration
Use whenever the Prisma schema changes and a migration is needed.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Use whenever the Prisma schema changes and a migration is needed.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Use when adding a brand-new CRUD resource beyond the core entity (e.g. a second model the PS requires).
Use when building or restyling any page or component.
Use when constructing forms, inputs, submit behaviors, validation displays, and feedback toast alerts.
Use when creating new Next.js route handlers using the custom helper wrapper.
Use when integrating third-party APIs (e.g. SMTP emails, SMS notification gateways, payment checkout gates, or OCR parsers).
Use when adapting the template's placeholder Item entity to a hackathon problem statement's actual domain entity.
| name | db-migration |
| description | Use whenever the Prisma schema changes and a migration is needed. |
Ensure migrations are run safely without breaking the DB schema or connections:
Local Migration Run:
prisma/schema.prisma.npx prisma migrate dev --name <description_of_change>.npx prisma generate to rebuild Prisma Client types.Neon Production / Vercel Gotcha:
DIRECT_URL (direct unpooled connection).npx prisma migrate deploy using the direct URL.