Generates realistic-but-fake personally identifiable information (PII) - emails, phone numbers, SSNs / national IDs, addresses, names, credit-card numbers (test BIN ranges), date-of-birth - for non-production environments. Wraps Faker / mimesis with PII-aware constraints so generated values match real format expectations (Luhn-valid card numbers, region-valid phone formats, ITIN/SSN format) without ever generating real-person data. Use when seeding test environments, building demo data, or replacing real PII in copied datasets.
75
94%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
Synthetic PII is data that looks like the real thing (passes
the same format validators) but never matches a real person. This
skill wraps the synthetic-data libraries
(faker-data,
mimesis-data,
bogus-data) with PII-specific
constraints to produce format-valid but identity-safe values.
Default: Faker (Python) - broadest locale coverage and the most
PII-aware defaults (RFC 2606 emails out of the box, deterministic
seeding via Faker.seed()). Use mimesis when the project needs
provider-level locale control (e.g. Japanese addresses with
prefecture accuracy); use Bogus for .NET projects that already
ship it.
seed-data-curator workflow.For each field in the target schema, classify:
| Field | PII tier |
|---|---|
| Direct (regulator-recognized PII). | |
| Full name | Direct. |
| Phone number | Direct. |
| Street address | Direct. |
| Date of birth (alone) | Indirect (combine with name → direct). |
| Postal code (alone) | Indirect. |
| Government ID (SSN, ITIN, NIN, TIN, etc.) | Sensitive PII. |
| Payment card number | Sensitive PII (PCI scope; not GDPR PII per se). |
| Health record fields | Special-category (GDPR Art. 9). |
| User-generated content | Could embed PII; case-by-case. |
This skill generates synthetic values for each - the matching real-data pattern (format) without matching a real person.
Per RFC 2606, these domains are reserved for examples and guaranteed never to deliver to real mailboxes:
example.comexample.orgexample.net*.example (any subdomain)*.test / *.invalid / *.localhost (TLDs reserved for testing)Faker / mimesis / Bogus all default to RFC 2606 domains. Never override to a real domain in synthetic-PII mode - even if your test fixture has good intentions, an integration that actually sends email will spam real recipients.
from faker import Faker
fake = Faker()
fake.email() # 'roccelline1878@example.com' - safe
fake.email(domain='gmail.com') # NEVER - could spam real usersThese need reserved test ranges, not generator defaults - a
format-valid random SSN, phone, or card can collide with a real one.
Emit the documented safe constants (US SSN in the IRS 900-XX-XXXX
range, issuer-published Luhn-valid test card BINs, regional fictional
phone ranges) from the lookup tables:
references/pii-lookup-tables.md.
Never generate values from a real-issuance range.
from mimesis import Address, Locale
addr = Address(Locale.JA)
addr.full_address() # Japanese-format synthetic addressMimesis / Faker generate format-valid addresses but not real
addresses. For absolute safety, prefix the address with [TEST]
or use the example-street convention (100 Test St).
from faker import Faker
fake = Faker()
fake.date_of_birth(minimum_age=18, maximum_age=80)Restrict DOB to plausible ranges; combined with synthetic name + address, the result is structurally complete without identifying a real person.
Mark every generated PII field as synthetic so a downstream review can confirm the dataset's safety:
# fixtures/users-test.yaml
users:
- id: u1
email: alice.doe-synthetic@example.com # Suffix 'synthetic' for clarity
name: Alice Doe
phone: '+1 (555) 0123' # Test range
ssn: '900-12-3456' # IRS test range
card: '4111 1111 1111 1111' # Stripe Visa test card
_synthetic: true # Marker for auditThe _synthetic: true marker is a contract - every consumer
respects it (e.g. a "clear synthetic data" maintenance script can
delete all rows where _synthetic = true without affecting any
real production data).
## Synthetic PII generated for `<dataset-name>`
**Source factory library:** Faker (Python) | mimesis | Bogus | etc.
**Rows generated:** N
**PII tier breakdown:**
- Direct: 4 fields (email, name, phone, address)
- Indirect: 2 fields (zip, dob)
- Sensitive: 2 fields (ssn, card)
### Safety guarantees
- All emails use RFC 2606 reserved domains.
- All phones use region-specific test ranges.
- All SSNs use the IRS test range (`900-XX-XXXX`).
- All cards use issuer-published Luhn-valid test BINs.
- All rows tagged `_synthetic: true`.
### Verification commands
```bash
# Confirm no email matches a real-looking domain
jq -r '.users[].email' fixtures/users-test.yaml | grep -v '@example\.\(com\|org\|net\)' && echo 'WARNING: non-test domain found'
# Confirm SSN range
jq -r '.users[].ssn' fixtures/users-test.yaml | grep -v '^9[0-9]{2}-' && echo 'WARNING: SSN outside IRS test range'
```| Anti-pattern | Why it fails | Fix |
|---|---|---|
Faker email with domain='gmail.com' | Generates <random>@gmail.com - could match a real Gmail user. | Always RFC 2606 domains. |
| Real-format SSN without test-range constraint | Random 9-digit numbers occasionally hit a real-issuance range. | Always use the IRS test range. |
| Real card number ranges | Even "fake" 16-digit Luhn-valid numbers can match a real BIN. | Use issuer-published test BINs only. |
| Copying production database to staging "for realism" | Compliance violation; PII bleeds; legal exposure. | Always synthetic; never copy production rows. |
Skipping the _synthetic: true marker | Cleanup scripts can't distinguish synthetic from real data. | Always tag synthetic rows. |
| Generating PII for ID fields the system stores indefinitely | Synthetic value persists even after the fixture lifecycle. | Use predictable identifiers (e.g. test-user-001) for IDs; reserve synthetic generation for human-facing fields. |
example.com etc.).faker-data,
mimesis-data,
bogus-data - value-engine skills.seed-data-curator - downstream
skill that uses this for E2E seed PII fields.