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.
npx agentmods add rules/nedcodes-ok/cursor-doctor/supabasegit clone --depth 1 https://github.com/nedcodes-ok/cursor-doctorWhat 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.
| Model | Per session | Once 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 |
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.
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_rolekey bypasses ALL RLS — never expose it to the client, never put it in environment variables that reach the browser. Useanonkey 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 DEFINERbypass 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.profilestable withid UUID REFERENCES auth.users(id) ON DELETE CASCADE— never modify theauth.userstable 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)withON DELETE CASCADEfor 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_atvia a trigger that sets it on UPDATE — there's no built-in auto-update- Database functions in
plpgsqlfor 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 typescriptto generate types from your schema — run it after every migration, commit the output
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.
- 2d ago First seen · 54 lines · 1,061 tokens per session scan A 817f611eff00
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.
Other cursor rules, from other repositories
angular
Angular: signals, standalone components, RxJS patterns.
django
Django: models, views, ORM best practices.
java
Modern Java: records, sealed classes, streams, virtual threads.
javascript
Modern JavaScript: ES2023+, async patterns, common traps.
rust
Rust patterns: ownership, Result types, iterators.
accessibility
Accessibility: semantic HTML, ARIA, keyboard navigation, testing.