seed-gen

Verified·Scanned 2/18/2026

This skill generates realistic database seed data from a provided schema using OpenAI. It requires OPENAI_API_KEY and sends the schema to OpenAI via openai.chat.completions.create, with no other sensitive or obfuscated operations present.

from clawhub.ai·v3b49fae·42.1 KB·0 installs
Scanned from 1.0.1 at 3b49fae · Transparency log ↗
$ vett add clawhub.ai/lxgicstudios/seed-gen

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