AgentStack
SKILL verified MIT Self-run

010115 Supabase Platform

skill-natuleadan-skills-010115-supabase-platform · by natuleadan

Supabase platform — Row Level Security, Edge Functions, Realtime patterns, Storage signed URLs, PostgreSQL schema design, and anti-patterns.

No reviews yet
0 installs
14 views
0.0% view→install

Install

$ agentstack add skill-natuleadan-skills-010115-supabase-platform

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

Are you the author of 010115 Supabase Platform? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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 URL
  • SUPABASE_ANON_KEY — Public anon key for client-side
  • SUPABASE_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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.