managing-supabase

managing-supabase is a skill for Claude Code from FortiumPartners/ensemble. It costs 40 tokens per session (3,087 once invoked), scanned A, original, MIT.

A command-line guide for Supabase, a development platform built around PostgreSQL databases and server-side functions.

In plain words
What is it for?
It helps manage database migrations, run Supabase locally, deploy Edge Functions, link projects, and debug Supabase applications.
Why use it?
It collects the commands for local development and cloud project management in workflows suitable for coding agents.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions Claude Code.

Part of the ensemble-infrastructure plugin — 11 skills, 7 agents shipped together

Good fit It helps manage database migrations, run Supabase locally, deploy Edge Functions, link projects, and debug Supabase applications.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/fortiumpartners/ensemble/managing-supabase
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add FortiumPartners/ensemble --skill managing-supabase
Clone the repo
git clone --depth 1 https://github.com/FortiumPartners/ensemble

Made for: Claude Code.

Or install ensemble-infrastructure, the plugin that ships this one along with the rest of its 11 skills, 7 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for managing-supabase

README.md
[![agentmods](https://agentmods.dev/badge/skills/fortiumpartners/ensemble/managing-supabase.svg)](https://agentmods.dev/skills/fortiumpartners/ensemble/managing-supabase)
Your own site
<a href="https://agentmods.dev/skills/fortiumpartners/ensemble/managing-supabase"><img src="https://agentmods.dev/badge/skills/fortiumpartners/ensemble/managing-supabase.svg" alt="Measured on agentmods" height="20"></a>
Per session 40 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,087 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00040 $0.03087
Opus 5 $0.00020 $0.01543
Sonnet 5 $0.00008 $0.00617
Haiku 4.5 $0.00004 $0.00309

Measured 4d ago against content hash 65edeb6ba47a, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

managing-supabase scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

packages/infrastructure/skills/managing-supabase/SKILL.md · 447 lines

How it starts

The opening of the file, as written. The whole thing — 447 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Supabase CLI Skill

Table of Contents

  1. Quick Reference
  2. Critical: Avoiding Interactive Mode
  3. Prerequisites
  4. Authentication
  5. CLI Decision Tree
  6. Essential Commands
  7. Local Development Ports
  8. Common Workflows
  9. Error Handling
  10. Auto-Detection Triggers
  11. Agent Integration
  12. Quick Reference Card
  13. Further Reading

Quick Reference

Supabase CLI enables local development, database migrations, Edge Functions deployment, and project management for Supabase projects.


Critical: Avoiding Interactive Mode

Supabase CLI can enter interactive mode which will hang Claude Code. Always use flags to bypass prompts:

Command WRONG (Interactive) CORRECT (Non-Interactive)
Login supabase login Use SUPABASE_ACCESS_TOKEN env var
Link project supabase link supabase link --project-ref <ref>
Create project supabase projects create supabase projects create <name> --org-id <id> --region <region>
Start local supabase start supabase start (non-interactive by default)
Deploy functions supabase functions deploy supabase functions deploy <name> --project-ref <ref>

Never use in Claude Code:

  • supabase login without token (opens browser)
  • Any command without --project-ref when not linked
  • Interactive prompts for organization/region selection

Always include:

  • SUPABASE_ACCESS_TOKEN environment variable for authentication
  • --project-ref flag or pre-linked project
  • Explicit flags for all configuration options

Prerequisites

Installation Verification

supabase --version
# Expected: 2.x.x or higher

Read the full file on GitHub · 447 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 447 lines · 40 tokens per session scan A 65edeb6ba47a

Subscribe to this mod's changes

managing-supabase is a skill published in the GitHub repository FortiumPartners/ensemble (11 stars, last pushed today), licensed MIT. It adds 40 tokens to every session and 3,087 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

migration-audit

Stack-aware migration safety audit: data loss risks, destructive ops without rollback, NOT NULL without DEFAULT, unsafe ALTER TYPE, lock-heavy DDL, constraint sequencing. Supports Prisma, Drizzle, Supabase CLI, raw SQL.

marcoguillermaz/Tierward · 0 tokens

cli-audit-data

Audit PostgreSQL database safety in Rust/SQLx applications. Use for schemas, migrations, constraints, indexes, transactions, repositories, state transitions, idempotency, concurrency, queues, multi-tenancy, soft deletion, ledgers, auditability, repair, database incidents, or whenever SQLx and PostgreSQL changes could…

Destynova2/cli-code-skills · 85 tokens

cli-forge-data

Design and implement safe PostgreSQL database changes for Rust/SQLx applications. Use for new schemas, migrations, constraints, indexes, repositories, transaction boundaries, state machines, idempotency, concurrency control, queues, multi-tenancy, soft deletion, ledgers, outbox/inbox, repair jobs, or corrections…

Destynova2/cli-code-skills · 76 tokens

cloud-sql-basics

This file generates or explains Cloud SQL resources. Use this file when the user asks to create a Cloud SQL instance or database for MySQL, PostgreSQL, or SQL Server. Cloud SQL manages third-party MySQL, PostgreSQL, and SQL Server instances as resources in Cloud SQL. For example, when Cloud SQL creates an open-source…

google/skills · 108 tokens

x-osv

CLI for Google OSV database. Query vulnerabilities for packages, scan local projects for vulnerable dependencies. Dependency: This is an x-cmd module. Install x-cmd first (see x-cmd skill). Required Tool: Install osv-scanner for project scanning (see https://github.com/google/osv-scanner).

x-cmd/x-cmd · 72 tokens

moai-platform-database-cloud

Cloud database platform specialist covering Neon (serverless PostgreSQL), Supabase (PostgreSQL 16 with real-time), and Firebase Firestore (NoSQL with offline sync). Use when choosing or setting up cloud databases.

modu-ai/moai-adk · 51 tokens