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

Linkfox Temu Price Us

  • 174 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-price-us is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.

  • linkfox-temu-price-us
  • AI & Agent Building
  • AI-coding skill

Linkfox Temu Price Us by the numbers

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

Add your badge

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

Listed on Skillselion
Installs174
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(linkfox-temu-price-us)

本 skill(linkfox-temu-price-us)覆盖 Partner Platform for US Product 菜单下与价格/供货价相关的 bg.local.* / temu.local.* 接口(menu_code=fb16b05f7a904765aac4af3a24b87d4a,具体 sub_menu_code 以 Partner 文档为准)。欧洲站请用 `linkfox-temu-price-eu`;全球站(非 US/EU)请用 `linkfox-temu-price-global`

当前已接入 4 个接口;其余价格接口将按 Partner 文档逐条补充到 references/apis/us_price_*.py

网关(本 skill 内置)

能力方法路径
价格 OpenAPI(us_price_*temu_us_proxyPOSThttps://tool-gateway.linkfox.com/temu/proxy
加签文件下载POSThttps://tool-gateway.linkfox.com/temu/fileDownload

相关 skill

场景skill
商品列表/详情/编辑/库存/上下架linkfox-temu-manage-product-us
订单查询、发货、物流linkfox-temu-order-us
取消订单(买家+卖家)linkfox-temu-cancel-order-us

| 履约/发货(含自发货) | linkfox-temu-fulfillment-us | | 发品、类目、V2 add | linkfox-temu-add-product-us | | 半托管 temu.goods.price.list.getproductSkuIds) | linkfox-temu-add-product-usus_goods_price_list.py | | 网关与 Temu token | 本 skill scripts/ |

API Usage

文档内容
api.md网关、鉴权、错误码、典型流程
partner-us-catalog.md接口目录 + Partner URL + 脚本
apis/README.md按接口分文件apis/<type-slug>.md

默认参数

字段默认说明
siteusPartner US
managementTypesemi-managed半托管
tokenPurposeproduct-inventory酷鸟卖家助手 token

鉴权

1. LinkFoxLINKFOXAGENT_API_KEY → Header Authorization + Token 2. TemuaccessTokenstoreKey

Scripts(按 type)

脚本type状态
us_price_baseprice_recommend.pytemu.local.goods.baseprice.recommend已接入
us_price_recommendedprice_query.pytemu.local.goods.recommendedprice.query已接入
us_price_priceorder_query.pybg.local.goods.priceorder.query已接入
us_price_priceorder_change_sku_price.pybg.local.goods.priceorder.change.sku.price已接入
temu_us_proxy.py任意 type通用
temu_us_file_download.py加签文件下载通用
新增接口后在此表与 partner-us-catalog.md 同步登记。

示例

export LINKFOXAGENT_API_KEY="<key>"

# 推荐基础价/供货价估算(须 catId + supplierPriceEstimateSkuQryList)
python scripts/us_price_baseprice_recommend.py '{
  "accessToken": "TOKEN",
  "request": {
    "supplierPriceEstimateQry": {
      "goodsBasicInfo": { "catId": 12345 },
      "supplierPriceEstimateSkuQryList": [
        {
          "specIdList": [9001],
          "externPlatformPriceInfo": { "amount": "19.99", "currency": "USD" }
        }
      ]
    }
  }
}'

# 推荐供货价查询(须 recommendedPriceType + goodsIdList,1~100 个 goodsId)
python scripts/us_price_recommendedprice_query.py '{
  "accessToken": "TOKEN",
  "request": {
    "recommendedPriceType": 10,
    "goodsIdList": [123456789]
  }
}'

# 定价单列表查询(白名单;分页 page/size,可选筛选)
python scripts/us_price_priceorder_query.py '{
  "accessToken": "TOKEN",
  "request": {
    "page": 1,
    "size": 20,
    "priceOrderType": 1,
    "orderBy": "order_create_time",
    "orderByType": 0
  }
}'

# 批量修改 SKU 基础价(白名单;须 goodsId + changeSkuPriceDTOList)
python scripts/us_price_priceorder_change_sku_price.py '{
  "accessToken": "TOKEN",
  "request": {
    "goodsId": 123456,
    "changeSkuPriceDTOList": [
      {
        "skuChangePriceBaseDTOList": [
          {
            "skuId": 58224724203874,
            "newSupplierPrice": { "amount": "15.99", "currency": "USD" }
          }
        ]
      }
    ]
  }
}'

Feedback: skillNamelinkfox-temu-price-us

网关与授权脚本

脚本说明
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, list_temu_access_tokens.py, save_temu_access_token.py, temu_file_download.py, temu_proxy.py, temu_token_guide.py, temu_us_file_download.py, temu_us_proxy.py, us_price_baseprice_recommend.py, us_price_priceorder_change_sku_price.py, us_price_priceorder_query.py, us_price_recommendedprice_query.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.