Supabase Expert — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Supabase Expert (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Build secure, real-time apps on Supabase and Postgres.
Supabase exposes Postgres directly to clients via the anon key, so Row Level Security IS your authorization layer. Enable RLS on every table holding user data — without it, the anon key can read everything.
alter table notes enable row level security;
create policy "owner can read" on notes
for select using (auth.uid() = user_id);
create policy "owner can insert" on notes
for insert with check (auth.uid() = user_id);using filters which rows are visible; with check validates rows being written.auth.users(id) for ownership; store user_id uuid references auth.users.user_id from auth.uid() or set it server-side.Deno.serve(async (req) => {
const { record } = await req.json();
// privileged work with service role client
return new Response(JSON.stringify({ ok: true }));
});user_id) — policies run per row.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.