agentsclimarketplace

Seed fixtures

Skill m-binimran/dev-pack/skills/seed-fixtures

Generate realistic seed data and reset scripts for local Postgres/Supabase development and tests. Use when setting up a dev database, needing test fixtures, or making a reproducible local data state.From its SKILL.md

Install
npx -y skills add m-binimran/dev-pack --skill seed-fixtures

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 2 stars2 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

1.1 KB, 234 tokens by cl100k_base, as published. Nobody here has run it

seed-fixtures

Reproducible local data so dev and tests start from a known state.

Process

  1. Respect FK order: insert parents before children. Reset in reverse.
  2. Make it deterministic: fixed UUIDs/timestamps for anything a test asserts on. Random is fine only for volume/noise data.
  3. Realistic, not lorem: plausible names, emails (@example.com), prices, dates — so the UI looks real.
  4. Provide a reset: a seed.sql that truncates (dev only!) then re-inserts, idempotent.

Output

  • supabase/seed.sql (runs on supabase db reset) or a scripts/seed.ts.
  • A small "reset + seed" command in the README.

Guardrails

  • Seed/reset scripts touch the local DB only. Guard them so they can't point at prod (check the connection string / refuse if host looks like production).
  • Use @example.com emails and obviously-fake data — never real customer data in fixtures.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.