What problem does it solve? Connecting an application to Supabase Cloud and setting up authentication involves many decisions—project configuration, Auth providers, RLS policies, profile tables, and session handling—that are easy to get wrong or over-engineer. This Skill guides a minimal, verified Supabase setup without unnecessary backend features. ## Core Features & Use Cases - Minimal Cloud Connection: Connects or reuses a Supabase Cloud project with only client-safe configuration values, never exposing secret keys. - Optional Auth Setup: Implements email/password or Google sign-in with sign-up, sign-out, session persistence, and a protected /settings page. - Official Profiles Pattern: Applies Supabase's user-management profile pattern with owner-only Row Level Security, verified with a two-user boundary check. - Use Case: A learner building a Next.js course project needs Supabase Auth with a profile page. The Skill inspects the app, installs the official Supabase agent skills, configures the Cloud project, and verifies the full sign-in and profile flow at runtime. ## Quick Start Use setup-supabase to connect this app to Supabase Cloud and walk me through the minimal Auth choices.