亚马逊-店铺Listing管理
亚马逊店铺 Listing 与刊登相关定义/限制(与 linkfox-amazon-store-auth / linkfox-amazon-store-report 同系列),经 LinkFox /spApi/developerProxy 调用 SP-API:Listings Items(get/search/patch/put/delete)、Listin…
linkfox-ai
@linkfox-ai
What This Skill Does
Amazon SP-API 工具,用于管理店铺 Listing 的查询、创建、更新、删除以及获取刊登限制和产品类型定义。通过 LinkFox 代理转发请求,支持单条操作和批量搜索。
Replaces manually navigating Amazon Seller Central or writing custom SP-API integrations for listing management by providing a unified CLI and script interface for all listing-related operations.
When to Use It
- 查询亚马逊店铺中某个 SKU 的 Listing 详情
- 批量搜索店铺中符合特定条件的 Listing 列表
- 更新现有 Listing 的部分属性(如价格、描述)
- 创建新的 Listing 或全量覆盖已有 Listing
- 删除店铺中不再销售的 Listing
- 检查某个 ASIN 的刊登限制或获取产品类型定义
Install
$ openclaw skills install @linkfox-ai/linkfox-amazon-store-listingsAmazon 店铺 Listings 与相关 API
本 skill 与 linkfox-amazon-store-auth、linkfox-amazon-store-report 同属 Amazon Store 系列:依赖 linkfox-amazon-store-auth 选店(sellerId+region);直接 POST /spApi/developerProxy 传入 sellerId+region,由服务端解析 token(勿传 amzAccessToken,除非兼容旧调用)。转发上游 GET、PATCH、PUT 或 DELETE。
| 操作 | 官方参考 |
|---|---|
| 单条刊登 | getListingsItem |
| 检索列表 | searchListingsItems |
| 部分更新刊登 | patchListingsItem |
| 创建 / 全量更新刊登 | putListingsItem |
| 删除刊登 | deleteListingsItem |
| 刊登限制(ASIN) | getListingsRestrictions |
| 搜索 product type | searchDefinitionsProductTypes |
| 获取 product type 定义 | getDefinitionsProductType |
调用方式
- API 端点:
POST /spApi/developerProxy(不同操作通过请求体区分;完整参数/响应/错误码见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(同样落盘)
读数据建议:先看摘要判断是否足够;需要具体字段时优先用 jq或ConvertFrom-Json或ConvertFrom-Json 从保存的 json 文件按需抽取,避免整份 JSON 进入上下文。
解决认证和积分问题
发生以下异常情况时,采用 references/onboarding.md 引导解决问题:
异常情况
- 未配置API Key:环境变量未配置
LINKFOX_AGENT_API_KEY,也未配置LINKFOXAGENT_API_KEY。 - 响应401或402状态码
- 响应提示积分或余额不足:消息含"积分余额不足/计费不足/余额不足/quota exceeded/insufficient balance/套餐到期/需充值/请充值",或类似含义的内容。
Prerequisites(必须先读)
本 skill 依赖 linkfox-amazon-store-auth。流程与 linkfox-amazon-store-report 相同:
- 运行
python scripts/check_auth_dependency.py;若 exit code 42 且 stderr 含DEPENDENCY_MISSING:,请先安装linkfox-amazon-store-auth。 - 不要在本 skill 内绕过依赖实现授权或令牌逻辑。
Current Capabilities
| 能力 | Path 要点 | 脚本 |
|---|---|---|
| 获取单条 Listing | listings/2021-08-01/items/{sellerId}/{sku} + Query | scripts/get_listings_item.py |
| 搜索刊登列表 | listings/2021-08-01/items/{sellerId} + Query(无路径尾段 SKU) | scripts/search_listings_items.py |
| 部分更新 Listing(PATCH) | 同 get 路径 + Query + JSON body | scripts/patch_listings_item.py |
| 创建 / 全量更新 Listing(PUT) | 同 get 路径 + Query + body;marketplaceIds 仅 1 个 | scripts/put_listings_item.py |
| 删除 Listing(DELETE) | 同 get 路径 + Query(marketplaceIds 仅 1 个) | scripts/delete_listings_item.py |
| 刊登限制 | listings/2021-08-01/restrictions + Query(asin、sellerId、marketplaceIds 等) | scripts/get_listings_restrictions.py |
| 搜索 Product Type | definitions/2020-09-01/productTypes + Query | scripts/search_definitions_product_types.py |
| 获取 Product Type 定义 | definitions/2020-09-01/productTypes/{productType} + Query;marketplaceIds 仅 1 个 | scripts/get_definitions_product_type.py |
searchListingsItems 下 identifiers / variationParentSku / packageHierarchySku 三者互斥(仅该接口;见 references/api.md)。searchDefinitionsProductTypes 下 keywords 与 itemName 互斥。
Quick Parameters
getListingsItem(单条)
| 字段 | 必填 | 说明 |
|---|---|---|
| sellerId | 是 | 已授权 Seller ID |
| region | 是 | NA / EU / FE |
| sku | 是 | 卖家 SKU(非 ASIN) |
| marketplaceIds | 是 | 建议仅 一个 marketplace id |
| includedData / issueLocale | 否 | 见 references/api.md |
searchListingsItems(列表)
| 字段 | 必填 | 说明 |
|---|---|---|
| sellerId | 是 | 已授权 Seller ID |
| region | 是 | NA / EU / FE |
| marketplaceIds | 是 | 建议仅 一个 marketplace id |
| identifiers + identifiersType | 否 | 最多 20 个;与 variationParentSku、packageHierarchySku 不能同用 |
| variationParentSku / packageHierarchySku | 否 | 与 identifiers 互斥 |
| 时间窗 / 状态 / 排序 / 分页 | 否 | createdAfter、lastUpdatedBefore、withStatus、sortBy、pageSize(≤20)、pageToken 等,见 references/api.md |
patchListingsItem(部分更新)
| 字段 | 必填 | 说明 |
|---|---|---|
| sellerId | 是 | 已授权 Seller ID |
| region | 是 | NA / EU / FE |
| sku | 是 | 卖家 SKU |
| marketplaceIds | 是 | 数组或逗号字符串;脚本拼入 Query |
| productType | 是 | Amazon product type |
| patches | 是 | 至少 1 条 JSON Patch(op、path 等) |
| includedData / mode / issueLocale | 否 | 见 references/api.md |
putListingsItem(创建 / 全量更新)
| 字段 | 必填 | 说明 |
|---|---|---|
| sellerId | 是 | 已授权 Seller ID |
| region | 是 | NA / EU / FE |
| sku | 是 | 卖家 SKU |
| marketplaceIds | 是 | 恰好一个 marketplace id |
| productType | 是 | Amazon product type |
| requirements | 是 | LISTING | LISTING_PRODUCT_ONLY | LISTING_OFFER_ONLY |
| attributes | 是 | 须符合该 product type schema |
| includedData / mode / issueLocale | 否 | 见 references/api.md |
deleteListingsItem(删除)
| 字段 | 必填 | 说明 |
|---|---|---|
| sellerId | 是 | 已授权 Seller ID |
| region | 是 | NA / EU / FE |
| sku | 是 | 卖家 SKU |
| marketplaceIds | 是 | 恰好一个 marketplace id |
| issueLocale | 否 | 见 references/api.md |
getListingsRestrictions
| 字段 | 必填 | 说明 |
|---|---|---|
| sellerId | 是 | 用于 storeTokens 与 Query |
| region | 是 | NA / EU / FE |
| asin | 是 | 目录 ASIN |
| marketplaceIds | 是 | 数组或逗号字符串 |
| conditionType / reasonLocale | 否 | 见 references/api.md |
searchDefinitionsProductTypes
| 字段 | 必填 | 说明 |
|---|---|---|
| sellerId | 是 | 用于 storeTokens |
| region | 是 | NA / EU / FE |
| marketplaceIds | 是 | 数组或逗号字符串 |
| keywords 或 itemName | 否 | 二者不可同时传(非空时互斥) |
| locale / searchLocale | 否 | 见 references/api.md |
getDefinitionsProductType
| 字段 | 必填 | 说明 |
|---|---|---|
| sellerId | 是 | 用于 storeTokens |
| region | 是 | NA / EU / FE |
| productType | 是 | 如 LUGGAGE(写入 path) |
| marketplaceIds | 是 | 恰好一个 id |
| querySellerId | 否 | 若需上游 Query sellerId(卖家专属 schema),传入;常与 sellerId 相同 |
| productTypeVersion / requirements / requirementsEnforced / locale | 否 | 见 references/api.md |
Scripts
scripts/get_listings_item.py— 单条 listing。scripts/search_listings_items.py— 搜索列表。scripts/patch_listings_item.py— PATCH 部分更新。scripts/put_listings_item.py— PUT 创建或全量更新。scripts/delete_listings_item.py— DELETE 删除刊登。scripts/get_listings_restrictions.py— GET 刊登限制。scripts/search_definitions_product_types.py— GET 搜索 product type。scripts/get_definitions_product_type.py— GET product type JSON Schema。scripts/check_auth_dependency.py— 依赖检测。
示例:
export LINKFOXAGENT_API_KEY="<your-key>"
python scripts/get_listings_item.py '{"sellerId":"A1...","region":"NA","sku":"MY-SKU","marketplaceIds":["ATVPDKIKX0DER"]}'
python scripts/search_listings_items.py '{"sellerId":"A1...","region":"NA","marketplaceIds":["ATVPDKIKX0DER"],"identifiers":["B0XXXXXXXX"],"identifiersType":"ASIN"}'
python scripts/patch_listings_item.py '{"sellerId":"A1...","region":"NA","sku":"MY-SKU","marketplaceIds":["ATVPDKIKX0DER"],"productType":"LUGGAGE","patches":[{"op":"replace","path":"/attributes/item_name","value":[{"value":"New Title","marketplace_id":"ATVPDKIKX0DER"}]}]}'
python scripts/put_listings_item.py '{"sellerId":"A1...","region":"NA","sku":"MY-SKU","marketplaceIds":["ATVPDKIKX0DER"],"productType":"LUGGAGE","requirements":"LISTING","attributes":{"item_name":[{"value":"Title","marketplace_id":"ATVPDKIKX0DER"}]}}'
python scripts/delete_listings_item.py '{"sellerId":"A1...","region":"NA","sku":"MY-SKU","marketplaceIds":["ATVPDKIKX0DER"]}'
python scripts/get_listings_restrictions.py '{"sellerId":"A1...","region":"NA","asin":"B0XXXXXXXX","marketplaceIds":["ATVPDKIKX0DER"]}'
python scripts/search_definitions_product_types.py '{"sellerId":"A1...","region":"NA","marketplaceIds":["ATVPDKIKX0DER"],"keywords":["luggage"]}'
python scripts/get_definitions_product_type.py '{"sellerId":"A1...","region":"NA","productType":"LUGGAGE","marketplaceIds":["ATVPDKIKX0DER"],"querySellerId":"A1..."}'
Display Rules
- items 类接口:路径含 卖家 SKU 时强调非 ASIN;searchListingsItems 路径仅到
sellerId。 - 展示网关结果时说明
errcode/httpStatus;成功后再解析body(listing/searchResult/patchResult/putResult/deleteResult/restrictionsResult/productTypesSearchResult/productTypeDefinitionResult)。 - searchListingsItems 多页:从
searchResult取下一页 token(字段名以 Amazon 响应为准),传入pageToken。 - restrictions / definitions 路径与 items 不同;1005 时需为
listings/2021-08-01/restrictions与definitions/2020-09-01/productTypes等前缀分别配置白名单(以运维为准)。 - patch / put / delete 为写操作;delete 须谨慎;put 为全量
attributes;patch 仅顶层属性可 patch(以官方为准)。
Important Limitations
- marketplaceIds:get / searchListingsItems 脚本对多 id 常仅取第一个;put / delete / getDefinitionsProductType 多于 1 个即报错;patch、restrictions、searchDefinitionsProductTypes 行为见
references/api.md。 - searchListingsItems:
pageSize≤ 20;identifiers≤ 20。 - patch:
patches至少 1 条;JSON Patch 的delete与 deleteListingsItem 接口不同;Vendor 对部分 patch 可能 400。 - put:LISTING_OFFER_ONLY 对 Vendor 400。
- 白名单:
listings/.../items、listings/.../restrictions、definitions/2020-09-01/productTypes均须按需放行。
积分消耗规则
不消耗积分。
Feedback: 见 references/api.md 中 Feedback API,skillName:linkfox-amazon-store-listings。
更多跨境 skill:LinkFox Skills
Top skills in this category
Web Content Fetcher
@mrtommywu网页内容获取工具 | 当常规爬虫被过滤时,使用替代服务获取网页内容。支持:1) r.jina.ai - 最稳定 2) markdown.new - Cloudflare 专用 3) defuddle.md - 备用方案。触发词:获取网页内容、网页转markdown、内容抓取、fetch webpage、bypas...
AI Daily Briefing
@jeffjhunterStart every day focused. Get a morning briefing with overdue tasks, today's priorities, calendar overview, and context from recent meetings. Works with ai-meeting-notes to-do list. No setup. Just say 'briefing'.
ADHD Assistant
@thinktankmachineADHD-friendly life management assistant for OpenClaw. Helps with daily planning, task breakdown, time management, prioritization, body doubling, dopamine regulation, and maintaining routines. Use when the user asks for help organizing their life, staying on top of tasks, beating procrastination, planning their day/week, managing overwhelm, or mentions ADHD-related challenges like time blindness, forgetfulness, difficulty starting tasks, or emotional dysregulation.
openclaw-nextcloud
@keithvassallomtManage Notes, Tasks, Calendar, Files, Contacts, and Deck Kanban boards in your Nextcloud instance via CalDAV, WebDAV, Notes, and Deck APIs. Use for creating notes, managing todos and calendar events, uploading/downloading files, managing contacts, and organizing Kanban boards, stacks, and cards.
Dingtalk Ai Table
@aliramw钉钉 AI 表格(多维表)操作技能。使用 mcporter CLI 连接钉钉官方新版 AI 表格 MCP server,基于 baseId / tableId / fieldId / recordId 体系执行 Base、Table、Field、Record 的查询与增删改。适用于创建 AI 表格、搜索表格、读取...