Seed fixtures
Guardrails, skills, loops, hooks & review agents for database + website builders on Claude Code (Next.js + Supabase).
npx -y skills add m-binimran/dev-pack --skill seed-fixturesAssembled 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.
What its author says it does
Copied from the file, not written here
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.
SKILL.md
1.1 KB, as published. Nobody here has run it
seed-fixtures
Reproducible local data so dev and tests start from a known state.
Process
- Respect FK order: insert parents before children. Reset in reverse.
- Make it deterministic: fixed UUIDs/timestamps for anything a test asserts on. Random is fine only for volume/noise data.
- Realistic, not lorem: plausible names, emails (
@example.com), prices, dates — so the UI looks real. - Provide a reset: a
seed.sqlthat truncates (dev only!) then re-inserts, idempotent.
Output
supabase/seed.sql(runs onsupabase db reset) or ascripts/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.comemails and obviously-fake data — never real customer data in fixtures.