schema-designer

A design guide for normalized PostgreSQL or Supabase database schemas. It defines tables, columns, relationships, indexes, keys, and data-integrity rules.

In plain words
What is it for?
Use it when creating tables, adding entities, or reviewing a data model, including foreign keys, constraints, indexes, row-level security handoffs, and personal-data fields.
Why use it?
It reduces duplicated data and prevents common database problems from being left for application code to handle later.

Skill for Claude CodeCodex

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/m-binimran/dev-pack/schema-designer
Any agent
npx skills add m-binimran/dev-pack --skill schema-designer
Clone the repo
git clone --depth 1 https://github.com/m-binimran/dev-pack

Made for: Claude Code, Codex.

Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 421 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.00046 $0.00421
Opus 5 $0.00023 $0.00211
Sonnet 5 $0.00009 $0.00084
Haiku 4.5 $0.00005 $0.00042

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

Security

Grade A, and why

schema-designer 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 2d 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.

skills/schema-designer/SKILL.md · 33 lines

What it actually says

schema-designer

Design a Postgres schema that's correct first, fast second.

Process

  1. List the entities and relationships before writing SQL. State cardinality (1:1, 1:N, N:M).
  2. Normalize to 3NF unless there's a measured reason to denormalize. Note any denormalization explicitly.
  3. Write the DDL following the conventions below.
  4. Add indexes for every foreign key and every column used in frequent WHERE/ORDER BY. Justify each.
  5. Add constraintsNOT NULL, CHECK, UNIQUE, FK ON DELETE behavior. Don't leave integrity to app code.

Conventions

  • Tables: plural snake_case (order_items). Columns: snake_case.
  • Primary key: id uuid primary key default gen_random_uuid() (Supabase-friendly).
  • Timestamps: created_at timestamptz not null default now(), updated_at timestamptz (with a trigger).
  • Foreign keys: <entity>_id, always with an explicit references + on delete rule.
  • Money: numeric(12,2), never float. Booleans: is_/has_ prefix.

Output

  • The create table statements.
  • The index list with a one-line reason each.
  • A note on which tables need RLS (hand off to rls-policy) and which columns hold PII.

Guardrails

  • Don't ship a table holding user data with RLS unconsidered.
  • Don't use text for everything — pick real types and constraints.
  • For N:M, create the explicit join table; don't fake it with arrays unless justified.
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. 2d ago First seen · 33 lines · 46 tokens per session scan A 23d6067d06e4

Subscribe to this mod's changes

schema-designer is a skill published in the GitHub repository m-binimran/dev-pack (2 stars, last pushed 2mo ago), licensed MIT. It adds 46 tokens to every session and 421 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-08-31.

Related

Other skills, from other repositories

db-repair

Auto-fix gbrain's Postgres access so the brain stays available. When any gbrain command or MCP tool result carries a GBRAINDBACCESS marker (or an operator reports the brain database is down), run the hardcoded gbrain db-repair ladder: diagnose, apply the safe tier, verify. The action is ALWAYS the hardcoded command …

garrytan/gbrain · 96 tokens

investigate-issue

Investigate a GitHub issue by fetching details, analyzing the codebase, researching documentation, and presenting an actionable implementation plan with test guidance. Use when asked to investigate, analyze, triage, or plan work for a GitHub issue. Invoked with /investigate-issue or /investigate-issue (prompts for ID).

maximhq/bifrost · 78 tokens

stack-absorb

Manually distribute working-tree changes (or a batch of edits already made on the current branch) across the correct branches of a Graphite (gt) stack, when gt absorb's blame-based auto-split doesn't match the logical grouping - e.g. new code with no prior line to blame onto, or changes that conceptually belong with a…

maximhq/bifrost · 125 tokens

harness-test-writer

Add regression test cases to the Bifrost provider harness (the Postman collection run via make run-provider-harness-test) based on a merged PR or a GitHub issue. Fetches the PR/issue, traces the affected wire path in the codebase, checks existing harness coverage, designs cases following harness conventions, inserts…

maximhq/bifrost · 133 tokens

postgres-pro

Use when optimizing PostgreSQL queries, configuring replication, or implementing advanced database features. Invoke for EXPLAIN analysis, JSONB operations, extension usage, VACUUM tuning, performance monitoring.

Jeffallan/claude-skills · 41 tokens

setup-timescaledb-hypertables

Use this skill when creating database schemas or tables for Timescale, TimescaleDB, TigerData, or Tiger Cloud, especially for time-series, IoT, metrics, events, or log data. Use this to improve the performance of any insert-heavy table. Trigger when user asks to: Create or design SQL schemas/tables AND…

timescale/pg-aiguide · 219 tokens