Install
$ agentstack add skill-natuleadan-skills-010115-supabase-platform ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Supabase Platform
Overview
Supabase is an open-source Firebase alternative built on PostgreSQL. This skill covers RLS security, Edge Functions (Deno), Realtime (Broadcast + Postgres Changes), Storage, schema design conventions, and common anti-patterns.
Quick Reference
Core Concepts
| Area | Description | |------|-------------| | Database | PostgreSQL with UUID v4, snake_case, audit columns | | RLS | Row Level Security — mandatory on all tables | | Auth | auth.uid() in RLS policies, custom claims in JWT | | Storage | Private buckets + signed URLs, RLS on storage.objects | | Realtime | Broadcast (low-latency pub-sub) vs Postgres Changes (WAL-based) | | Edge Functions | Deno runtime, Hono router, service role key |
Environment Variables
SUPABASE_URL— Supabase project URLSUPABASE_ANON_KEY— Public anon key for client-sideSUPABASE_SERVICE_ROLE_KEY— Server-side key (bypasses RLS)
References
- [RLS Security](references/rls-security.md) — Row Level Security policies, null safety, indexes
- [Edge Functions](references/edge-functions.md) — Deno runtime, Hono router, setup
- [Realtime Patterns](references/realtime-patterns.md) — Broadcast vs Postgres Changes, channels
- [Storage](references/storage-implementation.md) — Signed URLs, TUS uploads, bucket RLS
- [Schema Design](references/schema-design.md) — PostgreSQL conventions, constraints, ENUMs
- [Anti-Patterns](references/anti-patterns.md) — Common mistakes to avoid
- [SQL Examples](references/code-examples-sql.md) — RLS, schema, storage, triggers
- [API Examples](references/code-examples-api.md) — Edge Functions, Realtime, client usage
- [Quick Reference](references/reference.md) — Cheat sheet
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: natuleadan
- Source: natuleadan/skills
- License: MIT
- Homepage: https://www.skills.sh/natuleadan/skills
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.