flexport-migration-deep-dive

Featured

Execute major migration strategies for Flexport including migrating from legacy freight forwarders, ERP system integration, and strangler fig patterns. Trigger: "flexport migration", "migrate to flexport", "flexport ERP integration".

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

# Flexport Migration Deep Dive ## Overview Guide for migrating to Flexport from legacy freight forwarders, manual spreadsheet workflows, or other logistics platforms. Uses a strangler fig pattern to gradually move operations to the Flexport API while maintaining existing systems. ## Migration Scenarios | From | To | Complexity | Timeline | |------|----|-----------|----------| | Spreadsheet/email | Flexport API | Low | 2-4 weeks | | Legacy freight forwarder API | Flexport API | Medium | 4-8 weeks | | ERP (SAP, Oracle) | ERP + Flexport | High | 8-16 weeks | | Multiple forwarders | Flexport consolidated | High | 6-12 weeks | ## Instructions ### Phase 1: Data Migration — Product Catalog ```typescript // Migrate product catalog from legacy system to Flexport Product Library async function migrateProducts(legacyProducts: LegacyProduct[]) { const results = { success: 0, failed: 0, errors: [] as string[] }; for (const legacy of legacyProducts) { try { await fetch('https://api.flexport.com/products', { method: 'POST', headers, body: JSON.stringify({ name: legacy.description, sku: legacy.partNumber, hs_code: legacy.tariffCode, country_of_origin: legacy.originCountry, unit_cost: { amount: legacy.unitCost, currency: legacy.currency }, weight: { value: legacy.weightKg, unit: 'kg' }, }), }); results.success++; } catch (err) { results.failed++; result...

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

flexport-upgrade-migration

Migrate between Flexport API versions (v1 to v2, Logistics API versions). Use when upgrading API version headers, handling deprecated endpoints, or migrating from legacy Flexport API patterns. Trigger: "upgrade flexport", "flexport API version", "flexport migration".

2,266 Updated today
jeremylongshore
AI & Automation Featured

shopify-migration-deep-dive

Migrate e-commerce data to Shopify using bulk operations, product imports, and the strangler fig pattern for gradual platform migration. Trigger with phrases like "migrate to shopify", "shopify data migration", "import products shopify", "shopify replatform", "move to shopify".

2,266 Updated today
jeremylongshore
AI & Automation Featured

flexport-core-workflow-b

Execute Flexport secondary workflow: commercial invoices, products catalog, and freight invoices. Use when managing commercial invoices for customs, maintaining product catalogs, or handling freight billing through the Flexport API. Trigger: "flexport invoice", "flexport products", "flexport customs documents".

2,266 Updated today
jeremylongshore
AI & Automation Featured

flexport-prod-checklist

Execute Flexport production deployment checklist for logistics integrations. Use when deploying shipment tracking, booking automation, or supply chain integrations to production with proper monitoring and rollback. Trigger: "flexport production", "deploy flexport", "flexport go-live checklist".

2,266 Updated today
jeremylongshore
AI & Automation Featured

flexport-data-handling

Implement data handling for Flexport supply chain data including PII redaction, shipment data retention, GDPR compliance, and secure document management. Trigger: "flexport data handling", "flexport PII", "flexport GDPR", "flexport data retention".

2,266 Updated today
jeremylongshore