Use when building or debugging Supabase features — RLS policies, Auth flows, Storage rules, Edge Functions, and real-time subscriptions
Installation
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
-- Enable RLSALTER TABLE profiles ENABLE ROW LEVEL SECURITY;
-- Policy: Users can read own profileCREATE POLICY "Users can view own profile"
ON profiles FORSELECTUSING (auth.uid() = user_id);
-- Policy: Users can update own profileCREATE POLICY "Users can update own profile"
ON profiles FORUPDATEUSING (auth.uid() = user_id);