salesforce-migration-deep-dive

Featured

Execute Salesforce data migrations using Bulk API, Data Loader, and ETL patterns. Use when migrating data to/from Salesforce, performing org-to-org migrations, or re-platforming CRM data into Salesforce. Trigger with phrases like "migrate to salesforce", "salesforce data migration", "salesforce import data", "salesforce ETL", "CRM migration to salesforce".

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 Migration Deep Dive ## Overview Comprehensive guide for migrating data to/from Salesforce: ETL patterns using Bulk API 2.0, data mapping between CRM schemas, record relationship preservation, and validation. ## Prerequisites - Source and target Salesforce orgs (or external CRM) - jsforce with Bulk API 2.0 access - Understanding of sObject relationships and External IDs - Staging sandbox for dry runs ## Migration Types | Type | Complexity | Duration | Tool | |------|-----------|----------|------| | CSV import (< 50K records) | Low | Hours | Data Import Wizard / Bulk API | | CRM-to-Salesforce | Medium | Weeks | Custom ETL with jsforce | | Org-to-org migration | Medium | Weeks | SFDX + Bulk API | | Full re-platform | High | Months | Custom ETL + change management | ## Instructions ### Step 1: Data Assessment ```typescript const conn = await getConnection(); // Count records per object const objectCounts = await Promise.all( ['Account', 'Contact', 'Lead', 'Opportunity', 'Case'].map(async (obj) => { const result = await conn.query(`SELECT COUNT(Id) total FROM ${obj}`); return { object: obj, count: result.records[0].total }; }) ); console.table(objectCounts); // Account: 15,234 // Contact: 45,678 // Lead: 23,456 // Opportunity: 8,901 // Case: 67,890 // Check data storage limits const limits = await conn.request('/services/data/v59.0/limits/'); console.log(`Data storage: ${limits.DataStorageMB.Max - limits.DataStorageMB.R...

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

hubspot-migration-deep-dive

Execute CRM data migration to HubSpot with batch imports and validation. Use when migrating from Salesforce/Pipedrive/spreadsheets to HubSpot, performing bulk data imports, or re-platforming to HubSpot CRM. Trigger with phrases like "migrate to hubspot", "hubspot data import", "salesforce to hubspot", "hubspot migration", "bulk import hubspot".

2,266 Updated today
jeremylongshore
AI & Automation Featured

apollo-migration-deep-dive

Comprehensive Apollo.io migration strategies. Use when migrating from other CRMs to Apollo, consolidating data sources, or executing large-scale data migrations. Trigger with phrases like "apollo migration", "migrate to apollo", "apollo data import", "crm to apollo", "apollo migration strategy".

2,266 Updated today
jeremylongshore
AI & Automation Featured

salesforce-core-workflow-b

Execute Salesforce Bulk API 2.0 and Composite API operations for high-volume data. Use when importing/exporting large datasets, performing multi-object transactions, or chaining dependent API calls. Trigger with phrases like "salesforce bulk API", "salesforce composite", "salesforce batch", "salesforce mass import", "salesforce large data".

2,266 Updated today
jeremylongshore
AI & Automation Featured

salesforce-upgrade-migration

Analyze, plan, and execute Salesforce API version upgrades and jsforce major version migrations. Use when upgrading Salesforce API versions, migrating jsforce v1 to v3, or adapting to deprecated API changes. Trigger with phrases like "upgrade salesforce", "salesforce API version", "jsforce upgrade", "salesforce deprecation", "salesforce version migration".

2,266 Updated today
jeremylongshore
AI & Automation Solid

webflow-migration-deep-dive

Execute major Webflow migrations — from other CMS platforms to Webflow CMS, between Webflow sites, or large-scale content re-architecture using the Data API v2 bulk endpoints, strangler fig pattern, and data validation. Trigger with phrases like "migrate to webflow", "webflow migration", "import into webflow", "webflow replatform", "move content to webflow", "webflow bulk import", "wordpress to webflow".

2,266 Updated today
jeremylongshore