salesforce-data-handling

Featured

Implement Salesforce data privacy, GDPR/CCPA compliance, and field-level encryption patterns. Use when handling PII in Salesforce records, implementing data subject access requests, or configuring Salesforce Shield encryption. Trigger with phrases like "salesforce data privacy", "salesforce PII", "salesforce GDPR", "salesforce data retention", "salesforce encryption", "salesforce CCPA".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Salesforce Data Handling ## Overview Handle sensitive data correctly when integrating with Salesforce: PII classification, GDPR/CCPA compliance with Salesforce's Individual object, data retention, and field-level encryption. ## Prerequisites - Understanding of GDPR/CCPA requirements - Salesforce org with data classification enabled (Setup > Data Classification) - For encryption: Salesforce Shield license (Platform Encryption) ## Instructions ### Step 1: Salesforce Data Classification ```typescript // Salesforce has built-in data classification on fields // Setup > Object Manager > [Object] > Fields > [Field] > Edit > Data Sensitivity Level // Query field classification metadata const conn = await getConnection(); const contactMeta = await conn.sobject('Contact').describe(); const sensitiveFields = contactMeta.fields .filter((f: any) => f.compoundFieldName === null) // Skip compound fields .map((f: any) => ({ name: f.name, label: f.label, type: f.type, encrypted: f.encrypted || false, // Check custom data sensitivity via field metadata })); // PII fields in standard Salesforce objects const PII_FIELDS: Record<string, string[]> = { Contact: ['FirstName', 'LastName', 'Email', 'Phone', 'MailingAddress', 'Birthdate'], Lead: ['FirstName', 'LastName', 'Email', 'Phone', 'Company'], Account: ['Phone', 'Website'], // Less PII, but may contain it User: ['Email', 'Phone', 'Username'], Case: ['SuppliedEmail', 'SuppliedName', 'SuppliedPhone'], ...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

clay-data-handling

Implement GDPR/CCPA-compliant data handling for Clay enrichment pipelines. Use when handling PII from enrichments, implementing data retention policies, or ensuring regulatory compliance for Clay-enriched lead data. Trigger with phrases like "clay data", "clay PII", "clay GDPR", "clay data retention", "clay privacy", "clay CCPA", "clay compliance".

2,266 Updated today
jeremylongshore
AI & Automation Featured

salesforce-security-basics

Apply Salesforce security best practices for Connected Apps, OAuth, and field-level security. Use when securing API credentials, implementing least privilege access, or auditing Salesforce security configuration. Trigger with phrases like "salesforce security", "salesforce secrets", "secure salesforce", "salesforce connected app security", "salesforce FLS".

2,266 Updated today
jeremylongshore
AI & Automation Featured

adobe-data-handling

Implement data handling for Adobe APIs including PII redaction in logs, Firefly content policy compliance, PDF document data classification, and GDPR/CCPA data subject access requests via Adobe Privacy Service. Trigger with phrases like "adobe data", "adobe PII", "adobe GDPR", "adobe data retention", "adobe privacy", "adobe content policy".

2,266 Updated today
jeremylongshore
AI & Automation Solid

webflow-data-handling

Implement Webflow data handling — CMS content delivery patterns, PII redaction in form submissions, GDPR/CCPA compliance for ecommerce data, and data retention policies. Trigger with phrases like "webflow data", "webflow PII", "webflow GDPR", "webflow data retention", "webflow privacy", "webflow CCPA", "webflow forms data".

2,266 Updated today
jeremylongshore
AI & Automation Featured

snowflake-data-handling

Implement Snowflake data governance with masking policies, row access policies, tagging, and GDPR/CCPA compliance patterns. Use when handling PII, implementing column masking, configuring data classification, or ensuring compliance with privacy regulations in Snowflake. Trigger with phrases like "snowflake data governance", "snowflake masking", "snowflake PII", "snowflake GDPR", "snowflake row access policy", "snowflake tags".

2,266 Updated today
jeremylongshore