Claude Code Plugins

Community-maintained marketplace

Feedback

generating-database-seed-data

@jeremylongshore/claude-code-plugins-plus
362
0

|

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name generating-database-seed-data
description This skill enables Claude to generate realistic test data and database seed scripts for development and testing environments. It uses Faker libraries to create realistic data, maintains relational integrity, and allows configurable data volumes. Use this skill when you need to quickly populate a database with sample data for development, testing, or demonstration purposes. The skill is triggered by phrases like "seed database", "generate test data", "create seed script", or "populate database with realistic data".
allowed-tools Read, Write, Edit, Grep, Glob, Bash
version 1.0.0

Overview

This skill automates the creation of database seed scripts, populating your database with realistic and consistent test data. It leverages Faker libraries to generate diverse and believable data, ensuring relational integrity and configurable data volumes.

How It Works

  1. Analyze Schema: Claude analyzes the database schema to understand table structures and relationships.
  2. Generate Data: Using Faker libraries, Claude generates realistic data for each table, respecting data types and constraints.
  3. Maintain Relationships: Claude ensures foreign key relationships are maintained, creating consistent and valid data across tables.
  4. Create Seed Script: Claude generates a database seed script (e.g., SQL, JavaScript) containing the generated data.

When to Use This Skill

This skill activates when you need to:

  • Populate a development database with realistic data.
  • Create a seed script for automated database setup.
  • Generate test data for application testing.
  • Demonstrate an application with pre-populated data.

Examples

Example 1: Populating a User Database

User request: "Create a seed script to populate my users table with 50 realistic users."

The skill will:

  1. Analyze the 'users' table schema (name, email, password, etc.).
  2. Generate 50 sets of realistic user data using Faker libraries.
  3. Create a SQL seed script to insert the generated user data into the 'users' table.

Example 2: Seeding a Blog Database

User request: "Generate test data for my blog database, including posts, comments, and users."

The skill will:

  1. Analyze the 'posts', 'comments', and 'users' table schemas and their relationships.
  2. Generate realistic data for each table, ensuring foreign key relationships are maintained (e.g., comments linked to posts, posts linked to users).
  3. Create a seed script (e.g., JavaScript with TypeORM) to insert the generated data into the database.

Best Practices

  • Data Volume: Start with a small data volume and gradually increase it to avoid performance issues.
  • Data Consistency: Ensure the Faker libraries used are appropriate for the data types and formats required by your database.
  • Idempotency: Design your seed scripts to be idempotent, so they can be run multiple times without causing errors or duplicate data.

Integration

This skill integrates well with database migration tools and frameworks, allowing you to automate the entire database setup process, including schema creation and data seeding. It can also be used in conjunction with testing frameworks to generate realistic test data for automated testing.