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

tiktok-shop-integration抖音店铺整合

Agent Skill

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

总安装

1,763

周安装

72

GitHub Stars

19

下载量

570
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

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

简介

用于抖音店铺相关信息的整合与检索,适合在各类 AI 宿主中快速定位电商运营所需数据。

  • 可协助查找商品信息、店铺动态及市场趋势,支持基于关键词或场景的任务驱动搜索。
  • 通过 GitHub 仓库安装,使用 npx 命令添加技能,需结合原始文档确认具体功能边界。
  • 使用前请核实权限范围、维护状态,注意是否涉及联网、文件读写或外部命令执行。
  • tiktok-shop-integration 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

TikTok Shop Integration

Overview

TikTok Shop transforms TikTok from a discovery channel into a direct commerce platform where users purchase without leaving the app — via shoppable video posts, LIVE shopping events, product showcase tabs, and creator affiliate programs. For Shopify and WooCommerce, official TikTok integrations handle catalog sync, order management, and inventory updates automatically. The strategic work is applying to TikTok Seller Center, structuring your affiliate program, and running LIVE shopping events.

When to Use This Skill

  • When launching TikTok as a native commerce channel (not just a traffic referral)
  • When your products are suited to impulse purchase via short-form video
  • When enabling creators to tag and earn commissions on your products
  • When running LIVE shopping events for product launches or flash sales
  • When needing to sync inventory and orders between TikTok Shop and your primary platform

Core Instructions

Step 1: Register on TikTok Shop Seller Center

Before any integration:

  1. Go to seller.tiktokshop.com and create a seller account
  2. Complete identity verification (government ID + business registration)
  3. Connect your TikTok Business Account to the Seller Center
  4. Wait for seller approval — typically 1–3 business days; some categories require additional documentation (food, supplements, electronics)

Note: TikTok Shop is currently available in the US, UK, Southeast Asia, and select other markets. Availability changes — check TikTok's current supported markets before starting.

Step 2: Connect your platform to TikTok Shop


Shopify

  1. Go to Shopify Admin → Sales Channels → + → TikTok
  2. Install TikTok for Shopify and connect your TikTok Seller Center account
  3. Under Catalog Sync, Shopify syncs your product catalog to TikTok Shop automatically
  4. Shopify also syncs TikTok Shop orders back to Shopify Admin so you manage fulfillment in one place
  5. Go to TikTok → Products to review which products were approved and which have issues
  6. Products that fail TikTok's content review (image quality, prohibited categories) appear in TikTok → Products → Rejected with the reason

WooCommerce

  1. Install TikTok for WooCommerce from the WordPress plugin directory
  2. Go to WooCommerce → TikTok → Seller Center and connect your TikTok Seller Center account
  3. The plugin syncs your WooCommerce products to TikTok Shop and pulls TikTok orders back into WooCommerce
  4. Go to WooCommerce → TikTok → Products to monitor sync status and resolve any rejected products

BigCommerce

  1. Go to BigCommerce Admin → Channel Manager → Add a Channel → TikTok
  2. Connect your TikTok Seller Center account
  3. BigCommerce automatically syncs products and inventory to TikTok Shop
  4. TikTok orders appear in BigCommerce → Orders for unified fulfillment management

Custom / Headless

Use the TikTok Shop API directly for custom catalog management and order handling:

const TIKTOK_SHOP_BASE = 'https://open-api.tiktokglobalshop.com';

async function syncProductToTikTokShop(product: Product) {
  // TikTok Shop API requires HMAC-SHA256 request signing
  const timestamp = Math.floor(Date.now() / 1000).toString();
  const body = {
    title: product.name.substring(0, 255),
    description: product.description.replace(/<[^>]*>/g, '').substring(0, 5000),
    category_id: product.tikTokCategoryId, // find IDs in TikTok Seller Center → Products → Categories
    images: product.images.map(img => ({ url: img.url })),
    skus: product.variants.map(v => ({
      sales_attributes: v.options.map(opt => ({ attribute_name: opt.name, value_name: opt.value })),
      stock_infos: [{ available_stock: v.stockQuantity, warehouse_id: process.env.TIKTOK_WAREHOUSE_ID }],
      seller_sku: v.sku,
      original_price: v.price.toFixed(2),
    })),
  };

  return tiktokShopRequest('/api/products', body);
}

// Handle TikTok Shop order webhooks
// POST /webhooks/tiktok-shop
export async function handleTikTokShopWebhook(req: Request, res: Response) {
  const { type, data } = req.body;

  if (type === 'ORDER_STATUS_CHANGE') {
    // Sync TikTok order to your OMS
    await syncTikTokOrder(data.order_id, data.order_status);
  }

  res.json({ code: 0 }); // TikTok requires this exact response format
}

Step 3: Set up product listings for TikTok Shop

After catalog sync, optimize each product for TikTok Shop:

Product images:

  • Use square (1:1) or vertical (9:16) product images — landscape images underperform
  • White or clean background for the main product image
  • No text overlays, watermarks, or price callouts on images (TikTok rejects these)
  • Minimum 500×500px; 1000×1000px recommended

Product titles:

  • Include the primary keyword in the first 20 characters
  • TikTok Shop displays titles in search and shopping feeds
  • 255 character maximum

Shipping:

  • Set up a warehouse in TikTok Seller Center → Settings → Logistics
  • Link a TikTok-approved shipping carrier (UPS, USPS, FedEx for US sellers)
  • TikTok buyers expect free shipping — set a free shipping threshold that makes economic sense (e.g., orders over $25)

Step 4: Enable the creator affiliate program

TikTok Shop's Open Collaboration model lets any creator discover your products and tag them in content for a commission — no prior relationship needed.

  1. Go to TikTok Seller Center → Affiliate → Open Plan
  2. Set a commission rate per product category (typically 10–20% for ecommerce)
  3. Products with enabled affiliate commissions automatically appear in the TikTok Affiliate Marketplace where creators browse for products to promote
  4. Review affiliate creator applications under Seller Center → Affiliate → Creators

For targeted partnerships:

  1. Go to Seller Center → Affiliate → Targeted Collaboration
  2. Browse creator profiles and send collaboration invites with a custom commission rate
  3. You can provide product samples and set specific posting requirements in the invitation

Step 5: Run a LIVE Shopping event

LIVE Shopping events drive high-urgency sales with real-time product featuring:

Before going live:

  1. In TikTok Seller Center, go to Products and ensure all products you plan to feature are "Active" status (product review takes 24–48 hours)
  2. Go to TikTok LIVE Studio (download the app) or use the TikTok mobile app
  3. Under Shopping, select the products to feature during the LIVE
  4. Promote the LIVE 24–48 hours in advance via regular posts and Stories

During the LIVE:

  1. Start the LIVE from TikTok app or LIVE Studio
  2. Pin featured products using the shopping cart icon — viewers tap the pinned card to add to cart
  3. Change the featured product in real time as you demo different items
  4. Respond to comments about pricing, sizing, and availability to drive urgency

Best times for LIVE Shopping events: Tuesday, Wednesday, or Thursday evenings (7–9pm EST for US audience). Consistent scheduling builds a returning audience.

Step 6: Manage TikTok Shop orders

TikTok requires fulfillment within 2 business days of order confirmation. Late shipments damage your seller rating.

Fulfillment process:

  1. TikTok Shop orders appear in your platform admin (Shopify/WooCommerce) automatically if using the native integration
  2. Print shipping labels from your platform admin — TikTok accepts tracking numbers from all major carriers
  3. Enter the tracking number in TikTok Seller Center → Orders within 2 days
  4. TikTok automatically updates the buyer on shipping status

Returns:

  • Accept returns within 30 days of delivery (TikTok's default return window)
  • Configure return logistics in Seller Center → Settings → Returns

Best Practices

  • Keep inventory in sync within 5 minutes — overselling on TikTok damages your seller rating and can result in account suspension; use your platform's native TikTok integration for real-time sync
  • Use Open Collaboration for discovery — set a 10–15% commission rate on all products to attract micro-creators who discover your brand organically without outreach
  • Include dedicated TikTok Shop images — square or 9:16 product images outperform landscape images; prepare TikTok-specific creative assets separate from your Shopify product images
  • Run LIVE events consistently — 2× per week builds a returning audience; ad-hoc live events get low attendance
  • Monitor affiliate content for brand safety — creators in Open Collaboration post without prior approval; review tagged content regularly

Common Pitfalls

ProblemSolution
Products stuck "Under Review"Ensure product images are on white/clean backgrounds with no text overlays; prohibited categories (alcohol, certain supplements) require special approval
TikTok orders not appearing in ShopifyDisconnect and reconnect the TikTok for Shopify channel; check that Seller Center is linked to the correct TikTok Business account
Affiliate creators posting incorrect pricesAny price changes require creator content to be re-tagged; notify active affiliates before changing prices
LIVE Shopping products not showing on streamProducts must be "Active" status before going LIVE; review takes 24–48 hours, so activate products in advance
High return rateTikTok buyers expect products to match the video exactly; avoid over-editing product images and ensure LIVE demos are accurate

Related Skills

  • @tiktok-ads-integration
  • @ugc-campaign-management
  • @influencer-marketplace-integration
  • @social-commerce
  • @video-commerce-integration

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.26%
按下载量换算207

Claude

29.51%
按下载量换算168

Cursor

19.48%
按下载量换算111

Gemini CLI

9.68%
按下载量换算55

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills