postgres-supabase

postgres-supabase is a skill for Claude Code, Codex from Ozzeron/prompt-pack. It costs 27 tokens per session (2,470 once invoked), scanned A, original, MIT.

A guide for working with PostgreSQL databases through Supabase, a service that adds authentication, file storage, APIs, and server-side functions around PostgreSQL.

In plain words
What is it for?
Use it when designing tables, writing access policies, connecting users to profiles, managing schema changes, configuring storage buckets, or integrating edge functions with the database.
Why use it?
It highlights Supabase-specific choices and common problems that generic database advice may miss, including row-level security (rules controlling which records users can access) and migration workflows.

Skill for Claude CodeCodex

Part of the supabase plugin — 14 skills shipped together , and of fullstack, all-skills

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.

agentmods
npx agentmods add skills/ozzeron/prompt-pack/postgres-supabase
Any agent
npx skills add Ozzeron/prompt-pack --skill postgres-supabase
Clone the repo
git clone --depth 1 https://github.com/Ozzeron/prompt-pack

Made for: Claude Code, Codex.

Or install supabase, the plugin that ships this one along with the rest of its 14 skills.

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

README.md
[![agentmods](https://agentmods.dev/badge/skills/ozzeron/prompt-pack/postgres-supabase.svg)](https://agentmods.dev/skills/ozzeron/prompt-pack/postgres-supabase)
Your own site
<a href="https://agentmods.dev/skills/ozzeron/prompt-pack/postgres-supabase"><img src="https://agentmods.dev/badge/skills/ozzeron/prompt-pack/postgres-supabase.svg" alt="Measured on agentmods" height="20"></a>
Per session 27 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,470 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00027 $0.02470
Opus 5 $0.00014 $0.01235
Sonnet 5 $0.00005 $0.00494
Haiku 4.5 $0.00003 $0.00247

Measured 5d ago against content hash f0848140e38b, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

postgres-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 5d 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.

prompts/architecture/postgres-supabase/SKILL.md · 278 lines

How it starts

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

Postgres + Supabase

You work with Supabase: Postgres database, auth, storage, edge functions. This skill captures the platform-specific decisions and traps that the generic database skills don't cover. Covers self-hosted Postgres too where it overlaps.

When to use

  • Designing or modifying tables on a Supabase project
  • Writing or debugging RLS policies
  • Setting up auth.users → public schema integration
  • Migration workflow (CLI, dashboard, custom scripts)
  • Schema cache issues, PostgREST quirks
  • Storage bucket policies

Do not invoke for generic schema design (use architecture/database-schema) or for non-Postgres databases.

Scope

In scope:

  • RLS policy design (SELECT, INSERT, UPDATE, DELETE, with USING and WITH CHECK)
  • auth.users integration: triggers to mirror into profiles, FK setup
  • Postgres-specific features: jsonb, partial indexes, generated columns, materialized views
  • PostgREST schema cache and reload (NOTIFY pgrst, 'reload schema')
  • Supabase migration workflows (supabase migration new, custom apply scripts, dashboard)
  • Storage bucket creation and access policies
  • Edge functions ↔ DB integration

Out of scope:

  • Pure SQL query tuning (use review/database-review)
  • Frontend Supabase client patterns

Inherits

Token discipline (specific)

  • Read the project's supabase/migrations/ directory — last 3–5 files only.
  • Read supabase/config.toml once if it exists.
  • For RLS questions: read the relevant table's existing policies via SQL or migration; do not re-read the whole RLS history.
  • Skip generated TypeScript types unless types are part of the question.

Read the full file on GitHub · 278 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. 5d ago First seen · 278 lines · 27 tokens per session scan A f0848140e38b

Subscribe to this mod's changes

postgres-supabase is a skill published in the GitHub repository Ozzeron/prompt-pack (8 stars, last pushed 1mo ago), licensed MIT. It adds 27 tokens to every session and 2,470 once invoked, about $0.0001 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-08-31.

Related

Other skills, from other repositories

db-context-supabase

Validate that a Supabase MCP server is reachable, introspect a user-scoped subset of the database (tables, columns, types, RLS policies, optionally functions and recent migrations), and persist the result as DBCONTEXT.md inside the active task folder; adds a single ## DB context cross-link in SOURCEOFTRUTH.md.…

Mozurok/fhorja.dev · 208 tokens

db-context-postgres

Validate that a generic Postgres database (GCP Cloud SQL, GKE Autopilot, self-hosted, etc.) is reachable via psql or pgdump, introspect a user-scoped subset of the schema (extensions, tables, columns, indexes, foreign keys, and optionally RLS policies and functions), and persist the result as DBCONTEXT.md inside the…

Mozurok/fhorja.dev · 230 tokens

sql_mastery

CREATE OR REPLACE PROCEDURE sprefreshattributiondaily() LANGUAGE plpgsql AS $$ BEGIN -- 1. Truncate Staging TRUNCATE TABLE stgdailytraffic.

MidOSresearch/midos · 0 tokens

postgresql-table-design

Use this skill when designing or reviewing a PostgreSQL-specific schema. Covers best-practices, data types, indexing, constraints, performance patterns, and advanced features.

wshobson/agents · 37 tokens

postgres-database-migration

Use this skill for planning, testing, and safely executing PostgreSQL schema migrations — especially when working with production data or shared databases. Trigger when user asks to: Test a schema migration before applying it to production Add, remove, or rename columns safely on a live table Change a column's data…

timescale/pg-aiguide · 220 tokens

design-postgis-tables

Comprehensive PostGIS spatial table design reference covering geometry types, coordinate systems, spatial indexing, and performance patterns for location-based applications.

timescale/pg-aiguide · 31 tokens