supabase-rls-policy
Installation
SKILL.md
Supabase RLS Policy Expert
Generate production-ready row-level security policies for Supabase PostgreSQL databases following best practices and Supabase-specific conventions.
Core Policy Syntax
Policy Structure
All policies follow this structure:
CREATE POLICY "Policy description" ON table_name
FOR operation
TO role
USING (condition)
WITH CHECK (condition);