linkfox-amazon-policy-feed
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseAmazon Policy & Regulation Feed
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本技能为跨境卖家检索亚马逊最新的政策法规资讯流。它采用两步式(先列表后详情)流程:首先按站点/时间窗口列出资讯条目,再通过获取完整文章内容。
idCore 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 field — an AI-generated 1-3 sentence Chinese summary for quick scanning.
summaryZh - Two coupled tools:
- — paginated list; returns structured records with title, AI summary, original URL, and publish time.
amazon/policyFeed - — full article body (Markdown) for a single record
amazon/policyFeedDetailobtained from the list.id
- Time range: Defaults to the last 7 days; supports custom time windows via /
publishedAtGte.publishedAtLte
- 来源:亚马逊官方面向卖家发布的政策法规更新,经AI筛选后呈现对跨境运营有价值的内容。
- AI摘要:每条资讯条目包含字段——由AI生成的1-3句中文摘要,便于快速浏览。
summaryZh - 两个关联工具:
- —— 分页列表;返回包含标题、AI摘要、原始URL和发布时间的结构化记录。
amazon/policyFeed - —— 单条记录的完整文章内容(Markdown格式),需传入列表中获取的
amazon/policyFeedDetail。id
- 时间范围:默认最近7天;支持通过/
publishedAtGte自定义时间窗口。publishedAtLte
Parameters
参数
List (amazon/policyFeed
)
amazon/policyFeed列表查询(amazon/policyFeed
)
amazon/policyFeed| Parameter | Type | Required | Description | Default |
|---|---|---|---|---|
| site | string | No | Marketplace code (uppercase); site filtering only applies to some feed item types, others are always returned regardless of site | US |
| publishedAtGte | string | No | Publish/change time lower bound (incl.), | last 7 days |
| publishedAtLte | string | No | Publish/change time upper bound (incl.), | now |
| page | integer | No | Page number, starting at 1 | 1 |
| pageSize | integer | No | Items per page, 1-100 | 20 |
| 参数 | 类型 | 是否必填 | 描述 | 默认值 |
|---|---|---|---|---|
| site | string | 否 | Marketplace代码(大写);站点筛选仅适用于部分类型的资讯条目,其他类型的资讯将始终返回,不受站点限制 | US |
| publishedAtGte | string | 否 | 发布/变更时间下限(包含),格式为 | 最近7天 |
| publishedAtLte | string | 否 | 发布/变更时间上限(包含),格式为 | 当前时间 |
| page | integer | 否 | 页码,从1开始 | 1 |
| pageSize | integer | 否 | 每页条目数,范围1-100 | 20 |
Detail (amazon/policyFeedDetail
)
amazon/policyFeedDetail详情查询(amazon/policyFeedDetail
)
amazon/policyFeedDetail| Parameter | Type | Required | Description |
|---|---|---|---|
| id | string | Yes | Record ID (32-char string) from the list response |
| 参数 | 类型 | 是否必填 | 描述 |
|---|---|---|---|
| id | string | 是 | 列表响应 |
Supported Marketplaces (for site
)
site支持的Marketplace(site
参数)
siteUS, 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: filtering only applies to some feed item types; others are always returned regardless of site.
siteUS、JP、UK、AU、BE、BR、CA、EG、FR、DE、IN、IT、MX、NL、PL、SA、SG、ES、SE、TR、AE、ZA、IE。未指定时默认值为US。注意:站点筛选仅适用于部分类型的资讯条目,其他类型的资讯将始终返回,不受站点限制。
API Usage
API 使用方法
See for calling conventions, request parameters, response structure, and error codes. Run scripts directly:
references/api.mdbash
python scripts/amazon_policy_feed.py '{"site": "US", "pageSize": 20}'
python scripts/amazon_policy_feed_detail.py '{"id": "<id from list>"}'调用规范、请求参数、响应结构及错误码请参考。可直接运行脚本:
references/api.mdbash
python scripts/amazon_policy_feed.py '{"site": "US", "pageSize": 20}'
python scripts/amazon_policy_feed_detail.py '{"id": "<id from list>"}'How to Build Queries
查询构建方法
- Set the time window: convert user's time reference into /
publishedAtGte. Leave empty for the default last 7 days.publishedAtLte - Pick the marketplace: map user's target country to the code (default US). Note this only filters some feed item types.
site - Paginate: increase to scan deeper; max 100 items per page.
page - Drill into a record: take a record's from the list and call the detail script to read the full body.
id
- 设置时间窗口:将用户提及的时间范围转换为/
publishedAtGte参数。留空则使用默认的最近7天。publishedAtLte - 选择Marketplace:将用户目标国家映射为代码(默认US)。注意此参数仅筛选部分类型的资讯条目。
site - 分页查询:增加参数以查看更多内容;每页最多100条条目。
page - 查看单条记录详情:从列表中获取记录的,调用详情脚本读取完整内容。
id
Usage Examples
使用示例
1. Recent feed (last 7 days, US)
json
{"site": "US", "pageSize": 20}2. Custom date range
json
{"site": "US", "publishedAtGte": "2026-05-01 00:00:00", "publishedAtLte": "2026-05-31 23:59:59"}3. Japan site feed, page 2
json
{"site": "JP", "page": 2, "pageSize": 50}4. Full body of one record
json
{"id": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4"}1. 近期资讯(最近7天,美国站)
json
{"site": "US", "pageSize": 20}2. 自定义日期范围
json
{"site": "US", "publishedAtGte": "2026-05-01 00:00:00", "publishedAtLte": "2026-05-31 23:59:59"}3. 日本站资讯,第2页
json
{"site": "JP", "page": 2, "pageSize": 50}4. 单条记录的完整内容
json
{"id": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4"}Display Rules
展示规则
- List view: present results as a table with title, AI summary (), publish time, and original URL link.
summaryZh - Detail view: render the Markdown as-is; the response also includes
stdoutandtitlefor context.summaryZh - Only present data: report what the feed says; do not add subjective business advice or speculate on future policy.
- Timeliness note: data may lag the live page by a short period; the Amazon original is authoritative.
- Error handling: on a failed call, explain the reason from the error response (e.g. invalid -> re-fetch from the list) instead of guessing.
id
- 列表视图:以表格形式展示结果,包含标题、AI摘要()、发布时间和原始URL链接。
summaryZh - 详情视图:直接渲染返回的Markdown内容;响应中还包含
stdout和title用于上下文参考。summaryZh - 仅展示数据:如实呈现资讯内容;不得添加主观商业建议或对未来政策进行推测。
- 时效性说明:数据可能比亚马逊实时页面略有延迟;亚马逊官方原文为权威来源。
- 错误处理:调用失败时,根据错误响应说明原因(例如:无效-> 重新从列表中获取),而非自行猜测。
id
Important Limitations
重要限制
- Default window is 7 days: without explicit time params, only the last 7 days are returned.
- Max 100 items per page: range is 1-100.
pageSize - Detail needs a valid list :
idonly accepts anamazon/policyFeedDetailreturned byid; unknown ids return an error.amazon/policyFeed - Not for aggregation: this skill's output is long-form text and metadata — not suited for second-pass statistical/aggregation analysis via .
_dataQuery_executeDynamicQuery
- 默认时间窗口为7天:未指定时间参数时,仅返回最近7天的内容。
- 每页最多100条条目:范围为1-100。
pageSize - 详情查询需要有效的列表:
id仅接受amazon/policyFeedDetail返回的amazon/policyFeed;未知id将返回错误。id - 不支持聚合分析:本技能的输出为长文本和元数据——不适合通过进行二次统计/聚合分析。
_dataQuery_executeDynamicQuery
User Expression & Scenario Quick Reference
用户表述与场景速查
Applicable — Amazon official policy & regulation feed:
| User Says | Scenario |
|---|---|
| "最近亚马逊有什么政策变化" | 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.
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 . Do not interrupt the user's flow.
<!-- LF_LARGE_RESPONSE_BLOCK -->references/api.md适用场景 —— 亚马逊官方政策法规资讯流:
| 用户表述 | 场景 |
|---|---|
| "最近亚马逊有什么政策变化" | 近期政策资讯概览 |
| "亚马逊美国站近一周的政策新闻" | 按站点筛选的政策新闻 |
| "亚马逊最近有什么政策法规更新" | 通用政策法规更新查询 |
| "亚马逊 FBA 最新政策法规" | 特定主题的政策查询 |
| "查看这条政策资讯的全文" | 通过ID获取完整文章内容 |
| "Amazon latest policy updates" | 英文触发词 |
不适用场景 —— 超出政策法规资讯流范围:
- 产品/关键词/销售数据分析、Listing优化、评论分析
- 实时店铺搜索结果或产品详情
- 卖家个人账户内的专属通知
- 历史专利或商标查询
边界判断:如果用户需要亚马逊官方发布的面向卖家的政策、法规或合规更新(及其全文),则适用本技能。如果用户需要产品/关键词/销售数据,请使用对应的数据类技能。
反馈:
当出现以下任一情况时,自动检测并通过Feedback API提交反馈:
- 本技能描述的功能或用途与实际行为不符
- 技能结果不符合用户意图
- 用户表达了对本技能的不满或赞扬
- 任何你认为可以改进的内容
按照中的指定方式调用Feedback API,请勿中断用户流程。
<!-- LF_LARGE_RESPONSE_BLOCK -->references/api.mdHandling 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_policy_feed.py --out-dir <DIR> '<params>'
python scripts/response_io.py read <file> --fields "<paths>" # or --path "<JMESPath>"Pickoutside any git working tree (e.g.--out-diron Unix,/tmp/...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.%TEMP%/...
This skill exposes multiple entry scripts:,amazon_policy_feed.py. Passamazon_policy_feed_detail.pyto choose the one you need.--script scripts/<name>.py
runread--limit/--offset--format json|jsonl|csv|tableWhen 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 .
<!-- /LF_LARGE_RESPONSE_BLOCK -->
readFor more high-quality, professional cross-border e-commerce skills, visit LinkFox Skills.
为避免超出Agent上下文限制,可将响应持久化到磁盘并仅提取所需字段:
python scripts/response_io.py run --script scripts/amazon_policy_feed.py --out-dir <DIR> '<params>'
python scripts/response_io.py read <file> --fields "<paths>" # 或 --path "<JMESPath>"请选择为Git工作区外的路径(例如Unix系统的<DIR>,Windows系统的/tmp/...)。持久化的响应可能包含PII、定价或敏感认证数据——请勿提交到Git仓库。文件不会自动删除;任务完成后请自行清理。%TEMP%/...
本技能提供多个入口脚本:、amazon_policy_feed.py。通过amazon_policy_feed_detail.py参数选择所需脚本。--script scripts/<name>.py
runread--limit/--offset--format json|jsonl|csv|table何时优先使用此模式——根据响应特征自行判断,例如:
- 每条记录字段数量多,或包含不需要的字段
- 批量/分页结果(单次调用返回多条条目)
- 长文本字段(描述、评论、HTML、时间序列)
- 输出需在后续步骤中重复使用,而非立即消费
对于小型、单次使用的响应,直接调用主脚本即可。
⚠️ 预览内容为截断的架构+示例,而非完整数据。任何字段层面的决策必须通过命令从持久化文件中读取。
<!-- /LF_LARGE_RESPONSE_BLOCK -->
read如需更多高质量的专业跨境电商技能,请访问LinkFox Skills。