The anon key is public by design
Supabase ships the anon key to the browser on purpose. Security does not come from hiding the key; it comes from Row Level Security policies on the database. AI tools often skip or loosen those policies, so the public key becomes full access.
Missing RLS means open data
A table with RLS disabled, or a policy that returns all rows, lets anyone with the anon key read and write every record. Customer emails, internal tasks, and other tenants' data become available to anyone who opens the network tab.
Working queries hide the problem
The app demos perfectly because the queries run. The failure is invisible until someone changes a user ID in a request, which is why missing RLS survives until a real review or a real breach.