
Dummy Dataset
- 1.9k installs
- 24.9k repo stars
- Updated July 3, 2026
- phuryn/pm-skills
dummy-dataset generates realistic mock datasets in CSV, JSON, SQL, or Python script formats.
About
The dummy-dataset skill creates test data for demos and development with customizable row counts, column specs, business rules, and output formats. Workflow identifies domain type, defines column generators, selects CSV JSON SQL or executable Python output, applies realistic patterns, validates completeness, and ships runnable scripts when requested. Template Python uses configurable ROWS, column definition maps, and save helpers for CSV export. Example specs cover customer feedback with auto-increment ids, ratings, timestamps, and categorical fields. Agents respect stated constraints and relationships between fields. Use when building mock datasets, populating test environments, or generating sample data for prototypes and QA fixtures.
- Supports CSV, JSON, SQL INSERT, and Python generator outputs.
- Configurable columns, row counts, and business constraints.
- Provides Python templates with realistic value generators.
- Validates output completeness and field relationships.
- Targets demos, dev fixtures, and test environment seeding.
Dummy Dataset by the numbers
- 1,907 all-time installs (skills.sh)
- +76 installs in the week ending Aug 5, 2026 (Skillselion tracking)
- Ranked #55 of 911 Databases skills by installs in the Skillselion catalog
- Security screen: LOW risk (skills.sh audit)
- Data as of Aug 5, 2026 (Skillselion catalog sync)
dummy-dataset capabilities & compatibility
- Capabilities
- column spec generation · multi format export · constraint aware data
- Use cases
- testing · database · data analysis
npx skills add https://github.com/phuryn/pm-skills --skill dummy-datasetAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1.9k |
|---|---|
| repo stars | ★ 24.9k |
| Security audit | 3 / 3 scanners passed |
| Last updated | July 3, 2026 |
| Repository | phuryn/pm-skills ↗ |
How do I create realistic test data with specific columns and row counts?
Generate realistic dummy datasets with configurable columns, constraints, and CSV, JSON, SQL, or Python script outputs.
Who is it for?
Demos, QA fixtures, and local dev database seeding.
Skip if: Production data migration or anonymizing real PII at scale.
When should I use this skill?
User needs mock data, sample CSV, or dummy dataset generation.
What you get
Dataset file or executable generator script matching column specs and constraints.
- CSV or JSON data files
- SQL insert scripts
- Python data generator script
Files
Dummy Dataset Generation
Generate realistic dummy datasets for testing with customizable columns, constraints, and output formats (CSV, JSON, SQL, Python script). Creates executable scripts or direct data files for immediate use.
Use when: Creating test data, generating sample datasets, building realistic mock data for development, or populating test environments.
Arguments:
$PRODUCT: The product or system name$DATASET_TYPE: Type of data (e.g., customer feedback, transactions, user profiles)$ROWS: Number of rows to generate (default: 100)$COLUMNS: Specific columns or fields to include$FORMAT: Output format (CSV, JSON, SQL, Python script)$CONSTRAINTS: Additional constraints or business rules
Step-by-Step Process
1. Identify dataset type - Understand the data domain 2. Define column specifications - Names, data types, and value ranges 3. Determine row count - How many sample records needed 4. Select output format - CSV, JSON, SQL INSERT, or Python script 5. Apply realistic patterns - Ensure data looks authentic and valid 6. Add business constraints - Respect business logic and relationships 7. Generate or script data - Create executable output 8. Validate output - Ensure data quality and completeness
Template: Python Script Output
import csv
import json
from datetime import datetime, timedelta
import random
# Configuration
ROWS = $ROWS
FILENAME = "$DATASET_TYPE.csv"
# Column definitions with realistic value generators
columns = {
"id": "auto-increment",
"name": "first_last_name",
"email": "email",
"created_at": "timestamp",
# Add more columns...
}
def generate_dataset():
"""Generate realistic dummy dataset"""
data = []
for i in range(1, ROWS + 1):
record = {
"id": f"U{i:06d}",
# Generate values based on column definitions
}
data.append(record)
return data
def save_as_csv(data, filename):
"""Save dataset as CSV"""
with open(filename, 'w', newline='') as f:
writer = csv.DictWriter(f, fieldnames=data[0].keys())
writer.writeheader()
writer.writerows(data)
if __name__ == "__main__":
dataset = generate_dataset()
save_as_csv(dataset, FILENAME)
print(f"Generated {len(dataset)} records in {FILENAME}")Example Dataset Specification
Dataset Type: Customer Feedback
Columns:
- feedback_id (auto-increment, U001, U002...)
- customer_name (realistic names)
- email (valid email format)
- feedback_date (dates last 90 days)
- rating (1-5 stars)
- category (Bug, Feature Request, Complaint, Praise)
- text (realistic feedback)
- product (electronics, clothing, home)
Constraints:
- Ratings skewed: 40% 5-star, 30% 4-star, 20% 3-star, 10% 1-2 star
- Bug category only with ratings 1-3
- Feature requests only with ratings 3-5
- Email domains realistic (gmail, yahoo, company.com)
Output Deliverables
- Ready-to-execute Python script OR direct data file
- CSV file with proper headers and formatting
- JSON file with valid structure and types
- SQL INSERT statements for database population
- Data validation and constraint compliance
- Realistic, business-appropriate values
- Documentation of data generation logic
- Quick-start instructions for using the dataset
Output Formats
CSV: Flat tabular format, easy to import into spreadsheets and databases
JSON: Nested structure, ideal for APIs and NoSQL databases
SQL: INSERT statements, directly executable on relational databases
Python Script: Executable generator for custom or large datasets
Related skills
How it compares
Pick dummy-dataset for fast agent-generated fixtures; use Faker libraries in code when generation must live inside application test suites.
FAQ
What output formats are supported?
CSV, JSON, SQL inserts, or a runnable Python generation script.
Can I set business rules?
Yes via constraints on column relationships and value ranges in the spec.
Is there a Python template?
Yes, with ROWS config, column maps, and CSV save helpers.
Is Dummy Dataset safe to install?
skills.sh reports 3 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.