Generates seed scripts that actually populate your database with realistic data instead of "test123" and "foo@bar.com". Reads Drizzle schemas or SQL migrations, figures out foreign key dependencies, and outputs TypeScript or SQL files with domain-appropriate sample data. Handles D1's quirks like the 10-row batch limit and TEXT-based JSON fields. The quality rules are solid: it varies the data, matches your domain context, and includes edge cases for testing seeds. You pick small/medium/large volume and dev/demo/testing purpose, and it adjusts the data style accordingly. Nice touch that it makes seeds idempotent so you can re-run them safely. Beats manually writing INSERT statements or copying production data.
npx skills add https://github.com/jezweb/claude-skills --skill db-seed