From seed-generator
Generates database seed scripts with realistic, contextually-aware data (names, addresses, products) respecting foreign key constraints and insertion order. Supports ORM-native formats like Prisma and Knex.
How this command is triggered — by the user, by Claude, or both
Slash command
/seed-generator:generate-seedsThe summary Claude sees in its command listing — used to decide when to auto-load this command
# /generate-seeds - Generate Database Seeds Generate database seed scripts with realistic data for development. ## Steps 1. Read the database schema from ORM models, migrations, or schema files 2. Determine table dependencies from foreign key relationships 3. Calculate insertion order to satisfy all foreign key constraints 4. Generate realistic data for each table using contextual patterns: - User tables: realistic names, emails, hashed passwords - Product tables: real-sounding names, descriptions, prices - Address tables: valid-format addresses with real city/state combinations...
Generate database seed scripts with realistic data for development.
6plugins reuse this command
First indexed Mar 30, 2026
npx claudepluginhub samuelj90/awesome-claude-code-toolkit --plugin seed-generator/generate-seedsGenerates database seed scripts with realistic, contextually-aware data (names, addresses, products) respecting foreign key constraints and insertion order. Supports ORM-native formats like Prisma and Knex.
/seed-dataGenerates realistic seed data scripts matching the project's existing mechanism (SQL, framework seeder, or factory library). Accepts table names, a schema file, or a description as input.
/seed-dataGenerates realistic, consistent test data and seed scripts for databases, with support for relational integrity, configurable volume, and idempotent runs.
/seed-dbDetects the project's database and ORM, reads the schema, generates a seed script with realistic test data, and runs it safely with transaction wrapping and idempotent checks.
/db-seedGenerates database seed scripts with realistic data, configurable by volume (small/medium/large) and purpose (dev/demo/test).
/seedSets up database seeding infrastructure with factories, test fixtures, fake data generation, idempotent scripts, environment-aware configs, large dataset optimization, and production anonymization. Detects ORM/DB and outputs factories, scripts, queries.