Test Mock Data Generator
Description
Generates realistic mock data for testing and development. Creates users, products, orders, and other entities with proper relationships and valid data.
Code
Skill Code
Mock data includes:
1. Realistic names, emails, addresses
2. Valid formats (phone, SSN, credit card)
3. Proper relationships between entities
4. Configurable quantity
5. Seed "keyword">for reproducibility
6. Multiple output formats (JSON, SQL, CSV)
Usage Examples
Examples
User: generate 100 test users Claude: *generates data* ```javascript "keyword">const users = [ { id: 1, name: "Sarah Johnson", email: "[email protected]", phone: "(555) 234-5678", address: { street: "742 Evergreen Terrace", city: "Springfield", state: "IL", zip: "62701" }, createdAt: "2025-08-14T10:30:00Z" }, // ... 99 more ]; ```
Installation
Add the following to your CLAUDE.md file (project root or ~/.claude/CLAUDE.md for global):
CLAUDE.md
# Test Mock Data Generator Mock data includes: 1. Realistic names, emails, addresses 2. Valid formats (phone, SSN, credit card) 3. Proper relationships between entities 4. Configurable quantity 5. Seed for reproducibility 6. Multiple output formats (JSON, SQL, CSV)
Comments (0)
No comments yet. Be the first to share your thoughts!
Leave a Comment