skills/synthetic-data-generator/SKILL.md
Synthetic Data Generator: Generate synthetic test data: persons, companies, families, e-commerce, auth systems, CRM, financial, technical IDs. 10 locales, edge cases, deterministic seeding. Use when an agent needs synthetic data generator, generate realistic customer data, usage patterns, and transaction history, edge cases to validate ui robustness, generate, data type, count through AgentPMT-hosted remote tool calls. Discovery terms: synthetic data generator, generate realistic customer data.
npx skillsauth add AgentPMT/agent-skills synthetic-data-generatorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Last updated: 2026-06-10.
If the current date is more than 7 days after the last updated date, reinstall this skill from skills.sh or ClawHub before relying on endpoints, schemas, setup steps, or examples.
The Synthetic Data Generator creates production-quality fake data for development, testing, and demonstrations.
Data Types The tool generates nine data types. Person Profiles include demographics, contact info, and addresses. Company Profiles contain industry classification, revenue, employee counts, and org structures. Family Units provide related household members with shared addresses and relationship mappings. Technical Data covers IPs, UUIDs, MAC addresses, URLs, domains, API keys, and system information. Financial Data generates fake credit cards, bank accounts, transactions, and investment portfolios. Edge Cases produce boundary testing data with unicode, special characters, injection patterns, and null values. E-commerce Datasets create complete online store ecosystems with customers, products, orders, and reviews. Auth System Datasets provide full IAM data with users, roles, permissions, sessions, and audit logs. CRM Datasets generate sales pipeline data with companies, contacts, leads, opportunities, and deals.
Locale Support Data can be generated in 10 locales: en_US, en_GB, de_DE, fr_FR, es_ES, it_IT, pt_BR, nl_NL, pl_PL, and ja_JP.
Complexity Control Simple mode requires only data type and count. Detailed mode enables extended fields and relationships. Dataset sizes range from small (100 records) to medium (500) to large (2000+). Advanced options provide granular control over age ranges, industries, family sizes, currencies, and more.
Testing Features Edge case testing includes unicode, boundary values, special characters, and injection patterns at low, medium, or high severity levels. The generator maintains realistic relationships such as parent-child, customer-order, and user-role mappings. Security testing patterns include SQL injection, XSS attempts, and malformed data.
Scale Simple types support 1–1000 records per request. Datasets generate hundreds to thousands of related records with preserved relationships and data integrity across entities.
Generate realistic synthetic data for testing, development, and prototyping. Supports individual records (person, company, family, technical, financial, edge cases) and complete relational datasets (e-commerce, auth system, CRM). Data is locale-aware with support for 10 regions. Use a seed for reproducible results across runs.
Generate synthetic data of a specified type.
Required Fields:
action (string): "generate"data_type (string): Type of data to generate. One of: person, company, family, technical, financial, edge_cases, ecommerce_dataset, auth_system_dataset, crm_datasetOptional Fields:
count (integer, default: 1): Number of records to generate (1-1000). For dataset types, this is ignored in favor of the size parameter.locale (string, default: "en_US"): Region for names, addresses, phone formats. Options: en_US, en_GB, de_DE, fr_FR, es_ES, it_IT, pt_BR, nl_NL, pl_PL, ja_JPseed (integer, default: null): Random seed for reproducible output. Same seed + same parameters = same data every time. Omit for random data.include_details (boolean, default: true): Include extended fields (addresses, financials, relationships). Set false for minimal records.include_edge_cases (boolean, default: false): Mix in unicode, special characters, and boundary values for robustness testing.size (string, default: "medium"): Only for dataset types (ecommerce_dataset, auth_system_dataset, crm_dataset). Options: small (~100 records), medium (~500 records), large (~2000+ records). Ignored for non-dataset types.options (object): Type-specific advanced options (see below).Individual profiles with names, emails, addresses, demographics.
Options:
age_range (array of 2 integers, 0-120): Filter by age range, e.g. [25, 65]Example:
{
"action": "generate",
"data_type": "person",
"count": 5,
"locale": "fr_FR",
"options": { "age_range": [25, 45] }
}
Business profiles with industry, size, revenue, and sample employees.
Options:
industry_filter (string): Filter to a specific industry. Options: Technology, Healthcare, Finance, Manufacturing, Retail, Educationsize_category (string): Company size. Options: small (1-50 employees), medium (51-500), large (501-5000), enterprise (5000+)Example:
{
"action": "generate",
"data_type": "company",
"count": 3,
"options": { "industry_filter": "Technology", "size_category": "medium" }
}
Family units with parents, children, shared addresses, and relationship mappings.
Options:
family_size_range (array of 2 integers, 2-10): Min and max family members, e.g. [3, 5]Example:
{
"action": "generate",
"data_type": "family",
"count": 2,
"include_details": true,
"options": { "family_size_range": [3, 5] }
}
IPs, UUIDs, URLs, domains, API keys, tokens, and system info.
Options:
data_types (array of strings): Which technical types to include. Options: ip, ipv6, mac, uuid, url, domain, email, user_agent, api_key, token. Default: ["ip", "uuid", "url", "email", "user_agent"]Example:
{
"action": "generate",
"data_type": "technical",
"count": 10,
"options": { "data_types": ["ip", "ipv6", "mac", "uuid", "api_key"] }
}
Credit cards, bank accounts, balances, and transaction history.
Options:
currency (string, default: "USD"): ISO 4217 currency code (e.g. USD, EUR, GBP, JPY)include_transactions (boolean, default: false): Include 5-50 detailed transactions per recordExample:
{
"action": "generate",
"data_type": "financial",
"count": 3,
"options": { "currency": "EUR", "include_transactions": true }
}
Unicode, special characters, boundary values, injection patterns, and malformed data for robustness testing.
Options:
severity_level (string, default: "medium"): Options: low, medium, high. Higher severity produces more extreme test values.categories (array of strings): Which edge case types to include. Options: unicode, length, null, boundary, malformed, injection, special_chars, numeric. Default: ["unicode", "length", "null", "boundary"]Example:
{
"action": "generate",
"data_type": "edge_cases",
"count": 5,
"options": { "severity_level": "high", "categories": ["unicode", "injection", "boundary", "malformed"] }
}
Complete e-commerce dataset with interlinked customers, products, and orders.
Example:
{
"action": "generate",
"data_type": "ecommerce_dataset",
"size": "small",
"seed": 42
}
Authentication/authorization dataset with users, roles, permissions, and sessions.
Example:
{
"action": "generate",
"data_type": "auth_system_dataset",
"size": "medium",
"locale": "en_GB"
}
CRM dataset with companies, contacts, and deals/opportunities with pipeline stages.
Example:
{
"action": "generate",
"data_type": "crm_dataset",
"size": "large",
"seed": 123
}
Use seed to generate identical data across environments:
{
"action": "generate",
"data_type": "person",
"count": 100,
"seed": 12345,
"locale": "en_US"
}
Combine edge cases with regular data:
{
"action": "generate",
"data_type": "person",
"count": 50,
"include_edge_cases": true
}
Disable extended details for lightweight records:
{
"action": "generate",
"data_type": "company",
"count": 20,
"include_details": false
}
count ranges from 1 to 1000. For dataset types, use size instead to control volume.ecommerce_dataset, auth_system_dataset, crm_dataset) return multiple interlinked collections with a record_counts summary.locale parameter affects names, addresses, and phone number formats but not all fields (e.g., currency must be set separately via options).Synthetic Data Generator on AgentPMT.generate.No categories or industry tags are published for this tool.
Complete generated action schema: ./schema.md.
Supported action count: 1.
x402 availability: not enabled for this product.
generate (action slug: generate): Generate synthetic data of a specified type. Supports person profiles, company profiles, family units, technical data, financial data, edge cases, and complete relational datasets (e-commerce, auth system, CRM). Price: 10 credits. Parameters: count, data_type, include_details, include_edge_cases, locale, options, seed, size.Use the compact schema above for ordinary calls. Before a new production integration, or whenever parameters, enum values, nested objects, outputs, or examples are unclear, fetch live details first.
agentpmt-tool-search-and-execution with action: "get_schema", and tool_id: "synthetic-data-generator".agentpmt-tool-search-and-execution with action: "get_instructions" and tool_id: "synthetic-data-generator", or call this product with action: "get_instructions" when the product tool is already selected.MCP schema lookup through the main AgentPMT MCP server:
{
"method": "tools/call",
"params": {
"name": "AgentPMT-Tool-Search-and-Execution",
"arguments": {
"action": "get_schema",
"tool_id": "synthetic-data-generator"
}
}
}
For live examples, keep the same MCP tool and use these arguments:
{
"action": "get_instructions",
"tool_id": "synthetic-data-generator"
}
Authenticated AgentPMT REST schema lookup body:
{
"name": "agentpmt-tool-search-and-execution",
"parameters": {
"action": "get_schema",
"tool_id": "synthetic-data-generator"
}
}
Authenticated AgentPMT REST live examples body:
{
"name": "agentpmt-tool-search-and-execution",
"parameters": {
"action": "get_instructions",
"tool_id": "synthetic-data-generator"
}
}
Product slug: synthetic-data-generator
Marketplace page: https://www.agentpmt.com/marketplace/synthetic-data-generator
../agentpmt-account-mcp-rest-api-setup to connect the main MCP server or REST API for an Agent Group where this tool is enabled.../what-is-agentpmt for marketplace, Agent Group, workflow, MCP, REST, and payment concepts.If those setup skills are not installed beside this product skill, use the downloads below.
Core AgentPMT setup skills:
openclaw skills install what-is-agentpmtnpx skills add AgentPMT/agent-skills --skill what-is-agentpmtopenclaw skills install agentpmt-account-mcp-rest-api-setupnpx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setupskills.sh install script:
npx skills add AgentPMT/agent-skills --skill what-is-agentpmt
npx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setup
MCP call shape after the main AgentPMT MCP server is connected:
{
"method": "tools/call",
"params": {
"name": "Synthetic-Data-Generator",
"arguments": {
"action": "generate",
"count": 1,
"data_type": "person",
"include_details": true,
"include_edge_cases": false,
"locale": "en_US",
"options": {
"age_range": [
0
],
"categories": [
"unicode"
],
"currency": "USD",
"data_types": [
"ip"
],
"family_size_range": [
2
],
"include_transactions": false,
"industry_filter": "Technology",
"severity_level": "medium"
},
"seed": 1,
"size": "medium"
}
}
}
Use the exact tool name returned by tools/list; the name above is the expected readable form.
Authenticated AgentPMT REST call body:
{
"name": "synthetic-data-generator",
"parameters": {
"action": "generate",
"count": 1,
"data_type": "person",
"include_details": true,
"include_edge_cases": false,
"locale": "en_US",
"options": {
"age_range": [
0
],
"categories": [
"unicode"
],
"currency": "USD",
"data_types": [
"ip"
],
"family_size_range": [
2
],
"include_transactions": false,
"industry_filter": "Technology",
"severity_level": "medium"
},
"seed": 1,
"size": "medium"
}
}
Use the setup skill for the account connection details before making REST calls.
passed or success-style boolean, use it as the workflow gate.get_schema or get_instructions before retrying.generate fails, preserve the request parameters and retry only after fixing schema, auth, or payment errors.what-is-agentpmt, page: https://clawhub.ai/agentpmt/what-is-agentpmt; skills.sh: npx skills add AgentPMT/agent-skills --skill what-is-agentpmt)agentpmt-account-mcp-rest-api-setup, page: https://clawhub.ai/agentpmt/agentpmt-account-mcp-rest-api-setup; skills.sh: npx skills add AgentPMT/agent-skills --skill agentpmt-account-mcp-rest-api-setup)tools
Plaud Transcripts Corrected With Your Own Terminology Glossary: Fixes the words your transcription keeps getting wrong, by giving the pipeline your vocabulary instead of hoping a bigger model guesses right. Every speech model mangles terms it has never seen: cell line and reagent names, drug and device names, case and matter numbers, part numbers, local spelling and number conventions, team and client names. Swapping to a different model does not fix this, because none of them have your terms e.
tools
Plaud Spoken Field Notes to a Structured Sheet: Turns a spoken site visit into a filled-in spreadsheet row, so measurements and specs never get typed up twice. Built for anyone who dictates structured details on the job rather than writing them down: window and flooring measurements, equipment specs, inspection findings, punch lists, service call notes. Say the details out loud in the same order each visit (client, room, width, drop, colour, notes) and the workflow reads each new Plaud recordin.
development
Plaud Recordings to Google Calendar Events: Puts the meetings you agree to out loud straight onto your Google Calendar, without Zapier in the middle. Plaud's own app has no Calendar integration, so this closes that gap directly: each new recording is scanned, the transcript pulled, and any genuine scheduling commitment spoken in it ("let's do Tuesday at 3", "I'll come back out Thursday morning") is extracted with the relative date resolved against the recording's own date and your timezone. Eac.
development
One Plaud Recording, Several Differently Formatted Summaries: Gets you past the one-template-per-recording ceiling. The Plaud app applies a single AutoFlow template to a recording, so if you want a short recap for yourself, a decisions-only version for the people who missed it, and a clean action list for your task manager, you are re-running or rewriting by hand. This workflow reads the transcript once and produces every format you have defined in a single pass: you list the output formats you.