supabase-skill

supabase-skill is a skill for Claude Code, Codex from tdimino/claude-code-minoan. It costs 69 tokens per session (4,438 once invoked), scanned A, original, MIT.

A guide for configuring and managing Supabase, a hosted development platform built around PostgreSQL databases. It covers connections through MCP, database design, migrations, authentication, and access rules.

In plain words
What is it for?
Use it to connect coding tools to Supabase, design tables and relationships, write migrations, configure authentication, and implement row-level or role-based access control.
Why use it?
It helps avoid common database and permission mistakes when setting up a Supabase project. It also provides guidance for keeping user data separated and protected.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Claude Code.

Good fit Use it to connect coding tools to Supabase, design tables and relationships, write migrations, configure authentication, and implement row-level or role-based access control.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/tdimino/claude-code-minoan/supabase-skill
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 tdimino/claude-code-minoan --skill supabase-skill
Clone the repo
git clone --depth 1 https://github.com/tdimino/claude-code-minoan

Made for: Claude Code, Codex.

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 supabase-skill

README.md
[![agentmods](https://agentmods.dev/badge/skills/tdimino/claude-code-minoan/supabase-skill/github.svg)](https://agentmods.dev/skills/tdimino/claude-code-minoan/supabase-skill)
Your own site
<a href="https://agentmods.dev/skills/tdimino/claude-code-minoan/supabase-skill"><img src="https://agentmods.dev/badge/skills/tdimino/claude-code-minoan/supabase-skill/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for supabase-skill

Your own site · 80×15
<a href="https://agentmods.dev/skills/tdimino/claude-code-minoan/supabase-skill"><img src="https://agentmods.dev/badge/skills/tdimino/claude-code-minoan/supabase-skill.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 69 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,438 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. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 3 findings, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high Privilege Escalation · line 356
    Code accesses credential files (SSH keys, AWS credentials, etc.). This could indicate credential theft attempts.
    Fix: Remove references to credential paths. Use environment variables or secrets managers. For docs, use placeholder paths (e.g., /path/to/config). Never load .env or token files in production code paths.
  • medium MCP Rug Pull · line 64
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
  • medium MCP Rug Pull · line 71
    npx commands without a version suffix (e.g. @1.0.0) create a rug-pull risk if the upstream server is compromised and publishes a malicious update.
    Fix: Pin the version: npx @scope/[email protected]
How audits are shown
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.00069 $0.04438
Opus 5 $0.00034 $0.02219
Sonnet 5 $0.00014 $0.00888
Haiku 4.5 $0.00007 $0.00444

Measured 8d ago against content hash cf8e8c73c985, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

supabase-skill 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 8d ago.

The scan reads SKILL.md. This mod also ships 3 executable files (assets/examples/memory-store.ts, assets/examples/session-management.ts, assets/examples/supabase-client.ts), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

skills/integration-automation/supabase-skill/SKILL.md · 612 lines

How it starts

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

Supabase MCP Skill

Overview

This skill provides comprehensive guidance for working with Supabase through the Model Context Protocol (MCP), enabling AI-powered database operations, modern schema design, and production-ready database architectures.

When to Use This Skill

Use this skill when you encounter ANY of the following:

Setup & Configuration

  • Setting up or configuring Supabase MCP servers (Cursor, Claude Desktop, Claude Code CLI)
  • Connecting AI tools to Supabase projects
  • Debugging MCP connection issues
  • Configuring read-only mode, project scoping, or feature groups

Database Design

  • Designing database schemas following best practices
  • Implementing table relationships (one-to-many, many-to-many, polymorphic)
  • Choosing between normalization patterns (single table vs class table inheritance)
  • Designing for multi-tenancy or microservices
  • Working with temporal data or audit logging

Security & Access Control

  • Implementing Row Level Security (RLS) policies
  • Setting up authentication integration with auth.users
  • Building role-based access control (RBAC)
  • Securing multi-tenant applications
  • Preventing unauthorized data access

Migrations & Schema Evolution

  • Creating and managing database migrations
  • Evolving schemas without breaking changes
  • Handling backward compatibility
  • Using Supabase branching for testing

Production Patterns

  • Session management with timeout logic
  • Memory persistence patterns (dual persistence with soul + process memory)
  • Message storage with region-based organization
  • State management with validation
  • Error handling and graceful degradation

Performance & Optimization

  • Indexing strategies for query performance
  • Query optimization with EXPLAIN ANALYZE
  • Connection pooling configuration
  • Read replica setup for scaling

Quick Reference Examples

1. MCP Server Setup (Claude Code CLI)

# Basic installation with project scoping
claude mcp add --transport stdio \
  --env SUPABASE_ACCESS_TOKEN=your_personal_access_token \
  --scope local \
  supabase -- npx -y @supabase/mcp-server-supabase@latest \
  --project-ref=your_project_ref

# With read-only mode (safe for exploration)
claude mcp add --transport stdio \
  --env SUPABASE_ACCESS_TOKEN=your_token \
  --scope local \
  supabase -- npx -y @supabase/mcp-server-supabase@latest \
  --project-ref=your_project_ref \
  --read-only

Read the full file on GitHub · 612 lines

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. 8d ago First seen · 612 lines · 69 tokens per session scan A cf8e8c73c985

Subscribe to this mod's changes

supabase-skill is a skill published in the GitHub repository tdimino/claude-code-minoan (41 stars, last pushed yesterday), licensed MIT. It adds 69 tokens to every session and 4,438 once invoked, about $0.0003 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

butterbase

AI-native, open-source backend-as-a-service with a built-in Model Context Protocol server. Postgres, auth, storage, functions, AI gateway.

butterbase-ai/butterbase · 34 tokens

postgres-job-queue

PostgreSQL-based job queue with priority scheduling, batch claiming, and progress tracking. Use when building job queues without external dependencies. Triggers on PostgreSQL job queue, background jobs, task queue, priority queue, SKIP LOCKED.

wpank/ai · 53 tokens

supabase

Use when doing ANY task involving Supabase. Triggers: Supabase products (Database, Auth, Edge Functions, Realtime, Storage, Vectors, Cron, Queues); client libraries and SSR integrations (supabase-js, @supabase/ssr) in Next.js, React, SvelteKit, Astro, Remix; auth issues (login, logout, sessions, JWT, cookies…

supabase/agent-skills · 185 tokens

supabase-node

Express/Hono with Supabase and Drizzle ORM.

alinaqi/maggy · 14 tokens

phoenix-contexts

Phoenix context design — creating/splitting contexts, Scope (1.8+), Ecto.Multi, PubSub, routers, plugs, controllers. Use when editing contexts, routers, or designing boundaries.

oliver-kriska/claude-elixir-phoenix · 46 tokens

firebase-data-connect

Builds and deploys Firebase SQL Connect (aka Firebase Data Connect) backends with PostgreSQL securely. Use when designing schemas with tables and relations, writing authorized queries and mutations, configuring real-time data updates, or generating type-safe SDKs. Use when you need a relational database with Firebase…

firebase/agent-skills · 74 tokens