Generates realistic, consistent test data and seed scripts for databases, with support for relational integrity, configurable volume, and idempotent runs.
How this command is triggered — by the user, by Claude, or both
Slash command
/data-seeder-generator:seed-dataFiles this command reads when invoked
The summary Claude sees in its command listing — used to decide when to auto-load this command
# Data Seeder Generator Generate realistic, consistent test data for database seeding. ## Seeding Strategies 1. **Faker Libraries**: Use Faker.js, Faker (Python) for realistic data 2. **Relational Integrity**: Maintain foreign key relationships 3. **Realistic Distributions**: Natural data patterns 4. **Configurable Volume**: Control record counts 5. **Idempotent Seeds**: Safe to run multiple times ## Example Seeder (Node.js/TypeORM) ## When Invoked Generate seed scripts with realistic data for testing and development.
Generate realistic, consistent test data for database seeding.
import { faker } from '@faker-js/faker';
export class UserSeeder {
async run() {
const users = [];
for (let i = 0; i < 100; i++) {
users.push({
email: faker.internet.email(),
firstName: faker.person.firstName(),
lastName: faker.person.lastName(),
createdAt: faker.date.past()
});
}
await User.save(users);
}
}
Generate seed scripts with realistic data for testing and development.
npx claudepluginhub fleet-to-force/claude-code-plugins-plus --plugin data-seeder-generator18plugins reuse this command
First indexed Dec 31, 2025
Showing the 6 earliest of 18 plugins
/seed-dataGenerates realistic, consistent test data and seed scripts for databases, with support for relational integrity, configurable volume, and idempotent runs.
/generate-seedsGenerates database seed scripts with realistic, deterministic fake data by analyzing ORM schemas and foreign key relationships.
/seed-dataGenerates realistic seed data scripts matching the project's framework and schema conventions — detects SQL, Rails, Django, Prisma, Laravel, or Knex seeders and produces diverse, consistent test data with edge cases.
/db-seedGenerates database seed scripts with realistic data, configurable by volume (small/medium/large) and purpose (dev/demo/test).
/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.
/mock-data-generatorGenerates realistic mock data using Faker.js — supports schema-based generation, database seeding, and API fixture creation with relational data and bulk output.