skills$openclaw/seed-gen
lxgicstudios2.8k

by lxgicstudios

seed-gen – OpenClaw Skill

seed-gen is an OpenClaw Skills integration for coding workflows. Generate realistic database seed data from your schema. Use when you need test data that looks real.

2.8k stars5.9k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameseed-gen
descriptionGenerate realistic database seed data from your schema. Use when you need test data that looks real. OpenClaw Skills integration.
ownerlxgicstudios
repositorylxgicstudios/seed-gen
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @lxgicstudios/seed-gen
last updatedFeb 7, 2026

Maintainer

lxgicstudios

lxgicstudios

Maintains seed-gen in the OpenClaw Skills directory.

View GitHub profile
File Explorer
9 files
.
src
cli.ts
1.1 KB
index.ts
1.2 KB
_meta.json
274 B
package-lock.json
30.2 KB
package.json
649 B
README.md
585 B
SKILL.md
2.5 KB
tsconfig.json
251 B
SKILL.md

name: seed-gen description: Generate realistic database seed data from your schema. Use when you need test data that looks real.

Seed Gen

Fake data that looks real. No more "test user 1" and "lorem ipsum" everywhere. This tool reads your schema and generates seed data that actually makes sense. Real names, realistic emails, proper timestamps, coherent relationships.

One command. Zero config. Just works.

Quick Start

npx ai-seed prisma/schema.prisma

What It Does

  • Generates realistic seed data based on your schema
  • Understands field types and generates appropriate values
  • Maintains referential integrity across related tables
  • Creates data that tells a coherent story (not random garbage)
  • Outputs ready-to-use seed scripts

Usage Examples

# Generate seed data from schema
npx ai-seed prisma/schema.prisma

# Specify number of records
npx ai-seed prisma/schema.prisma --count 50

# Target specific tables
npx ai-seed prisma/schema.prisma --tables users,posts,comments

# Output as SQL
npx ai-seed prisma/schema.prisma --format sql > seed.sql

Best Practices

  • Match your use case - E-commerce app? Ask for product-focused data. Social app? User interactions.
  • Start small - Generate 10-20 records first to check quality before scaling up
  • Check relationships - Make sure foreign keys point to existing records
  • Add edge cases - Ask for some empty fields, deleted users, old dates to test your UI

When to Use This

  • Starting a new project and need demo data
  • Building UI and need realistic content to design around
  • Testing queries and need enough data to see performance issues
  • Demoing to stakeholders and want it to look professional

Part of the LXGIC Dev Toolkit

This is one of 110+ free developer tools built by LXGIC Studios. No paywalls, no sign-ups, no API keys on free tiers. Just tools that work.

Find more:

Requirements

No install needed. Just run with npx. Node.js 18+ recommended. Requires OPENAI_API_KEY environment variable.

export OPENAI_API_KEY=sk-...
npx ai-seed --help

How It Works

Reads your schema to understand models and relationships. Uses GPT to generate contextually appropriate data that fits your domain. Outputs seed scripts with proper insert order to respect foreign key constraints.

License

MIT. Free forever. Use it however you want.

README.md

ai-seed

Generate realistic database seed data from your schema. Works with Prisma, SQL, Drizzle, TypeORM, and more.

Install

npm install -g ai-seed

Usage

npx ai-seed ./prisma/schema.prisma
# Generates seed script with 10 records per table

npx ai-seed ./prisma/schema.prisma -n 50
# 50 records per table

npx ai-seed ./schema.sql -o seed.ts
# SQL schema, saves to file

Setup

export OPENAI_API_KEY=sk-...

Options

  • -n, --count <number> - Records per table (default: 10)
  • -o, --output <path> - Save to file

License

MIT

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

No install needed. Just run with npx. Node.js 18+ recommended. Requires OPENAI_API_KEY environment variable. ```bash export OPENAI_API_KEY=sk-... npx ai-seed --help ```

FAQ

How do I install seed-gen?

Run openclaw add @lxgicstudios/seed-gen in your terminal. This installs seed-gen into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/lxgicstudios/seed-gen. Review commits and README documentation before installing.