linkfox-ai/linkfox-skills

linkfox-temu-fulfillment-us

Temu 美国站电商履行/发货 API(合一):Buy-Shipping购标面单、合作仓履约、卖家自发货、物流跟踪等27+接口。当用户提到 Temu US 发货、购标、Buy-Shipping、合作仓、自发货、tracking、scanform、shipment.create、order-shipping 时触发。订单用 linkfox-temu-order-us。

First seen May 28, 2026

Installation

$ npx skills add linkfox-ai/linkfox-skills --skill linkfox-temu-fulfillment-us

Summary

Temu 美国站电商履行/发货 API(合一):Buy-Shipping购标面单、合作仓履约、卖家自发货、物流跟踪等27+接口。当用户提到 Temu US 发货、购标、Buy-Shipping、合作仓、自发货、tracking、scanform、shipment.create、order-shipping 时触发。订单用 linkfox-temu-order-us。

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from linkfox-ai/linkfox-skills · top by installs.

npx skills add linkfox-ai/linkfox-skills

Browse all from linkfox-ai/linkfox-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 98
License LICENSE
Default branch main
Open issues 1
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 4,745 B
  • docs SUMMARY.md 4,679 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 286 installs

SKILL.md

Temu 美国站 — 电商履行 / 发货(Fulfillment)

本 skill(linkfox-temu-fulfillment-us)合并原 Buy-ShippingCo-WarehouseSelf-Fulfilled ShipmentsTracking 四个 skill,覆盖 Partner US Fulfillment27 个已接入 type

脚本前缀 接口数
Buy-Shipping usbuyshipping_* 17
Co-Warehouse uscowarehouse_* 4
Self-Fulfilled usselffulfilled_* 5
Tracking ustracking* 1

详见 [partner-us-catalog.md](./references/partner-us-catalog.md)。

网关

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

调用方式

  • API 端点POST /temu/proxy(不同操作通过请求体区分;完整参数/响应/错误码见 references/api.md
  • Python 脚本python scripts/<脚本名>.py '<JSON 参数>' [--inline](可用脚本见上文脚本一览)
  • 成本约束:本工具会消耗积分;失败/空结果不得自动换关键词、翻页或连续试探;需要继续检索时先向用户说明会产生额外消耗。

输出策略(脚本默认行为)

  • 始终将完整响应写入 <cwd>/linkfox/<YYYY-MM-DD>/<session>/data/<skill-name>-<timestamp>.json<cwd> 为脚本执行时的工作目录,在 Claude Code 里即当前项目目录;<session> 取自环境变量 SESSION_ID,按用户任务自动聚合;禁止写入 /tmp,当前目录不可写则报错)
  • 响应体 ≤ 8 KB:落盘后把完整 JSON 打印到 stdout
  • 响应体 > 8 KB:落盘后 stdout 只输出摘要(顶层字段、常见计数如 total/costToken、最大列表字段的长度 + 前 3 条样本)
  • --inline 强制全量打印到 stdout(同样落盘)

读数据建议:先看摘要判断是否足够;需要具体字段时优先用 jqConvertFrom-Json 从保存的 json 文件按需抽取,避免整份 JSON 进入上下文。

解决认证和积分问题

发生以下异常情况时,采用 references/onboarding.md 引导解决问题:

异常情况

  • 未配置API Key:环境变量未配置 LINKFOXAGENTAPIKEY,也未配置 LINKFOXAGENTAPI_KEY
  • 响应401或402状态码
  • 响应提示积分或余额不足:消息含"积分余额不足/计费不足/余额不足/quota exceeded/insufficient balance/套餐到期/需充值/请充值",或类似含义的内容。

相关 skill

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

默认参数

字段 默认
site us
managementType semi-managed
tokenPurpose order-shipping

Scripts(按域)

Buy-Shipping(usbuyshipping_*

购标、面单、Scan Form、上门揽收等 — 见 [apis/README.md](./references/apis/README.md#buy-shipping购标面单scan-form)。

Co-Warehouse(uscowarehouse_*

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

Self-Fulfilled(usselffulfilled_*

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

Tracking(ustracking*

temu.track.trackinginfo.get

通用

脚本 说明
temuusproxy.py 任意 type
temuusfile_download.py 加签文件下载

薄封装统一调用 usfulfillmentscript.runcli

示例

export LINKFOXAGENT_API_KEY="<key>"

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

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

积分消耗规则

不消耗积分。

Feedback: skillNamelinkfox-temu-fulfillment-us