3.7k★by lxgicstudios
mock-data – OpenClaw Skill
mock-data is an OpenClaw Skills integration for coding workflows. Generate realistic mock data from TypeScript types
Skill Snapshot
| name | mock-data |
| description | Generate realistic mock data from TypeScript types OpenClaw Skills integration. |
| owner | lxgicstudios |
| repository | lxgicstudios/ai-mock-data |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @lxgicstudios/ai-mock-data |
| last updated | Feb 7, 2026 |
Maintainer

name: mock-data description: Generate realistic mock data from TypeScript types
Mock Data Generator
Give it your types, get realistic fake data. Perfect for tests and development.
Quick Start
npx ai-mock-data ./src/types/User.ts
What It Does
- Reads TypeScript interfaces
- Generates realistic fake data
- Understands field names (email, phone, etc.)
- Creates arrays with varied data
Usage Examples
# Generate from type file
npx ai-mock-data ./src/types/Order.ts
# Generate specific count
npx ai-mock-data ./types/User.ts --count 50
# Output as JSON file
npx ai-mock-data ./types/Product.ts --out ./fixtures/products.json
# Generate for specific type
npx ai-mock-data ./types/index.ts --type Customer
Output Example
[
{
"id": "usr_8x7k2m",
"email": "sarah.chen@gmail.com",
"name": "Sarah Chen",
"createdAt": "2024-01-15T09:23:00Z"
}
]
Smart Field Detection
email→ realistic emailsphone→ formatted phone numbersaddress→ real-looking addressesprice→ appropriate currency values
Requirements
Node.js 18+. OPENAI_API_KEY required.
License
MIT. Free forever.
Built by LXGIC Studios
- GitHub: github.com/lxgicstudios/ai-mock-data
- Twitter: @lxgicstudios
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
Node.js 18+. OPENAI_API_KEY required.
FAQ
How do I install mock-data?
Run openclaw add @lxgicstudios/ai-mock-data in your terminal. This installs mock-data 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/ai-mock-data. Review commits and README documentation before installing.
