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.
npx agentmods add skills/ozzeron/prompt-pack/postgres-supabasenpx skills add Ozzeron/prompt-pack --skill postgres-supabasegit clone --depth 1 https://github.com/Ozzeron/prompt-packWrote 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.
[](https://agentmods.dev/skills/ozzeron/prompt-pack/postgres-supabase)<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>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.
| Model | Per session | Once 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 |
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.
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, withUSINGandWITH CHECK) auth.usersintegration: triggers to mirror intoprofiles, 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
architecture/database-schema— base conventions.architecture/database-migrations— base migration safety.meta/engineering-principlesmeta/reuse-before-create— before writing a new RLS policy, helper function, or auth predicate, check existing policies andauth.*helpers for one to reuse or extend.meta/token-discipline
Token discipline (specific)
- Read the project's
supabase/migrations/directory — last 3–5 files only. - Read
supabase/config.tomlonce 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.
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.
- 5d ago First seen · 278 lines · 27 tokens per session scan A f0848140e38b
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.
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.…
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…
sql_mastery
CREATE OR REPLACE PROCEDURE sprefreshattributiondaily() LANGUAGE plpgsql AS $$ BEGIN -- 1. Truncate Staging TRUNCATE TABLE stgdailytraffic.
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.
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…
design-postgis-tables
Comprehensive PostGIS spatial table design reference covering geometry types, coordinate systems, spatial indexing, and performance patterns for location-based applications.