dummy-dataset
phuryn/pm-skills
Generate realistic dummy datasets for testing with customizable columns, constraints, and multiple output formats.
What is dummy-dataset?
Creates realistic test datasets with configurable columns, row counts, and business constraints. Output as CSV, JSON, SQL, or executable Python scripts for immediate use in development, testing, and demos.
- Generate datasets with auto-increment IDs, realistic names, emails, timestamps, and custom fields
- Apply business constraints like rating distributions, category rules, and data relationships
- Output in multiple formats: CSV, JSON, SQL INSERT statements, or Python generator scripts
- Create datasets of any size from dozens to thousands of rows
- Validate data quality and ensure constraint compliance
- Support realistic value patterns (email domains, date ranges, categorical distributions)
How to install dummy-dataset
npx skills add https://github.com/phuryn/pm-skills --skill dummy-datasetHow to use dummy-dataset
- 1.Specify the dataset type (e.g., customer feedback, transactions, user profiles)
- 2.Define columns with data types and value ranges needed
- 3.Set the number of rows to generate
- 4.Choose output format (CSV, JSON, SQL, or Python script)
- 5.Specify any business constraints or distribution rules
- 6.Execute the skill to generate the dataset or script
- 7.Validate the output and import into your test environment
Use cases
- Create customer feedback datasets with realistic ratings and text for testing feedback systems
- Generate transaction records with proper date ranges and amount distributions for financial testing
- Build user profile datasets with valid emails and names for authentication system testing
- Populate test databases with SQL INSERT statements for integration testing
- Generate sample data for API demos and documentation examples
- QA engineers building test datasets
- Backend developers populating test databases
- Frontend developers needing mock data for UI development
- Data engineers validating ETL pipelines
- Product managers creating demo environments
dummy-dataset FAQ
CSV for spreadsheets and databases, JSON for APIs and NoSQL, SQL INSERT statements for relational databases, and Python scripts for custom or large-scale generation.
Yes. You can specify constraints like rating distributions, category rules, date ranges, and relationships between fields to ensure realistic data patterns.
The skill supports any row count. You specify the number via the $ROWS argument (default 100).
Yes. Use the $COLUMNS argument to specify exact field names, data types, and value ranges for your dataset.
Yes. The skill applies realistic patterns like valid email domains, proper date ranges, authentic names, and business-appropriate value distributions.
Full instructions (SKILL.md)
Source of truth, from phuryn/pm-skills.
name: dummy-dataset description: "Generate realistic dummy datasets for testing with customizable columns, constraints, and output formats (CSV, JSON, SQL, Python script). Use when creating test data, building mock datasets, or generating sample data for development and demos."
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
- Identify dataset type - Understand the data domain
- Define column specifications - Names, data types, and value ranges
- Determine row count - How many sample records needed
- Select output format - CSV, JSON, SQL INSERT, or Python script
- Apply realistic patterns - Ensure data looks authentic and valid
- Add business constraints - Respect business logic and relationships
- Generate or script data - Create executable output
- 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
More from phuryn/pm-skills and the wider catalog.

grammar-check
Identify grammar, logic, and flow errors with targeted fix suggestions—no full rewrites.

growth-loops
Identify and design growth loops (flywheels) for sustainable, product-led traction.

gtm-motions
Identify and score the best GTM motions (Inbound, Outbound, Paid, Community, Partners, ABM, PLG) for your product strategy.

gtm-strategy
Create a comprehensive go-to-market strategy with channels, messaging, metrics, and launch timeline.

ideal-customer-profile
Synthesize customer research into a detailed Ideal Customer Profile with demographics, behaviors, JTBD, and pain points.

identify-assumptions-existing
Surface risky assumptions across Value, Usability, Viability, and Feasibility for existing product features.