supabase-pack Verified Silver

Verified Silver · 87/100 database v1.0.0 by Jeremy Longshore

Complete Supabase integration skill pack with 30 skills covering authentication, database, storage, realtime, edge functions, and production operations. Flagship+ tier vendor pack.

30 Skills
MIT License
Free Pricing

Installation

Open Claude Code and run this command:

/plugin install supabase-pack@claude-code-plugins-plus

Use --global to install for all projects, or --project for current project only.

Skills (30)

supabase-advanced-troubleshooting SKILL.md View full skill →

Deep Supabase diagnostics: pg_stat_statements for slow queries, lock debugging with pg_locks, connection leak detection, RLS policy conflicts, Edge Function cold starts, and Realtime connection drop analysis.

ReadGrepBash(npx supabase:*)Bash(supabase:*)Bash(curl:*)Bash(psql:*)
supabase-architecture-variants SKILL.md View full skill →

Implement Supabase across different app architectures: Next.

ReadWriteEditBash(supabase:*)Bash(npx:*)Grep
supabase-auth-storage-realtime-core SKILL.md View full skill →

Implement Supabase Auth (signUp, signIn, OAuth, session management), Storage (upload, download, signed URLs, bucket policies), and Realtime (Postgres changes, broadcast, presence).

ReadWriteEditBash(npm:*)Bash(supabase:*)Grep
supabase-ci-integration SKILL.md View full skill →

Configure Supabase CI/CD pipelines with GitHub Actions: link projects, push migrations, deploy Edge Functions, generate types, and run tests against local Supabase instances.

ReadWriteEditBash(npx:*)Bash(gh:*)Grep
supabase-common-errors SKILL.md View full skill →

Diagnose and fix Supabase errors across PostgREST, PostgreSQL, Auth, Storage, and Realtime.

ReadGrepBash(curl:*)Bash(supabase:*)Bash(npx:*)
supabase-cost-tuning SKILL.md View full skill →

Optimize Supabase costs through plan selection, database tuning, storage cleanup, connection pooling, and Edge Function optimization.

ReadWriteEditGrepBash(supabase:*)
supabase-data-handling SKILL.md View full skill →

Implement GDPR/CCPA compliance with Supabase: RLS for data isolation, user deletion via auth.

ReadWriteEditBash(npx supabase:*)Bash(supabase:*)Bash(psql:*)GrepGlob
supabase-debug-bundle SKILL.md View full skill →

Collect Supabase diagnostic info for troubleshooting and support tickets.

ReadBash(npx:*)Bash(node:*)Bash(curl:*)Bash(supabase:*)Bash(tar:*)GrepGlob
supabase-deploy-integration SKILL.md View full skill →

Deploy and manage Supabase projects in production.

ReadWriteEditBash(npx:supabase)Bash(supabase:*)Bash(curl:*)
supabase-enterprise-rbac SKILL.md View full skill →

Implement custom role-based access control via JWT claims in Supabase: app_metadata.

ReadWriteEditBash(npx supabase:*)Bash(supabase:*)Bash(psql:*)GrepGlob
supabase-hello-world SKILL.md View full skill →

Run your first Supabase query — insert a row and read it back.

ReadWriteEditBash(npm:*)Bash(npx:*)Bash(supabase:*)
supabase-incident-runbook SKILL.md View full skill →

Execute Supabase incident response: dashboard health checks, connection pool status, pg_stat_activity queries, RLS debugging, Edge Function logs, storage health, and escalation.

ReadGrepBash(npx supabase:*)Bash(supabase:*)Bash(curl:*)Bash(psql:*)
supabase-install-auth SKILL.md View full skill →

Install and configure Supabase SDK, CLI, and project authentication.

ReadWriteEditBash(npm:*)Bash(npx:*)Bash(pnpm:*)Bash(pip:*)Bash(supabase:*)GrepGlob
supabase-known-pitfalls SKILL.md View full skill →

Avoid and fix the most common Supabase mistakes: exposing service_role key in client bundles, forgetting to enable RLS, not using connection pooling in serverless, .

ReadGrep
supabase-load-scale SKILL.md View full skill →

Scale Supabase projects for production load: read replicas, connection pooling tuning via Supavisor, compute size upgrades, CDN caching for Storage, Edge Function regional deployment, and database table partitioning.

ReadWriteEditBash(supabase:*)Bash(psql:*)Bash(curl:*)Grep
supabase-local-dev-loop SKILL.md View full skill →

Configure Supabase local development with the CLI, Docker, and migration workflow.

ReadWriteEditBash(npx:*)Bash(supabase:*)Bash(docker:*)Bash(curl:*)Grep
supabase-migration-deep-dive SKILL.md View full skill →

Database migration patterns with Supabase CLI: npx supabase migration new, zero-downtime migrations, data backfill strategies, schema versioning, rollback strategies, and type generation.

ReadWriteEditBash(npx supabase:*)Bash(supabase:*)Bash(psql:*)GrepGlob
supabase-multi-env-setup SKILL.md View full skill →

Configure Supabase across development, staging, and production with separate projects, environment-specific secrets, and safe migration promotion.

ReadWriteEditBash(npx supabase:*)Bash(supabase:*)Bash(vercel:*)GrepGlob
supabase-observability SKILL.md View full skill →

Set up monitoring and observability for Supabase projects using Dashboard reports, CLI inspect commands, pg_stat_statements, log drains, and alerting.

ReadWriteEditBash(npx supabase:*)Bash(supabase:*)Grep
supabase-performance-tuning SKILL.md View full skill →

Optimize Supabase query performance with indexes, EXPLAIN ANALYZE, connection pooling, column selection, pagination, RPC functions, materialized views, and diagnostics.

ReadWriteEditBash(npx:supabase)Bash(supabase:*)Grep
supabase-policy-guardrails SKILL.md View full skill →

Enforce organizational governance for Supabase projects: shared RLS policy library with reusable templates, table and column naming conventions, migration review process with CI checks, cost alert thresholds, and security audit scripts scanning for common misconfigurations.

ReadWriteEditBash(supabase:*)Bash(psql:*)Bash(npx:*)Grep
supabase-prod-checklist SKILL.md View full skill →

Execute Supabase production deployment checklist covering RLS, key hygiene, connection pooling, backups, monitoring, Edge Functions, and Storage policies.

ReadWriteEditBash(npx supabase:*)Bash(curl:*)Grep
supabase-rate-limits SKILL.md View full skill →

Manage Supabase rate limits and quotas across all plan tiers.

ReadWriteEditBashGrep
supabase-reference-architecture SKILL.md View full skill →

Implement enterprise Supabase reference architectures — monorepo layout, multi-tenant RLS, microservices with cross-project access, framework integration, edge functions, caching, queue patterns, and audit logging.

ReadWriteEditBash(npm:*)Bash(npx:*)Bash(supabase:*)GrepGlob
supabase-reliability-patterns SKILL.md View full skill →

Build resilient Supabase integrations: circuit breakers wrapping createClient calls, offline queue with IndexedDB, graceful degradation with cached fallbacks, health check endpoints, retry with exponential backoff and jitter, and dual-write patterns for critical data.

ReadWriteEditBash(supabase:*)Bash(curl:*)Grep
supabase-schema-from-requirements SKILL.md View full skill →

Design Supabase Postgres schema from business requirements with migrations, RLS, and types.

ReadWriteEditBash(supabase:*)Bash(npx:*)Grep
supabase-sdk-patterns SKILL.md View full skill →

Apply production-ready Supabase SDK patterns for TypeScript and Python projects.

ReadWriteEditGrep
supabase-security-basics SKILL.md View full skill →

Apply Supabase security best practices: anon vs service_role key separation, RLS enforcement, policy patterns, JWT verification, and API hardening.

ReadWriteEditGrepBash(supabase:*)Bash(npx supabase *)
supabase-upgrade-migration SKILL.md View full skill →

Upgrade Supabase SDK and CLI versions with breaking-change detection and automated code migration.

ReadWriteEditBash(npm:*)Bash(npx:*)Bash(pip:*)Bash(supabase:*)Bash(git:*)GrepGlob