Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

generating-database-seed-data生成数据库种子数据

Agent Skill

用于辅助数据库表结构、查询语句、迁移脚本和数据维护任务。它适合让 Agent 分析 schema、编写 SQL、排查查询问题、整理索引或生成迁移建议。使用时需要明确数据库类型、连接环境和目标表,区分只读分析与写入变更;涉及删除、更新、迁移和批量导入时,应优先 dry-run、备份或事务保护,避免误操作。

总安装

783

周安装

32

GitHub Stars

2,076

下载量

251
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:generating-database-seed-data(生成数据库种子数据)
来源仓库:https://github.com/jeremylongshore/claude-code-plugins-plus-skills
仓库路径:skills/generating-database-seed-data
安装命令:
npx skills add https://github.com/jeremylongshore/claude-code-plugins-plus-skills --skill generating-database-seed-data
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/jeremylongshore/claude-code-plugins-plus-skills --skill generating-database-seed-data

简介

用于辅助数据库表结构、查询语句和迁移脚本的生成与维护。

  • 适合分析 schema、编写 SQL 或排查查询问题。
  • 通过 npx skills add 命令从 GitHub 仓库安装。
  • 使用时需明确数据库类型和连接环境,涉及写入操作时应优先备份。
  • generating-database-seed-data 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Data Seeder Generator

Overview

Generate realistic database seed scripts that populate development and testing environments with representative data. This skill creates seed data that respects foreign key relationships, unique constraints, check constraints, and data type validations using Faker libraries (faker.js, Faker for Python, or raw SQL with random functions).

Prerequisites

  • Database schema definition (SQL DDL, ORM models, or Prisma schema) to understand table structures
  • Target database connection for schema introspection (optional, can work from DDL files)
  • Faker library available: @faker-js/faker (Node.js), faker (Python), or Bogus (.NET)
  • Knowledge of referential integrity constraints (foreign keys, cascades)
  • Target data volume per table (e.g., 100 users, 1000 orders, 5000 line items)

Instructions

  1. Analyze the database schema to catalog all tables, columns, data types, constraints, and foreign key relationships. Build a dependency graph where parent tables (referenced by foreign keys) must be seeded before child tables.
  2. Determine the seeding order by topologically sorting the dependency graph. Tables with no foreign keys are seeded first (users, categories, products), then tables referencing them (orders, reviews), then junction tables and deeply nested tables last.
  3. Map each column to an appropriate Faker generator based on column name and data type:

- first_name, last_name -> faker.person.firstName(), faker.person.lastName() - email -> faker.internet.email() with unique enforcement - phone -> faker.phone.number() - address, city, state, zip -> faker.location.* - created_at, updated_at -> faker.date.between({from: '2023-01-01', to: '2024-12-31'}) - price, amount -> faker.commerce.price({min: 1, max: 999}) - description, bio -> faker.lorem.paragraph() - status -> Random selection from CHECK constraint values or enum values - uuid -> faker.string.uuid()

  1. Generate foreign key values by referencing previously inserted parent records. Store parent IDs in arrays during generation and randomly select from them for child records. Ensure every parent has at least one child (if the relationship is expected) and distribute children realistically (e.g., Zipf distribution where some users have many orders, most have few).
  2. Handle unique constraints by tracking generated values in a Set and regenerating on collision. For email addresses, append a counter or use faker.internet.email({firstName, lastName}) with unique names.
  3. Respect CHECK constraints and ENUM types by reading the allowed values from the schema and restricting random selection to valid options. For range constraints (CHECK (age >= 18 AND age <= 120)), configure Faker to generate within the valid range.
  4. Generate the seed script in the appropriate format:

- Raw SQL: INSERT INTO users (name, email,...) VALUES ('John Doe', 'john@example.com',...); with proper escaping - TypeORM/Prisma: TypeScript seed file using prisma.user.createMany() or repository.save() - Django: Python fixtures in JSON format or management command - Knex: JavaScript seed file using knex('users').insert([...])

  1. Make seed scripts idempotent: wrap in a transaction, truncate target tables in reverse dependency order before inserting, or use upsert operations (ON CONFLICT DO NOTHING).
  2. Add configurable volume control: accept a scale factor parameter that multiplies base counts (scale=1: 100 users, scale=10: 1000 users). Maintain consistent ratios between related tables (1 user: 5 orders: 15 line items).
  3. Validate the generated seed data by running it against an empty database, then checking: all foreign key references resolve, unique constraints hold, check constraints pass, and row counts match expectations.

Output

  • Seed script files in SQL, TypeScript, Python, or JavaScript format
  • Faker configuration mapping columns to appropriate generators
  • Dependency order listing the correct table insertion sequence
  • Validation queries to verify seed data integrity after insertion
  • Volume configuration with scale factor and per-table row counts

Error Handling

ErrorCauseSolution
Foreign key constraint violation during seedingChild records reference parent IDs that do not existVerify seeding order follows dependency graph; ensure parent seed completes before child seed starts
Unique constraint violationFaker generated duplicate values for unique columnsTrack generated values in a Set; use faker.helpers.unique() wrapper; append sequential suffix for high-volume unique fields
CHECK constraint violationGenerated value outside allowed range or not in enum listRead CHECK constraints from schema; configure Faker min/max ranges; restrict enum selection to valid values
Seed script too slow for large volumesIndividual INSERT statements instead of batch operationsUse batch inserts (INSERT INTO... VALUES (...), (...), (...)); use COPY command for PostgreSQL; disable indexes during bulk insert
Unrealistic data distributionAll records have uniform random valuesUse weighted random selection for status fields; apply Zipf distribution for popularity-based relationships; generate time-series data with realistic patterns

Examples

Seeding an e-commerce database with 10,000 orders: Generate 500 users, 200 products across 15 categories, 10,000 orders (distributed over 12 months with higher volume in November-December), and 35,000 line items. Each order has 1-5 line items, prices follow a realistic distribution ($5-$500 with most under $50), and order statuses follow a funnel pattern (70% delivered, 15% shipped, 10% processing, 5% cancelled).

Creating test data for a multi-tenant SaaS application: Generate 5 tenants, each with 20-100 users, organization settings, and tenant-specific data. Tenant isolation is maintained in seed data by assigning all records to a specific tenant_id. One "demo" tenant has curated showcase data with meaningful names and descriptions.

Populating a social media prototype: Generate 1,000 users with profile photos (sample image URLs from picsum.photos), 5,000 posts with timestamps following a realistic posting pattern (more activity on weekdays, peak at noon), 15,000 comments with reply threading (30% of comments are replies to other comments), and 50,000 likes distributed by post popularity.

Resources

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.61%
按下载量换算87

Claude

31.85%
按下载量换算80

Cursor

18.44%
按下载量换算46

Gemini CLI

9.1%
按下载量换算23

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills