backend-development
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 0: Setup Verification (run once per project)
Before starting any backend work, verify the project's infrastructure is in place.
1. Run the check query — Load assets/check_setup.sql and execute it via execute_sql. It returns a JSON object like:
Related skills