pii-data-masking
Installation
SKILL.md
Data Masking & PII Protection
This skill focuses on the 'Privacy' layer, ensuring sensitive user data is never exposed unnecessarily.
Instructions
- Identify all PII fields in the database (Emails, Names, Addresses).
- Implement 'Data Masking' for logs and support dashboards (Ex. user@****.com).
- Use 'Tokenization' to store sensitive data outside the main database.
- Encrypt PII fields using unique, per-user keys (Envelope encryption).
- Audit for 'Data Leakage' in error messages and API responses.
Examples
- "Mask all email addresses in my application logs automatically."
- "Implement field-level encryption for user birthdates in PostgreSQL."