supabase-dev-workflow
Installation
SKILL.md
Supabase Local Dev Workflow
Core Philosophy
- Schema-driven development — all structural changes go to schema files, never direct SQL
- RPC-first architecture — no direct
supabase-jstable calls; all data access through RPCs - DB functions as first-class citizens — business logic lives in the database
Process
Phase 1: Schema Changes
Write structural changes to the appropriate schema file based on the folder structure:
Related skills