busirocket-supabase

📁 busirocket/agents-skills 📅 Jan 29, 2026
25
总安装量
25
周安装量
#7895
全站排名
安装命令
npx skills add https://github.com/busirocket/agents-skills --skill busirocket-supabase

Agent 安装分布

mcpjam 25
roo 25
kilo 25
antigravity 25
junie 25
windsurf 25

Skill 文档

Supabase Boundaries

Service boundary patterns for Supabase projects.

When to Use

Use this skill only when:

  • Working in a project that uses Supabase
  • Creating or refactoring Supabase access code
  • Enforcing a clear boundary between Supabase and the rest of the app

Non-Negotiables (MUST)

  • Single boundary: All Supabase access lives in a dedicated layer (service wrappers). No direct Supabase calls from outside that layer.
  • Single client: The Supabase client is created in one module; all Supabase usage goes through that client and your service wrappers.
  • Focused wrappers: Keep wrappers small, focused, and typed.

Rules

Supabase Access

  • supabase-access-rule – Isolate Supabase access in service wrappers
  • supabase-services-usage – Callers outside the service layer must not use Supabase directly

Related Skills

  • busirocket-core-conventions – Service boundaries and structure

How to Use

Read individual rule files for detailed explanations and code examples:

rules/supabase-access-rule.md
rules/supabase-services-usage.md

Each rule file contains:

  • Brief explanation of why it matters
  • Code examples (correct and incorrect patterns)
  • Additional context and best practices