Amazon Help Doc Change Monitor
/install linkfox-amazon-help-doc-changes
Amazon Help Doc Change Monitor
This skill monitors changes to Amazon Seller Central Help documentation. An AI layer pre-screens edits and surfaces only the changes that actually matter to sellers. It is a two-step (list → detail) flow: first list AI-curated valuable changes by time window / title keyword, then fetch the change detail + latest full document by its id.
Core Concepts
- AI-curated, not raw diffs: results contain only changes the AI judges "valuable to sellers". Pure formatting / non-substantive edits are filtered out, so the returned count is usually far smaller than the document's actual edit count — this is by design, not missing data.
- Two coupled tools:
amazon/helpDocChanges— paginated list of valuable changes (structured), each with an AI-generated Chinese summary, ordered by change time (newest first).amazon/helpDocDetail— full change detail for one changeid: AI summary + what specifically changed + the latest document body (Markdown).
- Coverage & timing: monitors English (
en-US) help docs by default.changedAtis the detection time (when the system detected the diff), not Amazon's official publish time. Change monitoring data starts from 2026-05-29. The Amazon backend original is authoritative.
Parameters
List (amazon/helpDocChanges)
| Parameter | Type | Required | Description | Default |
|---|---|---|---|---|
| keyword | string | No | Document-title fuzzy match (case-insensitive) | - |
| changedAtGte | string | No | Change-time lower bound (incl.), yyyy-MM-dd HH:mm:ss |
last 3 months |
| changedAtLte | string | No | Change-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 |
No parameter is required — call with no params to get the last 3 months of valuable changes.
Detail (amazon/helpDocDetail)
| Parameter | Type | Required | Description |
|---|---|---|---|
| id | integer | Yes | Change-record ID (≥1) from the list response data[].id |
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_help_doc_changes.py '{"keyword": "FBA", "pageSize": 20}'
python scripts/amazon_help_doc_detail.py '{"id": \x3Cid from the list response>}'
How to Build Queries
- Set the time window: convert "近一个月 / since 2026-03" into
changedAtGte/changedAtLte. Leave empty for the default last 3 months. - Filter by keyword: pass topical terms (e.g.
FBA,fee,inventory) intokeywordfor title matching. - Paginate: increase
pageto scan more changes. - Drill into a change: take a record's
id(integer) from the list and call the detail script to read the AI summary, the specific edits, and the latest document.
Usage Examples
1. Valuable changes in the last 3 months (default)
{}
2. FBA-related doc changes in a date range
{"keyword": "FBA", "changedAtGte": "2026-03-01 00:00:00", "changedAtLte": "2026-05-28 23:59:59"}
3. Page 2, 50 per page
{"page": 2, "pageSize": 50}
4. Full change detail of one record
{"id": 35}
Display Rules
- List view: present results as a table with title, breadcrumb (目录路径), change time, and the AI summary; include the original
url. - Detail view: render the
stdoutMarkdown as-is; keep the leading change-summary / change-time / breadcrumb / source-link block. - Set expectations on count: when results look sparse, remind the user that only AI-judged valuable changes are returned (formatting-only edits are filtered) — a low count is expected, not a data gap.
- Only present data: report what changed; do not add subjective business advice.
- Detection-time caveat: note that
changedAtis the detection time, not Amazon's official publish time; the 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).
Important Limitations
- AI-filtered results: only "valuable to sellers" changes appear; returned count is far smaller than the raw edit count (by design).
- English docs by default: monitors
en-UShelp documentation. - Monitoring start: change data begins from 2026-05-29; earlier history is unavailable.
- Detail needs a valid list
id:amazon/helpDocDetailonly accepts an integeridreturned byamazon/helpDocChanges. - Not for aggregation: detail returns long-form text and the list is change metadata — this skill's output is not suited for second-pass statistical/aggregation analysis.
User Expression & Scenario Quick Reference
Applicable — Amazon help-center documentation change monitoring:
| User Says | Scenario |
|---|---|
| "近一个月亚马逊帮助文档有哪些值得关注的变更" | Recent valuable changes by time |
| "亚马逊关于 FBA 的帮助文档改了什么" | Keyword-filtered doc-change lookup |
| "帮我看看这条文档变更的详情和最新全文" | Fetch change detail + latest doc by id |
| "帮助中心规则有更新吗" | Help-center rule-change monitoring |
| "费用相关的文档调整" | Fee/policy documentation change tracking |
Not applicable — beyond help-doc change monitoring:
- Amazon Seller News policy announcements → use the Amazon policy-news 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 to know what changed in Amazon's help documentation (and the change detail / latest text), this skill applies. If they want Amazon's published Seller News policy announcements, use the policy-news 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_help_doc_changes.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_help_doc_changes.py,amazon_help_doc_detail.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-help-doc-changes - 安装完成后,直接呼叫该 Skill 的名称或使用
/linkfox-amazon-help-doc-changes触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Amazon Help Doc Change Monitor 是什么?
监控亚马逊卖家帮助文档(帮助中心)的内容变更,经 AI 筛选后返回对卖家有价值的改动,支持按变更时间区间、标题关键词分页检索,并按变更记录 ID 获取 AI 变更摘要、具体改动点与最新文档全文。当用户提到亚马逊帮助文档变更、帮助中心更新、规则变动监控、政策/费用文档调整、合规预警、文档改了什么、最新文档全文,或... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 25 次。
如何安装 Amazon Help Doc Change Monitor?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install linkfox-amazon-help-doc-changes」即可一键安装,无需额外配置。
Amazon Help Doc Change Monitor 是免费的吗?
是的,Amazon Help Doc Change Monitor 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Amazon Help Doc Change Monitor 支持哪些平台?
Amazon Help Doc Change Monitor 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Amazon Help Doc Change Monitor?
由 linkfox-ai(@linkfox-ai)开发并维护,当前版本 v1.0.0。