Supabase Policy Guardrails
Overview
Organizational governance for Supabase at scale: a shared RLS policy library (reusable templates for common access patterns), naming conventions (tables, columns, functions, policies), migration review process (CI checks ensuring RLS, preventing destructive operations, enforcing naming), cost alert configuration (billing thresholds and usage monitoring), and security audit scripts (scanning for exposed keys, missing RLS, overly permissive policies). All patterns use real createClient from @supabase/supabase-js and Supabase CLI commands.
Prerequisites
- Supabase project with
supabase CLI installed and linked
@supabase/supabase-js v2+ installed
- CI/CD pipeline (GitHub Actions recommended)
- Database access via
psql or Supabase SQL Editor
- Pro plan recommended for cost alerts and usage API
Instructions
Step 1 — Shared RLS Policy Library and Naming Conventions
RLS Policy Templates
Create reusable RLS policy templates that teams apply to new tables. This prevents each developer from writing ad-hoc policies and ensures consistent access control.
-- supabase/migrations/00000000000000_rls_policy_library.sql
-- Shared RLS policy library — apply these templates to new tables
-- ============================================================
-- Template 1: Owner-only access (user owns the row)
-- Usage: tables with a user_id column (todos, profiles, settings)
-- ============================================================
CREATE OR REPLACE FUNCTION public.rls_owner_only(table_name text, user_column text DEFAULT 'user_id')
RETURNS void AS $$
BEGIN
EXECUTE format('ALTER TABLE public.%I ENABLE ROW LEVEL SECURITY', table_name);
EXECUTE format(
'CREATE POLICY "owner_select" ON public.%I FOR SELECT USING (%I = auth.uid())',
table_name, user_column
);
EXECUTE format(
'CREATE POLICY "owner_insert" ON public.%I FOR INSERT WITH CHECK (%I = auth.uid())',
table_name, user_column
);
EXECUTE format(
'CREATE POLICY "owner_update" ON public.%I FOR UPDATE USING (%I = auth.uid())',
table_name, user_column
);
EXECUTE format(
'CREATE POLICY "owner_delete" ON public.%I FOR DELETE USING (%I = auth.uid())',
table_name, user_column
);
END;
$$ LANGUAGE plpgsql;
-- ============================================================
-- Template 2: Organization-scoped access (user is member of org)
-- Usage: tables with org_id referencing org_members
-- ============================================================
CREATE OR REPLACE FUNCTION public.rls_org_scoped(
table_name text,
org_column text DEFAULT 'org_id',
allow_delete boolean DEFAULT false
)
RETURNS void AS $$
BEGIN
EXECUTE format('ALTER TABLE public.%I ENABLE ROW LEVEL SECURITY', table_name);
EXECUTE format(
'CREATE POLICY "org_select" ON public.%I FOR SELECT USING (
%I IN (SELECT org_id FROM public.org_members WHERE user_id = auth.uid())
)', table_name, org_column
);
EXECUTE format(
'CREATE POLICY "org_insert" ON public.%I FOR INSERT WITH CHECK (
%I IN (SELECT org_id FROM public.org_members WHERE user_id = auth.uid())
)', table_name, org_column
);
EXECUTE format(
'CREATE POLICY "org_update" ON public.%I FOR UPDATE USING (
%I IN (SELECT org_id FROM public.org_members WHERE user_id = auth.uid() AND role IN (''admin'', ''editor''))
)', table_name, org_column
);
IF allow_delete THEN
EXECUTE format(
'CREATE POLICY "org_delete" ON public.%I FOR DELETE USING (
%I IN (SELECT org_id FROM public.org_members WHERE user_id = auth.uid() AND role = ''admin'')
)', table_name, org_column
);
END IF;
END;
$$ LANGUAGE plpgsql;
-- ============================================================
-- Template 3: Public read, authenticated write
-- Usage: blog posts, product listings, public content
-- ============================================================
CREATE OR REPLACE FUNCTION public.rls_public_read_auth_write(
table_name text,
owner_column text DEFAULT 'created_by'
)
RETURNS void AS $$
BEGIN
EXECUTE format('ALTER TABLE public.%I ENABLE ROW LEVEL SECURITY', table_name);
EXECUTE format(
'CREATE POLICY "public_select" ON public.%I FOR SELECT USING (true)',
table_name
);
EXECUTE format(
'CREATE POLICY "auth_insert" ON public.%I FOR INSERT WITH CHECK (auth.uid() IS NOT NULL)',
table_name
);
EXECUTE format(
'CREATE POLICY "owner_update" ON public.%I FOR UPDATE USING (%I = auth.uid())',
table_name, owner_column
);
EXECUTE format(
'CREATE POLICY "owner_delete" ON public.%I FOR DELETE USING (%I = auth.uid())',
table_name, owner_column
);
END;
$$ LANGUAGE plpgsql;
-- Apply templates to tables:
-- SELECT public.rls_owner_only('todos');
-- SELECT public.rls_org_scoped('projects', 'org_id', true);
-- SELECT public.rls_public_read_auth_write('blog_posts', 'author_id');
Naming Conventions
-- supabase/migrations/00000000000001_naming_convention_check.sql
-- Validation function that checks naming conventions at migration time
CREATE OR REPLACE FUNCTION public.validate_naming_conventions()
RETURNS TABLE(issue text, object_name text, suggestion text) AS $$
BEGIN
-- Tables must be snake_case, plural
RETURN QUERY
SELECT
'Table name should be plural snake_case'::text,
t.tablename::text,
regexp_replace(t.tablename, '([A-Z])', '_\1', 'g')::text
FROM pg_tables t
WHERE t.schemaname = 'public'
AND (
t.tablename ~ '[A-Z]' -- contains uppercase
OR t.tablename ~ '-' -- contains hyphens
OR t.tablename !~ 's$' -- not plural (heuristic)
)
AND t.tablename NOT LIKE '\_%'; -- skip internal tables
-- Columns must be snake_case
RETURN QUERY
SELECT
'Column name should be snake_case'::text,
(c.table_name || '.' || c.column_name)::text,
regexp_replace(c.column_name, '([A-Z])', '_\1', 'g')::text
FROM information_schema.columns c
WHERE c.table_schema = 'public'
AND (c.column_name ~ '[A-Z]' OR c.column_name ~ '-');
-- Foreign key columns should end with _id
RETURN QUERY
SELECT
'Foreign key column should end with _id'::text,
(tc.table_name || '.' || kcu.column_name)::text,
(kcu.column_name || '_id')::text
FROM information_schema.table_constraints tc
JOIN information_schema.key_column_usage kcu
ON tc.constraint_name = kcu.constraint_name
WHERE tc.constraint_type = 'FOREIGN KEY'
AND tc.table_schema = 'public'
AND kcu.column_name NOT LIKE '%_id';
-- Boolean columns should start with is_ or has_
RETURN QUERY
SELECT
'Boolean column should start with is_ or has_'::text,
(c.table_name || '.' || c.column_name)::text,
('is_' || c.column_name)::text
FROM information_schema.columns c
WHERE c.table_schema = 'public'
AND c.data_type = 'boolean'
AND c.column_name NOT LIKE 'is_%'
AND c.column_name NOT LIKE 'has_%';
END;
$$ LANGUAGE plpgsql;
-- Run: SELECT * FROM public.validate_naming_conventions();
Naming Convention Reference
| Object |
Convention |
Example |
| Tables |
Plural snake_case |
user_profiles, order_items |
| Columns |
snake_case |
created_at, full_name |
| Foreign keys |
{referenced_table_singular}_id |
user_id, order_id |
| Booleans |
is_ or has_ prefix |
is_active, has_verified_email |
| Timestamps |
_at suffix |
created_at, updated_at, deleted_at |
| RLS policies |
{scope}_{operation} |
owner_select, org_insert |
| Functions |
verb_noun |
create_user, get_dashboard_metrics |
| Indexes |
idx_{table}_{columns} |
idx_orders_user_id_created_at |
| Migrations |
{timestamp}_{verb}_{description} |
20250322000000_create_orders_table.sql |
Step 2 — Migration Review Process with CI Checks
See CI checks, cost alerts, and security audits for GitHub Actions migration guardrails (RLS enforcement, naming checks, destructive operation blocks), pre-commit hooks, cost monitoring with Slack alerts, security audit scripts, and scheduled Edge Function audits.
Output
- Shared RLS policy library with owner-only, org-scoped, and public-read templates
- Naming convention validation function checking tables, columns, FKs, and booleans
- CI pipeline enforcing RLS, naming, and destructive operation controls
- Pre-commit hook blocking hardcoded secrets and tables without RLS
- Cost monitoring script with configurable thresholds and Slack alerting
- Security audit script detecting missing RLS, permissive policies, and missing indexes
- Scheduled Edge Function for continuous security monitoring
Error Handling
| Issue |
Cause |
Solution |
| CI RLS check fails on new table |
Migration missing ENABLE ROW LEVEL SECURITY |
Add ALTER TABLE after CREATE TABLE in same migration |
| Naming convention false positive |
Table is intentionally singular (e.g., config) |
Add to exclusion list in validation function |
| Cost alert not firing |
Missing SUPABASE_ACCESS_TOKEN |
Generate token at supabase.com/dashboard/account/tokens |
| Security audit times out |
Too many tables to scan |
Run audit on specific schemas or paginate results |
| Pre-commit blocks legitimate JWT in test |
Test fixture contains JWT-like string |
Add test file path to exclusion pattern |
| RLS template function not found |
Migration not applied |
Run supabase db reset or apply migration manually |
Examples
See CI, cost, and security reference for full examples including applying RLS templates, running security audits, and checking naming conventions.
Resources
Next Steps
For architecture patterns across different app types, see supabase-architecture-variants.
Source: jeremylongshore/claude-code-plugins-plus-skills → skills/.curated/supabase-policy-guardrails/SKILL.md
Also appears in: jeremylongshore/claude-code-plugins-plus-skills/plugins/saas-packs/supabase-pack/skills/supabase-policy-guardrails/SKILL.md
1---2name: supabase-policy-guardrails3description: 'Enforce organizational governance for Supabase projects: shared RLS policy library with reusable templates, table and column naming conventions, migration review process with CI checks, cost alert thresholds, and security audit scripts scanning for common misconfigurations. Use when establishing Supabase standards across teams, creating RLS policy templates, setting up migration review workflows, or auditing existing projects for security and cost issues. Trigger with phrases like "supabase governance", "supabase policy library", "supabase naming convention", "supabase migration review", "supabase cost alert", "supabase security audit", "supabase RLS template". '4---56# Supabase Policy Guardrails78## Overview910Organizational governance for Supabase at scale: a **shared RLS policy library** (reusable templates for common access patterns), **naming conventions** (tables, columns, functions, policies), **migration review process** (CI checks ensuring RLS, preventing destructive operations, enforcing naming), **cost alert configuration** (billing thresholds and usage monitoring), and **security audit scripts** (scanning for exposed keys, missing RLS, overly permissive policies). All patterns use real `createClient` from `@supabase/supabase-js` and Supabase CLI commands.1112## Prerequisites1314- Supabase project with `supabase` CLI installed and linked15- `@supabase/supabase-js` v2+ installed16- CI/CD pipeline (GitHub Actions recommended)17- Database access via `psql` or Supabase SQL Editor18- Pro plan recommended for cost alerts and usage API1920## Instructions2122### Step 1 — Shared RLS Policy Library and Naming Conventions2324#### RLS Policy Templates2526Create reusable RLS policy templates that teams apply to new tables. This prevents each developer from writing ad-hoc policies and ensures consistent access control.2728```sql29-- supabase/migrations/00000000000000_rls_policy_library.sql30-- Shared RLS policy library — apply these templates to new tables3132-- ============================================================33-- Template 1: Owner-only access (user owns the row)34-- Usage: tables with a user_id column (todos, profiles, settings)35-- ============================================================36CREATE OR REPLACE FUNCTION public.rls_owner_only(table_name text, user_column text DEFAULT 'user_id')37RETURNS void AS $$38BEGIN39 EXECUTE format('ALTER TABLE public.%I ENABLE ROW LEVEL SECURITY', table_name);4041 EXECUTE format(42 'CREATE POLICY "owner_select" ON public.%I FOR SELECT USING (%I = auth.uid())',43 table_name, user_column44 );45 EXECUTE format(46 'CREATE POLICY "owner_insert" ON public.%I FOR INSERT WITH CHECK (%I = auth.uid())',47 table_name, user_column48 );49 EXECUTE format(50 'CREATE POLICY "owner_update" ON public.%I FOR UPDATE USING (%I = auth.uid())',51 table_name, user_column52 );53 EXECUTE format(54 'CREATE POLICY "owner_delete" ON public.%I FOR DELETE USING (%I = auth.uid())',55 table_name, user_column56 );57END;58$$ LANGUAGE plpgsql;5960-- ============================================================61-- Template 2: Organization-scoped access (user is member of org)62-- Usage: tables with org_id referencing org_members63-- ============================================================64CREATE OR REPLACE FUNCTION public.rls_org_scoped(65 table_name text,66 org_column text DEFAULT 'org_id',67 allow_delete boolean DEFAULT false68)69RETURNS void AS $$70BEGIN71 EXECUTE format('ALTER TABLE public.%I ENABLE ROW LEVEL SECURITY', table_name);7273 EXECUTE format(74 'CREATE POLICY "org_select" ON public.%I FOR SELECT USING (75 %I IN (SELECT org_id FROM public.org_members WHERE user_id = auth.uid())76 )', table_name, org_column77 );78 EXECUTE format(79 'CREATE POLICY "org_insert" ON public.%I FOR INSERT WITH CHECK (80 %I IN (SELECT org_id FROM public.org_members WHERE user_id = auth.uid())81 )', table_name, org_column82 );83 EXECUTE format(84 'CREATE POLICY "org_update" ON public.%I FOR UPDATE USING (85 %I IN (SELECT org_id FROM public.org_members WHERE user_id = auth.uid() AND role IN (''admin'', ''editor''))86 )', table_name, org_column87 );8889 IF allow_delete THEN90 EXECUTE format(91 'CREATE POLICY "org_delete" ON public.%I FOR DELETE USING (92 %I IN (SELECT org_id FROM public.org_members WHERE user_id = auth.uid() AND role = ''admin'')93 )', table_name, org_column94 );95 END IF;96END;97$$ LANGUAGE plpgsql;9899-- ============================================================100-- Template 3: Public read, authenticated write101-- Usage: blog posts, product listings, public content102-- ============================================================103CREATE OR REPLACE FUNCTION public.rls_public_read_auth_write(104 table_name text,105 owner_column text DEFAULT 'created_by'106)107RETURNS void AS $$108BEGIN109 EXECUTE format('ALTER TABLE public.%I ENABLE ROW LEVEL SECURITY', table_name);110111 EXECUTE format(112 'CREATE POLICY "public_select" ON public.%I FOR SELECT USING (true)',113 table_name114 );115 EXECUTE format(116 'CREATE POLICY "auth_insert" ON public.%I FOR INSERT WITH CHECK (auth.uid() IS NOT NULL)',117 table_name118 );119 EXECUTE format(120 'CREATE POLICY "owner_update" ON public.%I FOR UPDATE USING (%I = auth.uid())',121 table_name, owner_column122 );123 EXECUTE format(124 'CREATE POLICY "owner_delete" ON public.%I FOR DELETE USING (%I = auth.uid())',125 table_name, owner_column126 );127END;128$$ LANGUAGE plpgsql;129130-- Apply templates to tables:131-- SELECT public.rls_owner_only('todos');132-- SELECT public.rls_org_scoped('projects', 'org_id', true);133-- SELECT public.rls_public_read_auth_write('blog_posts', 'author_id');134```135136#### Naming Conventions137138```sql139-- supabase/migrations/00000000000001_naming_convention_check.sql140-- Validation function that checks naming conventions at migration time141142CREATE OR REPLACE FUNCTION public.validate_naming_conventions()143RETURNS TABLE(issue text, object_name text, suggestion text) AS $$144BEGIN145 -- Tables must be snake_case, plural146 RETURN QUERY147 SELECT148 'Table name should be plural snake_case'::text,149 t.tablename::text,150 regexp_replace(t.tablename, '([A-Z])', '_\1', 'g')::text151 FROM pg_tables t152 WHERE t.schemaname = 'public'153 AND (154 t.tablename ~ '[A-Z]' -- contains uppercase155 OR t.tablename ~ '-' -- contains hyphens156 OR t.tablename !~ 's$' -- not plural (heuristic)157 )158 AND t.tablename NOT LIKE '\_%'; -- skip internal tables159160 -- Columns must be snake_case161 RETURN QUERY162 SELECT163 'Column name should be snake_case'::text,164 (c.table_name || '.' || c.column_name)::text,165 regexp_replace(c.column_name, '([A-Z])', '_\1', 'g')::text166 FROM information_schema.columns c167 WHERE c.table_schema = 'public'168 AND (c.column_name ~ '[A-Z]' OR c.column_name ~ '-');169170 -- Foreign key columns should end with _id171 RETURN QUERY172 SELECT173 'Foreign key column should end with _id'::text,174 (tc.table_name || '.' || kcu.column_name)::text,175 (kcu.column_name || '_id')::text176 FROM information_schema.table_constraints tc177 JOIN information_schema.key_column_usage kcu178 ON tc.constraint_name = kcu.constraint_name179 WHERE tc.constraint_type = 'FOREIGN KEY'180 AND tc.table_schema = 'public'181 AND kcu.column_name NOT LIKE '%_id';182183 -- Boolean columns should start with is_ or has_184 RETURN QUERY185 SELECT186 'Boolean column should start with is_ or has_'::text,187 (c.table_name || '.' || c.column_name)::text,188 ('is_' || c.column_name)::text189 FROM information_schema.columns c190 WHERE c.table_schema = 'public'191 AND c.data_type = 'boolean'192 AND c.column_name NOT LIKE 'is_%'193 AND c.column_name NOT LIKE 'has_%';194END;195$$ LANGUAGE plpgsql;196197-- Run: SELECT * FROM public.validate_naming_conventions();198```199200#### Naming Convention Reference201202| Object | Convention | Example |203|--------|-----------|---------|204| Tables | Plural snake_case | `user_profiles`, `order_items` |205| Columns | snake_case | `created_at`, `full_name` |206| Foreign keys | `{referenced_table_singular}_id` | `user_id`, `order_id` |207| Booleans | `is_` or `has_` prefix | `is_active`, `has_verified_email` |208| Timestamps | `_at` suffix | `created_at`, `updated_at`, `deleted_at` |209| RLS policies | `{scope}_{operation}` | `owner_select`, `org_insert` |210| Functions | `verb_noun` | `create_user`, `get_dashboard_metrics` |211| Indexes | `idx_{table}_{columns}` | `idx_orders_user_id_created_at` |212| Migrations | `{timestamp}_{verb}_{description}` | `20250322000000_create_orders_table.sql` |213214### Step 2 — Migration Review Process with CI Checks215216See [CI checks, cost alerts, and security audits](references/ci-cost-security.md) for GitHub Actions migration guardrails (RLS enforcement, naming checks, destructive operation blocks), pre-commit hooks, cost monitoring with Slack alerts, security audit scripts, and scheduled Edge Function audits.217218## Output219220- Shared RLS policy library with owner-only, org-scoped, and public-read templates221- Naming convention validation function checking tables, columns, FKs, and booleans222- CI pipeline enforcing RLS, naming, and destructive operation controls223- Pre-commit hook blocking hardcoded secrets and tables without RLS224- Cost monitoring script with configurable thresholds and Slack alerting225- Security audit script detecting missing RLS, permissive policies, and missing indexes226- Scheduled Edge Function for continuous security monitoring227228## Error Handling229230| Issue | Cause | Solution |231|-------|-------|----------|232| CI RLS check fails on new table | Migration missing `ENABLE ROW LEVEL SECURITY` | Add `ALTER TABLE` after `CREATE TABLE` in same migration |233| Naming convention false positive | Table is intentionally singular (e.g., `config`) | Add to exclusion list in validation function |234| Cost alert not firing | Missing `SUPABASE_ACCESS_TOKEN` | Generate token at supabase.com/dashboard/account/tokens |235| Security audit times out | Too many tables to scan | Run audit on specific schemas or paginate results |236| Pre-commit blocks legitimate JWT in test | Test fixture contains JWT-like string | Add test file path to exclusion pattern |237| RLS template function not found | Migration not applied | Run `supabase db reset` or apply migration manually |238239## Examples240241See [CI, cost, and security reference](references/ci-cost-security.md) for full examples including applying RLS templates, running security audits, and checking naming conventions.242243## Resources244245- [Supabase Row Level Security](https://supabase.com/docs/guides/database/postgres/row-level-security)246- [Supabase CLI Migrations](https://supabase.com/docs/guides/cli/managing-environments)247- [Supabase Management API](https://supabase.com/docs/reference/api/introduction)248- [Supabase Pricing](https://supabase.com/pricing)249- [PostgreSQL Naming Conventions](https://www.postgresql.org/docs/current/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS)250251## Next Steps252253For architecture patterns across different app types, see `supabase-architecture-variants`.254255---256257**Source:** [`jeremylongshore/claude-code-plugins-plus-skills`](https://github.com/jeremylongshore/claude-code-plugins-plus-skills) → `skills/.curated/supabase-policy-guardrails/SKILL.md`258259**Also appears in:** `jeremylongshore/claude-code-plugins-plus-skills/plugins/saas-packs/supabase-pack/skills/supabase-policy-guardrails/SKILL.md`