Supabase Core Skill Core concepts, CLI workflow, and patterns common to all Supabase projects. Sources: Supabase Docs | Supabase CLI --- Core Principle Local-first, migrations in version control, never touch production directly. Develop locally with the Supabase CLI, capture all changes as migrations, and deploy through CI/CD. --- Supabase Stack | Service | Purpose | |---------|---------| | Database | PostgreSQL with extensions | | Auth | User authentication, OAuth providers | | Storage | File storage with RLS | | Edge Functions | Serverless Deno functions | | Realtime | WebSocket subscriptio…