Amazon Seller Policy News
/install linkfox-amazon-policy-news
Amazon Seller Policy News
This skill retrieves Amazon Seller News policy & compliance announcements for cross-border sellers. It is a two-step (list → detail) flow: first list news by site / time window / title keyword, then fetch the full article body by its id.
Core Concepts
- Source: Amazon Seller Central 「Seller News」 official announcements, captured via periodic snapshots. Content reflects the snapshot time and may lag the live page; the Amazon backend original is authoritative.
- Scope: Currently only the Policy and Compliance (政策与合规) category.
- Two coupled tools:
amazon/policyNews— paginated list; returns structured records, including a ~300-char preview snippet.amazon/newsDetail— full article body (Markdown) for a single newsidobtained from the list.
- Time range: Defaults to the last 3 months; queryable up to the last 1 year (earlier requests error out).
Parameters
List (amazon/policyNews)
| Parameter | Type | Required | Description | Default |
|---|---|---|---|---|
| site | string | Yes | Marketplace code (uppercase); see Supported Marketplaces | US |
| keyword | string | No | Title fuzzy match (case-insensitive) | - |
| publishedAtGte | string | No | Published-time lower bound (incl.), yyyy-MM-dd HH:mm:ss |
last 3 months |
| publishedAtLte | string | No | Published-time upper bound (incl.), yyyy-MM-dd HH:mm:ss |
now |
| page | integer | No | Page number, starting at 1 | 1 |
| pageSize | integer | No | Items per page, 1-100 | 20 |
Detail (amazon/newsDetail)
| Parameter | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | News article ID from the list response data[].id |
| site | string | No | Marketplace code (uppercase); pass the same site the news was listed under. Default US |
Supported Marketplaces
site accepts (uppercase): 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 the user doesn't specify.
API Usage
This skill calls the LinkFox tool gateway. See references/api.md for calling conventions, request parameters, response structure, and error codes. You can also run the scripts directly:
python scripts/amazon_policy_news.py '{"site": "US", "keyword": "FBA", "pageSize": 20}'
python scripts/amazon_news_detail.py '{"id": "\x3Cid from the list response>", "site": "US"}'
How to Build Queries
- Pick the marketplace: map the user's target country to the
sitecode (default US). - Set the time window: convert "近一个月 / last month / since 2026-01" into
publishedAtGte/publishedAtLte. Leave empty for the default last 3 months. - Filter by keyword: pass topical terms (e.g.
FBA,fee,tax) intokeywordfor title matching. - Paginate: increase
pageto scan deeper. - Drill into a story: take a record's
idfrom the list and call the detail script to read the full body. Pass the samesitethe news was listed under (default US).
Usage Examples
1. Recent US policy news
{"site": "US", "pageSize": 20}
2. US news mentioning FBA in a date range
{"site": "US", "keyword": "FBA", "publishedAtGte": "2026-01-01 00:00:00", "publishedAtLte": "2026-05-28 23:59:59"}
3. UK policy news, page 2
{"site": "UK", "page": 2, "pageSize": 50}
4. Full body of one article (pass the source site)
{"id": "QVRWUERLSUtYMERFUiNHOTZRODY5N1pXWU1DR0I3", "site": "US"}
Display Rules
- List view: present results as a table with title, site, category, published time, and the preview snippet; include the original
urlso users can open the source. - Detail view: render the
stdoutMarkdown as-is; keep the leading meta line (site / category / published time / source link). - Only present data: report what the news says; do not add subjective business advice or speculate on future policy.
- Snapshot reminder: when relevant, note that content is a snapshot and the Amazon backend original is authoritative.
- 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
- Policy & Compliance only: other Seller News categories are not covered.
- Default window is 3 months; max 1 year: requests beyond ~1 year error out.
- Detail needs a valid list
id:amazon/newsDetailonly accepts anidreturned byamazon/policyNews; unknown ids return a "news not found" error. - Not for aggregation: detail returns long-form text and the list is news metadata — this skill's output is not suited for second-pass statistical/aggregation analysis.
User Expression & Scenario Quick Reference
Applicable — Amazon official seller policy / compliance announcements:
| User Says | Scenario |
|---|---|
| "近一个月美国站有哪些政策新闻" | Recent policy news by site/time |
| "亚马逊最近 FBA 费用政策有变化吗" | Keyword-filtered policy lookup |
| "帮我看看这条政策新闻的全文" | Fetch full article body by id |
| "英国站的合规公告" | Cross-marketplace policy news |
| "亚马逊平台规则有什么更新" | Platform rule-change monitoring |
Not applicable — beyond official Seller News policy announcements:
- Help-doc (帮助中心) content changes → use the Amazon help-doc change skill
- Product / keyword / sales analytics, listing optimization, review analysis
- Real-time storefront search results or product detail
- Account-specific notifications inside an individual seller account
Boundary judgment: if the user wants Amazon's publicly published policy & compliance news for sellers (and its full text), this skill applies. If they want changes to Amazon help documentation, use the help-doc change skill; if they want product/keyword/sales data, use the corresponding data skills.
Feedback:
Auto-detect and report feedback via the Feedback API when any of the following apply:
- The functionality or purpose described in this skill does not match actual behavior
- The skill's results do not match the user's intent
- The user expresses dissatisfaction or praise about this skill
- Anything you believe could be improved
Call the feedback API as specified in references/api.md. Do not interrupt the user's flow.
\x3C!-- 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/amazon_news_detail.py --out-dir \x3CDIR> '\x3Cparams>'
python scripts/response_io.py read \x3Cfile> --fields "\x3Cpaths>" # or --path "\x3CJMESPath>"
Pick
--out-diroutside 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:
amazon_news_detail.py,amazon_policy_news.py. Pass--script scripts/\x3Cname>.pyto 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.
\x3C!-- /LF_LARGE_RESPONSE_BLOCK -->
For more high-quality, professional cross-border e-commerce skills, set LinkFox Skills.
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install linkfox-amazon-policy-news - 安装完成后,直接呼叫该 Skill 的名称或使用
/linkfox-amazon-policy-news触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Amazon Seller Policy News 是什么?
查询亚马逊卖家后台 Seller News 政策与合规类新闻,支持按站点、发布时间区间、标题关键词分页检索新闻列表,并按新闻 ID 获取完整正文。当用户提到亚马逊政策新闻、卖家合规公告、平台规则变动、政策预警、FBA/费用政策更新、Seller News、多站点政策动态、政策原文、新闻详情,或 Amazon po... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 24 次。
如何安装 Amazon Seller Policy News?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install linkfox-amazon-policy-news」即可一键安装,无需额外配置。
Amazon Seller Policy News 是免费的吗?
是的,Amazon Seller Policy News 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Amazon Seller Policy News 支持哪些平台?
Amazon Seller Policy News 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Amazon Seller Policy News?
由 linkfox-ai(@linkfox-ai)开发并维护,当前版本 v1.0.0。