skills$openclaw/mock-gen
lxgicstudios3.2k

by lxgicstudios

mock-gen – OpenClaw Skill

mock-gen is an OpenClaw Skills integration for coding workflows. Generate realistic mock data from descriptions, types, or schemas. Use when you need test data fast.

3.2k stars5.5k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namemock-gen
descriptionGenerate realistic mock data from descriptions, types, or schemas. Use when you need test data fast. OpenClaw Skills integration.
ownerlxgicstudios
repositorylxgicstudios/mock-gen
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @lxgicstudios/mock-gen
last updatedFeb 7, 2026

Maintainer

lxgicstudios

lxgicstudios

Maintains mock-gen in the OpenClaw Skills directory.

View GitHub profile
File Explorer
3 files
.
_meta.json
274 B
README.md
515 B
SKILL.md
2.7 KB
SKILL.md

name: mock-gen description: Generate realistic mock data from descriptions, types, or schemas. Use when you need test data fast.

Mock Gen

Every developer has been there. You need test data and you end up writing the same boring JSON by hand or copying from some random Stack Overflow answer. This tool generates realistic mock data from plain English descriptions, TypeScript types, or JSON schemas. Tell it what you want, how many records, and what format. Done.

One command. Zero config. Just works.

Quick Start

npx ai-mock-data "e-commerce users with name, email, address, and order history"

What It Does

  • Generates realistic mock data from plain English descriptions
  • Supports TypeScript types and JSON schemas as input
  • Outputs in JSON, CSV, or SQL insert format
  • Configurable record count (default 10)
  • Can write directly to a file with the --output flag

Usage Examples

# Generate 10 user records as JSON
npx ai-mock-data "users with name, email, and signup date"

# Generate 50 product records as CSV
npx ai-mock-data "products with SKU, name, price, and category" -c 50 -f csv

# Generate from a TypeScript type file and save to disk
npx ai-mock-data "fill this schema" -s ./types/User.ts -o mock-users.json

Best Practices

  • Be specific in descriptions - "users with realistic US addresses" gets better results than just "users"
  • Use schemas for consistency - If you have TypeScript types, pass them with --schema for exact field matching
  • Start small then scale - Generate 5 records first to check quality, then bump to 100+
  • Pick the right format - Use CSV for spreadsheets, SQL for database seeding, JSON for API mocking

When to Use This

  • Setting up a dev database and need seed data
  • Building a frontend prototype and need realistic API responses
  • Writing tests that need varied, realistic input data
  • Demoing a product and need good-looking sample data

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.

npx ai-mock-data --help

How It Works

The tool takes your description or schema file and sends it to an AI model that understands data structures. It generates realistic, varied records that match your spec. The output gets formatted as JSON, CSV, or SQL inserts depending on what you pick.

License

MIT. Free forever. Use it however you want.

README.md

Mock Gen

Generate realistic mock data from descriptions, types, or schemas. One command, no setup.

Quick Start

npx ai-mock-data "users with name, email, and address" -c 20 -f json

Options

  • -c, --count - Number of records (default: 10)
  • -f, --format - Output format: json, csv, sql
  • -s, --schema - Path to TS type or JSON schema
  • -o, --output - Write to file

Links

MIT License

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. ```bash npx ai-mock-data --help ```

FAQ

How do I install mock-gen?

Run openclaw add @lxgicstudios/mock-gen in your terminal. This installs mock-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/mock-gen. Review commits and README documentation before installing.