supabase

A set of coding rules for Supabase, a service that provides databases, user accounts, server functions, and live data updates. The rules focus on row-level security, authentication, and safe handling of database access.

In plain words
What is it for?
Use it when designing Supabase tables and access policies, adding authentication, writing server functions, and testing permissions for different users.
Why use it?
It helps prevent users from reading or changing one another's data and avoids exposing privileged database credentials in browser code.

Cursor rule

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add rules/nedcodes-ok/cursor-doctor/supabase
Clone the repo
git clone --depth 1 https://github.com/nedcodes-ok/cursor-doctor
Per session 1,061 This file is loaded in full into every session.
When invoked 1,061 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.01061 $0.01061
Opus 5 $0.00531 $0.00531
Sonnet 5 $0.00212 $0.00212
Haiku 4.5 $0.00106 $0.00106

Measured 2d ago against content hash 817f611eff00, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

supabase scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

pro-kit/templates/tools/supabase.mdc · 54 lines

How it starts

The opening of the file, as written. The whole thing — 54 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Supabase Cursor Rules

You are an expert Supabase developer. Follow these rules:

Row Level Security (RLS)

  • ALWAYS enable RLS on every table — no exceptions. A table without RLS is publicly readable/writable through the API
  • Policies use auth.uid() to scope access: USING (user_id = auth.uid()) for reads, WITH CHECK (user_id = auth.uid()) for writes
  • Separate policies for SELECT, INSERT, UPDATE, DELETE — don't combine into one permissive policy. Be explicit about what each role can do
  • service_role key bypasses ALL RLS — never expose it to the client, never put it in environment variables that reach the browser. Use anon key for client-side
  • Test policies by switching between user contexts in the SQL editor: SET LOCAL role = 'authenticated'; SET LOCAL request.jwt.claims = '{"sub": "user-uuid"}'
  • RLS policies on views check the underlying tables — but functions with SECURITY DEFINER bypass RLS. Don't accidentally create admin-only functions callable by users

Auth

  • Use Supabase Auth — don't roll your own. It handles JWTs, refresh tokens, OAuth providers, MFA
  • Store user metadata in a public.profiles table with id UUID REFERENCES auth.users(id) ON DELETE CASCADE — never modify the auth.users table directly
  • Create profile rows with a trigger: CREATE TRIGGER on_auth_user_created AFTER INSERT ON auth.users FOR EACH ROW EXECUTE FUNCTION create_profile()
  • Handle auth state client-side with onAuthStateChange — it fires on sign-in, sign-out, and token refresh. Don't poll for session status
  • supabase.auth.getSession() reads from local storage (fast, may be stale). supabase.auth.getUser() verifies against the server (slow, always fresh). Use getUser() for sensitive operations

Database

  • Foreign keys to auth.users(id) with ON DELETE CASCADE for all user-owned data — orphaned rows after user deletion are a data leak
  • Use generated columns (GENERATED ALWAYS AS (expression) STORED) for denormalized fields that derive from other columns — they stay in sync automatically
  • Postgres enums (CREATE TYPE status AS ENUM ('active', 'inactive')) over check constraints — they show up in the generated TypeScript types
  • created_at TIMESTAMPTZ DEFAULT now() on every table. updated_at via a trigger that sets it on UPDATE — there's no built-in auto-update
  • Database functions in plpgsql for complex business logic that should run close to the data — keeps it in one round trip instead of multiple API calls
  • Use supabase gen types typescript to generate types from your schema — run it after every migration, commit the output

Read the full file on GitHub · 54 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 54 lines · 1,061 tokens per session scan A 817f611eff00

Subscribe to this mod's changes

supabase is a cursor rule published in the GitHub repository nedcodes-ok/cursor-doctor (9 stars, last pushed 5mo ago), licensed MIT. It adds 1,061 tokens to every session, about $0.0053 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.