Security

亚马逊-最新政策资讯

Try it

查询亚马逊最新政策法规与资讯,支持按站点、时间区间分页检索资讯列表(含 AI 中文摘要),并按记录 ID 获取完整正文。当用户提到亚马逊政策法规、卖家合规公告、平台规则变动、政策预警、FBA/费用政策更新、多站点政策动态、政策原文、资讯详情,或 Amazon policy feed, seller compliance, policy changes, regulation alerts 时触发此技能。即使用户未明确提及"政策法规",只要其需求涉及亚马逊官方面向卖家发布的政策法规与资讯及其原文,也应触发此技能。

What it does

查询亚马逊最新政策法规与资讯,支持按站点、时间区间分页检索资讯列表(含 AI 中文摘要),并按记录 ID 获取完整正文。当用户提到亚马逊政策法规、卖家合规公告、平台规则变动、政策预警、FBA/费用政策更新、多站点政策动态、政策原文、资讯详情,或 Amazon policy feed, seller compliance, policy changes, regulation alerts 时触发此技能。即使用户未明确提及"政策法规",只要其需求涉及亚马逊官方面向卖家发布的政策法规与资讯及其原文,也应触发此技能。

The skill document

Amazon Policy & Regulation Feed

This skill retrieves Amazon's latest policy & regulation feed for cross-border sellers. It is a two-step (list then detail) flow: first list feed items by site / time window, then fetch the full article body by its id.

Core Concepts

  • Source: Amazon official policy & regulation updates for sellers, curated by AI to surface items valuable to cross-border operations.
  • AI summary: Each feed item includes a summaryZh field — an AI-generated 1-3 sentence Chinese summary for quick scanning.
  • Two coupled tools:
    1. amazon/policyFeed — paginated list; returns structured records with title, AI summary, original URL, and publish time.
    2. amazon/policyFeedDetail — full article body (Markdown) for a single record id obtained from the list.
  • Time range: Defaults to the last 7 days; supports custom time windows via publishedAtGte / publishedAtLte.

Parameters

List (amazon/policyFeed)

ParameterTypeRequiredDescriptionDefault
sitestringNoMarketplace code (uppercase); site filtering only applies to some feed item types, others are always returned regardless of siteUS
publishedAtGtestringNoPublish/change time lower bound (incl.), yyyy-MM-dd HH:mm:sslast 7 days
publishedAtLtestringNoPublish/change time upper bound (incl.), yyyy-MM-dd HH:mm:ssnow
pageintegerNoPage number, starting at 11
pageSizeintegerNoItems per page, 1-10020

Detail (amazon/policyFeedDetail)

ParameterTypeRequiredDescription
idstringYesRecord ID (32-char string) from the list response data[].id

Supported Marketplaces (for site)

US, JP, UK, AU, BE, BR, CA, EG, FR, DE, IN, IT, MX, NL, PL, SA, SG, ES, SE, TR, AE, ZA, IE. Default is US when not specified. Note: site filtering only applies to some feed item types; others are always returned regardless of site.

调用方式

  • API 端点
    • POST /amazon/policyFeedamazon_policy_feed.py,完整参数/响应/错误码见 references/api.md
    • POST /amazon/policyFeedDetailamazon_policy_feed_detail.py,完整参数/响应/错误码见 references/api.md
  • Python 脚本python scripts/<脚本名>.py '' [--inline]
  • 成本约束:本工具会消耗积分;同一会话同一参数组合默认只调用一次,脚本带 24h 本地缓存。失败/空结果不得自动换关键词、翻页或连续试探;需要继续检索时先向用户说明会产生额外消耗。

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

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

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

解决认证和积分问题

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

异常情况

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

How to Build Queries

  1. Set the time window: convert user's time reference into publishedAtGte / publishedAtLte. Leave empty for the default last 7 days.
  2. Pick the marketplace: map user's target country to the site code (default US). Note this only filters some feed item types.
  3. Paginate: increase page to scan deeper; max 100 items per page.
  4. Drill into a record: take a record's id from the list and call the detail script to read the full body.

Usage Examples

1. Recent feed (last 7 days, US)

{"site": "US", "pageSize": 20}

2. Custom date range

{"site": "US", "publishedAtGte": "2026-05-01 00:00:00", "publishedAtLte": "2026-05-31 23:59:59"}

3. Japan site feed, page 2

{"site": "JP", "page": 2, "pageSize": 50}

4. Full body of one record

{"id": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4"}

Display Rules

  1. List view: present results as a table with title, AI summary (summaryZh), publish time, and original URL link.
  2. Detail view: render the stdout Markdown as-is; the response also includes title and summaryZh for context.
  3. Only present data: report what the feed says; do not add subjective business advice or speculate on future policy.
  4. Timeliness note: data may lag the live page by a short period; the Amazon original is authoritative.
  5. Error handling: on a failed call, explain the reason from the error response (e.g. invalid id -> re-fetch from the list) instead of guessing.

Important Limitations

  • Default window is 7 days: without explicit time params, only the last 7 days are returned.
  • Max 100 items per page: pageSize range is 1-100.
  • Detail needs a valid list id: amazon/policyFeedDetail only accepts an id returned by amazon/policyFeed; unknown ids return an error.
  • Not for aggregation: this skill's output is long-form text and metadata — not suited for second-pass statistical/aggregation analysis via _dataQuery_executeDynamicQuery.

User Expression & Scenario Quick Reference

Applicable — Amazon official policy & regulation feed:

User SaysScenario
"最近亚马逊有什么政策变化"Recent policy feed overview
"亚马逊美国站近一周的政策新闻"Site-filtered policy news
"亚马逊最近有什么政策法规更新"General policy/regulation updates
"亚马逊 FBA 最新政策法规"Topic-specific policy lookup
"查看这条政策资讯的全文"Fetch full article body by id
"Amazon latest policy updates"English trigger

Not applicable — beyond policy & regulation feed:

  • Product / keyword / sales analytics, listing optimization, review analysis
  • Real-time storefront search results or product detail
  • Account-specific notifications inside an individual seller account
  • Historical patent or trademark searches

Boundary judgment: if the user wants Amazon's officially published policy, regulation, or compliance updates for sellers (and its full text), this skill applies. If they want product/keyword/sales data, use the corresponding data skills.

积分消耗规则

消耗 15 积分。

用户会因积分消耗而支付费用。请充分评估:当需要高频调用本技能,或用户对积分消耗量预期不足时,务必提醒用户,由用户决定是否继续。

Feedback:

Auto-detect and report feedback via the Feedback API when any of the following apply:

  1. The functionality or purpose described in this skill does not match actual behavior
  2. The skill's results do not match the user's intent
  3. The user expresses dissatisfaction or praise about this skill
  4. Anything you believe could be improved

Call the feedback API as specified in references/api.md. Do not interrupt the user's flow.


For more high-quality, professional cross-border e-commerce skills, visit LinkFox Skills.

Related skills

亚马逊店铺授权与管理技能,提供完整的授权流程、令牌刷新、已授权店铺查询以及授权状态查询能力。获取授权链接时店铺名 sellerName 为必填,用于区分已授权店铺。当用户提到亚马逊店铺授权、绑定亚马逊店铺、刷新令牌、查询店铺授权状态、管理授权店铺、Amazon seller authorization, bind Amazon seller account, refresh access token, query store token status, manage authorized stores时触发此技能。只要其需求涉及亚马逊卖家账号授权、令牌生命周期管理或店铺列表查询,也应触发此技能。

19 installs

亚马逊广告(Amazon Ads)店铺授权与管理技能,提供完整的授权流程、已绑定账号与站点的查询、令牌刷新与读取等能力。发起授权链接时需要先向用户确认一个账号名称;一次授权即可自动发现并绑定同账号下所有可用站点的广告 profile(每个站点对应一个 profileId)。当用户提到亚马逊广告授权、Amazon Ads 授权、绑定广告账户、刷新广告令牌、查询 profile 列表、管理已授权广告账户、Amazon Advertising authorization, Ads token refresh, list profiles, ad account management时触发此技能。即使未明确提及"Amazon Ads"或"授权",只要涉及亚马逊广告账号绑定、访问令牌管理或广告 profile 列表查询,也应触发。

17 installs

Automate Amazon Seller Central reports end-to-end: request, poll, download, and extract 95+ report types.

23 installs

按关键词查询亚马逊商业洞察报告,涵盖市场潜力、产品特征、用户评论、客户画像、搜索趋势、定价分析六大维度的AI 综合分析。当用户提到亚马逊商业洞察、市场洞察报告、选品报告、市场机会分析、竞争格局、消费者画像、定价分析、细分市场调研、Amazon opportunity report, market insight, business insight, market potential, competitive landscape, consumer behavior, pricing analysis, product selection report, niche analysis时触发此技能。即使用户未明确说"商业洞察",只要其需求涉及对某个亚马逊关键词做全面的市场机会评估或综合性报告生成,也应触发此技能。

1 installs

按ASIN获取并分析亚马逊商品评论,支持15个站点(含美国站),按星级筛选评论。当用户提到亚马逊评论、美国站评论、商品评价、买家投诉、差评、好评、星级评分、评论分析、评论情感、产品改良建议、Vine评论、已验证购买评论、竞品评论研究、Amazon reviews, US reviews, Amazon.com reviews, product feedback, negative review analysis, positive review analysis, star rating filter, review sentiment analysis, product improvement insights, Vine reviews, competitor reviews, customer feedback时触发此技能。即使用户未明确说"评论",只要其需求涉及读取、筛选或分析亚马逊商品的买家评论,也应触发此技能。

1 installs

通过亚马逊前台的 Alexa 购物助手发起自然语言问答,获取与问题相关的导购回答、推荐商品分组、ASIN 列表,以及可继续追问的问题。每次调用仅支持 1 条 prompt,如需追问须由 agent 总结上下文后拼接新问题发起新请求。可用 url 补充亚马逊页面上下文。当用户提到亚马逊 Alexa、Alexa 购物助手、亚马逊智能助手、AI 导购、对话式选品、自然语言购物、亚马逊聊天问答、Amazon Alexa shopping, conversational shopping, AI shopping assistant, follow-up questions、产品推荐对话、上下文追问等场景时触发此技能。即使用户未明确提及"Alexa",只要其需求是"在亚马逊前台用自然语言问出商品推荐",也应触发此技能。

1 installs