Install
openclaw skills install linkfox-amazon-help-doc-changes监控亚马逊卖家帮助文档(帮助中心)的内容变更,经 AI 筛选后返回对卖家有价值的改动,支持按变更时间区间、标题关键词分页检索,并按变更记录 ID 获取 AI 变更摘要、具体改动点与最新文档全文。当用户提到亚马逊帮助文档变更、帮助中心更新、规则变动监控、政策/费用文档调整、合规预警、文档改了什么、最新文档全文,或 Amazon help doc changes, Seller Central help center updates, policy/fee documentation changes, compliance alert 时触发此技能。即使用户未明确提及"帮助文档变更",只要其需求涉及亚马逊帮助中心文档的更新监控及变更详情,也应触发此技能。
openclaw skills install linkfox-amazon-help-doc-changesThis 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.
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 change id: AI summary + what specifically changed + the latest document body (Markdown).en-US) help docs by default. changedAt is 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.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.
amazon/helpDocDetail)| Parameter | Type | Required | Description |
|---|---|---|---|
| id | integer | Yes | Change-record ID (≥1) from the list response data[].id |
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": <id from the list response>}'
changedAtGte / changedAtLte. Leave empty for the default last 3 months.FBA, fee, inventory) into keyword for title matching.page to scan more changes.id (integer) from the list and call the detail script to read the AI summary, the specific edits, and the latest document.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}
url.stdout Markdown as-is; keep the leading change-summary / change-time / breadcrumb / source-link block.changedAt is the detection time, not Amazon's official publish time; the backend original is authoritative.id → re-fetch from the list).en-US help documentation.id: amazon/helpDocDetail only accepts an integer id returned by amazon/helpDocChanges.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:
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:
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_help_doc_changes.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_help_doc_changes.py,amazon_help_doc_detail.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.