Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
linkfox-ai avatar

Linkfox Temu Fulfillment Global

  • 168 installs
  • 64 repo stars
  • Updated August 3, 2026
  • linkfox-ai/linkfox-skills

Helps with ai & agent building tasks.

About

linkfox-temu-fulfillment-global is a Claude Code skill in the AI & Agent Building category.

  • linkfox-temu-fulfillment-global
  • AI & Agent Building
  • AI-coding skill

Linkfox Temu Fulfillment Global by the numbers

  • 168 all-time installs (skills.sh)
  • +35 installs in the week ending Aug 2, 2026 (Skillselion tracking)
  • Ranked #3,159 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/linkfox-ai/linkfox-skills --skill linkfox-temu-fulfillment-global

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs168
repo stars64
Last updatedAugust 3, 2026
Repositorylinkfox-ai/linkfox-skills

What it does

Helps with ai & agent building tasks.

Files

SKILL.mdMarkdownGitHub ↗

Temu 全球站 — 电商履行 / 发货(Fulfillment)

本 skill(linkfox-temu-fulfillment-global)覆盖 Partner Global Fulfillment23 个已接入 type(与 US 版对齐但 不含 4 个 Scan Form 接口)。

脚本前缀接口数
Buy-Shippingglobal_buy_shipping_*13
Co-Warehouseglobal_co_warehouse_*4
Self-Fulfilledglobal_self_fulfilled_*5
Trackingglobal_tracking_*1

未接入(相对 US)temu.logistics.scanform.createtemu.logistics.scanform.gettemu.logistics.scanform.document.gettemu.logistics.candidate.scanform.list.get — 请用 `linkfox-temu-fulfillment-us`site=us)。

详见 partner-global-catalog.md。美国站请用 `linkfox-temu-fulfillment-us`;欧洲站请用 `linkfox-temu-fulfillment-eu`

网关

能力方法路径
履约 OpenAPIPOSThttps://tool-gateway.linkfox.com/temu/proxy
加签文件下载POSThttps://tool-gateway.linkfox.com/temu/fileDownload

相关 skill

场景skill
订单列表/详情/地址linkfox-temu-order-global
取消订单linkfox-temu-cancel-order-global
商品管理linkfox-temu-manage-product-global
美国站履约(含 Scan Form)linkfox-temu-fulfillment-us
欧洲站履约linkfox-temu-fulfillment-eu
退货退款linkfox-temu-returns-refunds-global

默认参数

字段默认
siteglobal
managementTypesemi-managed
tokenPurposeorder-shipping

Scripts(按域)

Buy-Shipping(global_buy_shipping_*

购标、面单、上门揽收等(不含 Scan Form)— 见 apis/README.md

Co-Warehouse(global_co_warehouse_*

bg.cooperativewarehouse.* — 合作仓授权、提交/取消履约。

Self-Fulfilled(global_self_fulfilled_*

bg.logistics.shipment.v2.*shippingtype.update 等 — 卖家自带运单号。

Tracking(global_tracking_*

temu.track.trackinginfo.get

通用

脚本说明
temu_global_proxy.py任意 type
temu_global_file_download.py加签文件下载

薄封装统一调用 `_global_fulfillment_script.run_cli`

示例

export LINKFOXAGENT_API_KEY="<key>"

# Buy-Shipping 购标
python scripts/global_buy_shipping_logistics_shipment_create.py '{
  "accessToken": "TOKEN",
  "site": "global",
  "tokenPurpose": "order-shipping",
  "request": { }
}'

# 卖家自发货更新跟踪号
python scripts/global_self_fulfilled_logistics_shipment_shippingtype_update.py '{
  "accessToken": "TOKEN",
  "site": "global",
  "tokenPurpose": "order-shipping",
  "request": { "editPackageRequestList": [{ "packageSn": "PKG-1", "trackingNumber": "1Z..." }] }
}'

Feedback: skillNamelinkfox-temu-fulfillment-global

<!-- LF_LARGE_RESPONSE_BLOCK -->

Handling Large Responses

To avoid overflowing the agent context, persist the response to disk and extract only the fields you need:

python scripts/response_io.py run --script scripts/check_linkfox_token.py --out-dir <DIR> '<params>'
python scripts/response_io.py read <file> --fields "<paths>"   # or --path "<JMESPath>"
Pick --out-dir outside any git working tree (e.g. /tmp/... on Unix, %TEMP%/... on Windows). Persisted responses may contain PII, pricing, or auth-sensitive data — do not commit them. Files are not auto-deleted; clean up when the task is done.
This skill exposes multiple entry scripts: check_linkfox_token.py, get_temu_access_token.py, global_buy_shipping_logistics_label_list_get.py, global_buy_shipping_logistics_shiplogisticstype_get.py, global_buy_shipping_logistics_shipment_create.py, global_buy_shipping_logistics_shipment_document_get.py, global_buy_shipping_logistics_shipment_pickup_reservation_cancel.py, global_buy_shipping_logistics_shipment_pickup_reservation_create.py, global_buy_shipping_logistics_shipment_pickup_reservation_result_get.py, global_buy_shipping_logistics_shipment_result_get.py, global_buy_shipping_logistics_shipment_update.py, global_buy_shipping_logistics_shipped_package_confirm.py, global_buy_shipping_logistics_shippingservices_get.py, global_buy_shipping_logistics_warehouse_list_get.py, global_buy_shipping_order_unshipped_package_get.py, global_co_warehouse_cooperativewarehouse_fulfill_cancel.py, global_co_warehouse_cooperativewarehouse_fulfill_submit.py, global_co_warehouse_cooperativewarehouse_provider_list.py, global_co_warehouse_cooperativewarehouse_token_authorization.py, global_self_fulfilled_logistics_companies_get.py, global_self_fulfilled_logistics_shipment_shippingtype_update.py, global_self_fulfilled_logistics_shipment_sub_confirm.py, global_self_fulfilled_logistics_shipment_v2_confirm.py, global_self_fulfilled_logistics_shipment_v2_get.py, global_tracking_track_trackinginfo_get.py, list_temu_access_tokens.py, save_temu_access_token.py, temu_file_download.py, temu_global_file_download.py, temu_global_proxy.py, temu_proxy.py, temu_token_guide.py. Pass --script scripts/<name>.py to choose the one you need.

run writes the full response to a file and emits only a schema preview + file path. read projects specific fields, with --limit/--offset for slicing and --format json|jsonl|csv|table for output.

When to prefer this pattern — apply your judgment based on the response characteristics, e.g.:

  • High field count per record, or fields you don't need
  • Batch/paginated results (multiple items per call)
  • Long-text fields (descriptions, reviews, HTML, time series)
  • Output reused across later steps rather than consumed immediately

For small, single-use responses, calling the main script directly is fine.

⚠️ The preview is a truncated schema + sample, not the full data. Any field-level decision must read from the persisted file via read. <!-- /LF_LARGE_RESPONSE_BLOCK -->

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.