Install
openclaw skills install linkfox-amazon-policy-news查询亚马逊卖家后台 Seller News 政策与合规类新闻,支持按站点、发布时间区间、标题关键词分页检索新闻列表,并按新闻 ID 获取完整正文。当用户提到亚马逊政策新闻、卖家合规公告、平台规则变动、政策预警、FBA/费用政策更新、Seller News、多站点政策动态、政策原文、新闻详情,或 Amazon policy news, seller compliance, Seller News, platform policy changes, policy alerts, FBA fee policy 时触发此技能。即使用户未明确提及"政策新闻",只要其需求涉及亚马逊官方面向卖家发布的政策/合规公告及其原文,也应触发此技能。
openclaw skills install linkfox-amazon-policy-newsThis 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.
amazon/policyNews — paginated list; returns structured records, including a ~300-char preview snippet.amazon/newsDetail — full article body (Markdown) for a single news id obtained from the 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 |
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 |
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.
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": "<id from the list response>", "site": "US"}'
site code (default US).publishedAtGte / publishedAtLte. Leave empty for the default last 3 months.FBA, fee, tax) into keyword for title matching.page to scan deeper.id from the list and call the detail script to read the full body. Pass the same site the news was listed under (default US).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"}
url so users can open the source.stdout Markdown as-is; keep the leading meta line (site / category / published time / source link).id → re-fetch from the list) instead of guessing.id: amazon/newsDetail only accepts an id returned by amazon/policyNews; unknown ids return a "news not found" error.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:
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:
Call the feedback API as specified in references/api.md. Do not interrupt the user's flow.
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 <DIR> '<params>'
python scripts/response_io.py read <file> --fields "<paths>" # or --path "<JMESPath>"
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/<name>.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.:
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.
For more high-quality, professional cross-border e-commerce skills, set LinkFox Skills.