Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计提醒

dropshipping-integration直销整合

Agent Skill

dropshipping-integration 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

936

周安装

39

GitHub Stars

19

下载量

312
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:dropshipping-integration(直销整合)
来源仓库:https://github.com/finsilabs/awesome-ecommerce-skills
仓库路径:skills/dropshipping-integration
安装命令:
npx skills add https://github.com/finsilabs/awesome-ecommerce-skills --skill dropshipping-integration
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/finsilabs/awesome-ecommerce-skills --skill dropshipping-integration

简介

dropshipping-integration 打通订单路由、库存同步与销售毛利计算链路。

  • 避免超卖风险,保障供应商履约与客户体验一致性。
  • 适用于无仓模式电商启动与跨境供应链自动化对接。
  • 推荐使用成熟平台工具降低实施复杂度与失败概率。
  • 自建方案需重点设计异常回滚与对账补偿机制。dropshipping-integration 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Dropshipping Integration

Overview

A dropshipping integration routes customer orders automatically to supplier warehouses, syncs supplier inventory to your storefront, and tracks your margin on every sale. Done right, customers receive their products on time without you ever touching physical inventory. Done poorly, oversells and fulfillment failures destroy your reputation.

This skill walks through setting up dropshipping on your platform using the right tools, then covers custom/headless implementations for those building from scratch.

When to Use This Skill

  • When launching a store without physical inventory by routing orders directly to supplier warehouses
  • When adding a dropship-fulfilled product category alongside your own inventory
  • When building a multi-supplier routing engine that picks the best supplier per order based on price, stock, or location
  • When you need to keep your storefront inventory in sync with supplier availability feeds (CSV, EDI, API)
  • When tracking dropship margins for accounting and vendor performance reporting

Core Instructions

Step 1: Determine your platform and choose the right integration approach

PlatformRecommended ToolWhy
ShopifyDSers (free), AutoDS, or SpocketDSers is the official AliExpress partner; AutoDS and Spocket handle premium/US-based suppliers with automated order routing
WooCommerceAliDropship plugin, DropshipMe, or WooCommerce + custom webhookAliDropship handles AliExpress automation; for other suppliers use WooCommerce webhooks to push orders to a supplier API
BigCommerceModalyst, Spocket, or BigCommerce + custom integrationModalyst and Spocket have native BigCommerce apps with inventory sync
Custom / HeadlessBuild a supplier integration layer using the supplier's API or CSV/EDI feedFull control over routing logic, margin tracking, and supplier selection

Step 2: Set up inventory sync

Keeping your storefront stock levels in sync with supplier availability is the most critical piece — oversells damage customer trust immediately.

Shopify

Using DSers (AliExpress dropshipping):

  1. Install DSers from the Shopify App Store
  2. Connect your AliExpress account in DSers settings
  3. Import products from AliExpress via DSers → Products → Import
  4. DSers syncs stock levels automatically every few hours
  5. Enable "Auto-update inventory" in DSers → Settings → Supplier to push supplier stock to Shopify inventory

Using Spocket (US/EU suppliers):

  1. Install Spocket from the Shopify App Store
  2. Browse the Spocket marketplace and import products to Shopify
  3. Spocket syncs inventory changes automatically — no manual configuration needed
  4. Enable "Auto-fulfill orders" in Spocket settings to route new Shopify orders to suppliers automatically

Using AutoDS (multi-supplier):

  1. Install AutoDS from the Shopify App Store
  2. Add suppliers (AliExpress, Amazon, Walmart, etc.) and import their products
  3. AutoDS monitors supplier prices and stock, updating your Shopify listings automatically
  4. Configure price rules in AutoDS → Settings → Price Rules to set your markup automatically

WooCommerce

Using AliDropship plugin:

  1. Purchase and install the AliDropship plugin
  2. Use the Chrome extension to import products from AliExpress directly into WooCommerce
  3. Enable automatic price and inventory updates in AliDropship → Settings → Auto-update
  4. For order routing: AliDropship auto-places orders on AliExpress when you approve them in the plugin dashboard

For non-AliExpress suppliers:

  1. Install the WooCommerce Zapier extension or use n8n (free, self-hosted) to connect WooCommerce order webhooks to supplier systems
  2. Go to WooCommerce → Settings → Advanced → Webhooks, create a webhook for "Order created" events
  3. Point the webhook URL at your automation workflow (Zapier/n8n) that formats and forwards the order to your supplier
  4. For inventory sync, schedule a daily WP-Cron job to pull the supplier's CSV feed and update WooCommerce stock via the REST API

BigCommerce

Using Modalyst:

  1. Install Modalyst from the BigCommerce App Marketplace
  2. Browse Modalyst's supplier catalog and import products to BigCommerce
  3. Modalyst handles inventory sync and order routing automatically once connected

Using Spocket:

  1. Install Spocket from the BigCommerce App Marketplace
  2. Import products and enable auto-fulfillment in Spocket settings
  3. New orders with Spocket products are routed to suppliers automatically

Custom / Headless

For headless storefronts, build a supplier integration layer:

// Supplier product and inventory schema
interface SupplierProduct {
  supplierId: string;
  supplierSku: string;       // supplier's own SKU
  internalProductId: string; // your product ID
  costPriceCents: number;    // what you pay the supplier
  stockQty: number;
  lastSyncedAt: Date;
}

// Route an order line to the best available supplier
async function selectBestSupplier(
  productId: string,
  requiredQty: number
): Promise<SupplierProduct | null> {
  // Pick the cheapest in-stock supplier with enough quantity
  return db.supplierProducts.findOne({
    internal_product_id: productId,
    stock_qty: { gte: requiredQty },
    is_active: true,
  }, { orderBy: ['cost_price_cents', 'asc'] });
}

// Sync supplier inventory from CSV feed
async function syncSupplierInventoryFromCsv(
  supplierId: string,
  csvContent: string
): Promise<void> {
  const rows = parseCsv(csvContent); // [{sku, qty, cost}]
  for (const row of rows) {
    await db.supplierProducts.upsert({
      supplier_id: supplierId,
      supplier_sku: row.sku,
      stock_qty: parseInt(row.qty),
      cost_price_cents: Math.round(parseFloat(row.cost) * 100),
      last_synced_at: new Date(),
    });
  }
  // Zero out SKUs not in the feed (discontinued)
  const activeSKUs = new Set(rows.map(r => r.sku));
  const allProducts = await db.supplierProducts.findBySupplierId(supplierId);
  for (const sp of allProducts) {
    if (!activeSKUs.has(sp.supplier_sku)) {
      await db.supplierProducts.update(sp.id, { stock_qty: 0 });
    }
  }
}

// Submit a dropship order to a supplier API
async function submitDropshipOrder(params: {
  supplierApiEndpoint: string;
  supplierApiKey: string;
  orderReference: string;
  shippingAddress: Address;
  items: { supplierSku: string; quantity: number }[];
}): Promise<string> {
  const response = await fetch(params.supplierApiEndpoint + '/orders', {
    method: 'POST',
    headers: {
      'Authorization': `Bearer ${params.supplierApiKey}`,
      'Content-Type': 'application/json',
    },
    body: JSON.stringify({
      reference: params.orderReference,
      ship_to: params.shippingAddress,
      items: params.items,
    }),
  });
  if (!response.ok) throw new Error(`Supplier API error: ${response.status}`);
  const result = await response.json();
  return result.order_id; // supplier's order reference
}

Step 3: Configure automated order routing

Shopify

  • DSers: Go to DSers → Settings → Automatic Actions and enable "Auto-sync tracking number to Shopify" and "Auto-fulfill Shopify orders"
  • AutoDS: Enable Auto-Orders in AutoDS → Settings. Orders paid in Shopify are automatically placed with the supplier, and tracking numbers sync back to Shopify fulfillments
  • If a supplier order fails (out of stock), DSers and AutoDS alert you via email so you can manually reroute

WooCommerce

  • For AliDropship: approved orders in the AliDropship dashboard are auto-placed. Go to AliDropship → Orders and confirm pending orders, or enable full automation in settings
  • For custom supplier integrations: use the WooCommerce webhook to trigger your supplier order submission, then use a second webhook or polling to receive tracking numbers and mark orders fulfilled via the WooCommerce REST API (POST /wp-json/wc/v3/orders/{id})

BigCommerce

  • Modalyst and Spocket both handle order routing automatically. Monitor BigCommerce → Orders and check the "Fulfillment" column — orders routed to suppliers show the supplier name
  • For tracking numbers: both apps sync tracking back to BigCommerce orders automatically and trigger BigCommerce's built-in shipment notification emails

Step 4: Track dropship margins

Margin tracking is critical — your cost price can drift from your selling price without you noticing.

Shopify

  • Use the Shopify Analytics → Profit report (requires entering your costs in Shopify admin)
  • Go to each product's variant in Shopify admin and enter the "Cost per item" — Shopify calculates margin automatically
  • For multi-supplier tracking: export orders and costs from DSers/AutoDS and use a Google Sheet or QuickBooks to calculate margin per order

WooCommerce

  • Install the WooCommerce Cost of Goods plugin (SkyVerge) to track per-product costs and automatically calculate margin in WooCommerce reports
  • AliDropship shows cost vs. selling price in its analytics dashboard

BigCommerce

  • Enter cost prices on each product variant in BigCommerce admin → Products → [Product] → Variants → Cost
  • BigCommerce's built-in Insights report (available on Plus and above) shows margin by product

Best Practices

  • Sync inventory at least every 4 hours — supplier stock changes frequently; for high-velocity SKUs, sync every hour if the supplier's API allows it
  • Keep a stock buffer — don't sell the last 3–5 units per supplier; stock can change between sync cycles and your "in stock" data may be stale
  • Store the supplier's order reference — always save the supplier's order confirmation number so customer service can contact the supplier directly about specific shipments
  • Track lead times per supplier — different suppliers have different fulfillment speeds; display accurate delivery estimates by using each supplier's lead time, not a generic estimate
  • Send tracking numbers to customers as soon as the supplier ships — most supplier apps sync tracking automatically; enable this in your app settings and test it with a sample order
  • Reconcile supplier invoices monthly — compare what you were charged against what you recorded at order time; pricing discrepancies accumulate into meaningful losses

Common Pitfalls

ProblemSolution
Customer orders an item that goes out of stock at the supplier after your syncSync frequently and keep a buffer stock threshold; enable email alerts in DSers/AutoDS for stock-out events
Supplier ships the wrong itemsMost supplier apps don't validate fulfilled items — contact the supplier directly and have their order reference ready
Dropship order is placed twice when the app retriesDSers and AutoDS use idempotency internally; for custom integrations, check for an existing supplier order reference before re-submitting
Margin calculation ignores shipping costsIf you offer "free shipping" but pay the supplier for shipping, subtract that from your margin calculation — it's a real cost
Tracking number doesn't sync back to platformCheck the app's tracking sync settings; for WooCommerce webhooks verify the webhook delivery log in WooCommerce → Settings → Advanced → Webhooks

Related Skills

  • @order-fulfillment-workflow
  • @vendor-management
  • @shipment-tracking
  • @multi-channel-selling
  • @order-management-system

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.66%
按下载量换算114

Claude

30%
按下载量换算94

Cursor

19.14%
按下载量换算60

Gemini CLI

8.27%
按下载量换算26

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills