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

Linkfox Temu Order Global

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

Helps with ai & agent building tasks during AI-assisted development.

About

linkfox-temu-order-global is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.

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

Linkfox Temu Order Global by the numbers

  • 170 all-time installs (skills.sh)
  • +35 installs in the week ending Aug 2, 2026 (Skillselion tracking)
  • Ranked #3,136 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-order-global

Add your badge

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

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

What it does

Helps with ai & agent building tasks during AI-assisted development.

Files

SKILL.mdMarkdownGitHub ↗

Temu 全球站订单管理 API(Manage Order)

本 skill(linkfox-temu-order-global)覆盖 全球区(`site=global`,非美国/欧洲)Order 菜单下 bg.order.* / temu.local.order.* 接口(menu_code=dbd3d395963a408984b8ae7dbc5f64f9sub_menu_codepartner-global-catalog.md)。美国站请用 `linkfox-temu-order-us`;欧洲站请用 `linkfox-temu-order-eu`

当前已接入 9 个接口;其余订单接口将按 Partner 文档逐条补充到 references/apis/global_order_*.py

网关(本 skill 内置)

能力方法路径
订单 OpenAPI(global_order_*temu_global_proxyPOSThttps://tool-gateway.linkfox.com/temu/proxy
加签文件下载POSThttps://tool-gateway.linkfox.com/temu/fileDownload

相关 skill

场景skill
商品列表/详情/编辑/库存/上下架linkfox-temu-manage-product-global
美国站订单linkfox-temu-order-us
欧洲站订单linkfox-temu-order-eu
发品、类目、V2 addlinkfox-temu-add-product-us
价格/供货价、定价单linkfox-temu-price-global
取消订单(买家+卖家)linkfox-temu-cancel-order-global
退货与退款linkfox-temu-returns-refunds-us
履约/发货(含自发货)linkfox-temu-fulfillment-global
网关与 Temu token本 skill scripts/

API Usage

文档内容
api.md网关、鉴权、错误码、扩展流程
partner-global-catalog.md接口目录 + Partner URL + 脚本(随接入更新)
apis/README.md按接口分文件apis/<type-slug>.md

默认参数

字段默认说明
siteglobalPartner Global
managementTypesemi-managed半托管
tokenPurposeorder-shipping订单/发货场景 token(见 access-token.md

鉴权

1. LinkFoxLINKFOXAGENT_API_KEY → Header Authorization + Token 2. TemuaccessTokenstoreKeystoreKey 时建议带 tokenPurpose=order-shipping

Scripts(按 type)

脚本type状态
global_order_list_v2_get.pybg.order.list.v2.get已接入
global_order_detail_v2_get.pybg.order.detail.v2.get已接入
global_order_shippinginfo_v2_get.pybg.order.shippinginfo.v2.get已接入
global_order_decryptshippinginfo_get.pybg.order.decryptshippinginfo.get已接入
global_order_amount_query.pybg.order.amount.query已接入
global_order_amount_v2_query.pytemu.order.amount.v2.query已接入
global_order_combinedshipment_list_get.pybg.order.combinedshipment.list.get已接入
global_order_customization_get.pybg.order.customization.get已接入
global_order_verification_upload.pytemu.local.order.verification.upload已接入
temu_global_proxy.py任意 type通用
temu_global_file_download.py加签文件下载通用

接入新接口(约定)

你每提供一条 Partner 文档(type + 参数表 + 可选 sub_menu_code),将:

1. 新增 references/apis/<type-slug>.md(完整入参/出参层级) 2. 新增 scripts/global_order_<slug>.py(调用 _global_order_script.run_cli) 3. 更新 partner-global-catalog.mdapis/README.md 与本表

示例

export LINKFOXAGENT_API_KEY="<key>"

# 订单列表 V2(待发货 parentOrderStatus=2)
python scripts/global_order_list_v2_get.py '{
  "accessToken": "TOKEN",
  "site": "global",
  "tokenPurpose": "order-shipping",
  "request": {
    "pageNumber": 1,
    "pageSize": 20,
    "parentOrderStatus": 2
  }
}'

# 按父订单号查询(最多 20 个)
python scripts/global_order_list_v2_get.py '{
  "accessToken": "TOKEN",
  "site": "global",
  "tokenPurpose": "order-shipping",
  "request": {
    "parentOrderSnList": ["PO-123456789"]
  }
}'

# 订单详情 V2(须 parentOrderSn)
python scripts/global_order_detail_v2_get.py '{
  "accessToken": "TOKEN",
  "site": "global",
  "tokenPurpose": "order-shipping",
  "request": {
    "parentOrderSn": "PO-123456789"
  }
}'

# 收货地址 V2(传 parentOrderSn)
python scripts/global_order_shippinginfo_v2_get.py '{
  "accessToken": "TOKEN",
  "site": "global",
  "tokenPurpose": "order-shipping",
  "request": {
    "parentOrderSn": "PO-123456789"
  }
}'

# 敏感收货地址解密(传 parentOrderSn)
python scripts/global_order_decryptshippinginfo_get.py '{
  "accessToken": "TOKEN",
  "site": "global",
  "tokenPurpose": "order-shipping",
  "request": {
    "parentOrderSn": "PO-123456789"
  }
}'

# 订单金额/供货价(ERP 对账,传 parentOrderSn)
python scripts/global_order_amount_query.py '{
  "accessToken": "TOKEN",
  "site": "global",
  "tokenPurpose": "order-shipping",
  "request": {
    "parentOrderSn": "PO-123456789"
  }
}'

# 订单金额 V2(税费拆分更细,传 parentOrderSn)
python scripts/global_order_amount_v2_query.py '{
  "accessToken": "TOKEN",
  "site": "global",
  "tokenPurpose": "order-shipping",
  "request": {
    "parentOrderSn": "PO-123456789"
  }
}'

# 可合并发货订单组(request 可为空对象)
python scripts/global_order_combinedshipment_list_get.py '{
  "accessToken": "TOKEN",
  "site": "global",
  "tokenPurpose": "order-shipping",
  "request": {}
}'

# 定制商品内容(子订单号 orderSn,单次最多 10 个)
python scripts/global_order_customization_get.py '{
  "accessToken": "TOKEN",
  "site": "global",
  "tokenPurpose": "order-shipping",
  "request": {
    "orderSnList": ["SO-123456789", "SO-987654321"]
  }
}'

# 上传 SN/IMEI 或二手鉴真(orderList[].orderSn)
python scripts/global_order_verification_upload.py '{
  "accessToken": "TOKEN",
  "site": "global",
  "tokenPurpose": "order-shipping",
  "request": {
    "orderList": [
      {
        "orderSn": "SO-123456789",
        "verificationInfo": [
          {
            "serialNumber": "SN-001234567890",
            "imeiNumberList": ["352099001761481"]
          }
        ]
      }
    ]
  }
}'

Feedback: skillNamelinkfox-temu-order-global

网关与授权脚本

脚本说明
check_linkfox_token.py校验 LinkFox 用户 Token
temu_token_guide.pyTemu accessToken 后台授权步骤
save_temu_access_token.py保存 accessToken 到本地
list_temu_access_tokens.py列出已保存 token
get_temu_access_token.py读取已保存 token
temu_proxy.py通用网关转发(多 site)
temu_file_download.py加签文件下载(多 site)

授权说明:references/access-token.md

<!-- 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_order_amount_query.py, global_order_amount_v2_query.py, global_order_combinedshipment_list_get.py, global_order_customization_get.py, global_order_decryptshippinginfo_get.py, global_order_detail_v2_get.py, global_order_list_v2_get.py, global_order_shippinginfo_v2_get.py, global_order_verification_upload.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.