Amz Hot Keywords
/install amz-hot-keywords
Amazon Hot Keywords Skill
Overview
This skill extracts weekly search‑term rankings from Amazon Brand Analytics via the public AMZ123 site. It returns a CSV (or JSON) containing the keyword, current week rank, last week rank, and trend (up/down/flat/new).
Core Workflow
- User provides a base keyword.
scripts/amz_scraper.pylaunches a headless Selenium Chrome session, navigates to AMZ123, searches the keyword, and scrapes up to 200 related terms.- The script calculates the trend by comparing the current rank with the previous week’s rank.
- Results are saved to
amz123_hotwords_\x3Ckeyword>_\x3Ctimestamp>.csv(or.json). - The file path is returned to the caller.
Usage
# Basic usage – CSV output
python3 $(pwd)/scripts/amz_scraper.py --keyword "dog bed"
# Limit results to 100 entries and specify output folder
python3 $(pwd)/scripts/amz_scraper.py \
--keyword "yoga mat" \
--max-results 100 \
--output-dir ./data
Parameters
| Flag | Required | Description | Default |
|---|---|---|---|
--keyword |
Yes | Search term to seed the scrape | - |
--max-results |
No | Max number of keywords to collect (max 200) | 200 |
--output-dir |
No | Directory for the CSV/JSON file | current directory |
--format |
No | csv or json (default csv) |
|
--headless |
No | Run Chrome headlessly (true/false) |
true |
References
- See
references/workflow.mdfor a step‑by‑step guide and troubleshooting tips. - See
references/output.mdfor the exact CSV column order and JSON schema.
Scripts
The scraper implementation lives in scripts/amz_scraper.py.
Created by Simon Cai · More e-commerce skills: github.com/simoncai519/open-accio-skill
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install amz-hot-keywords - 安装完成后,直接呼叫该 Skill 的名称或使用
/amz-hot-keywords触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
Amz Hot Keywords 是什么?
Scrape Amazon Brand Analytics (ABA) weekly hot keyword rankings from AMZ123 and return structured keyword trend data. Use when the user asks about Amazon key... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 138 次。
如何安装 Amz Hot Keywords?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install amz-hot-keywords」即可一键安装,无需额外配置。
Amz Hot Keywords 是免费的吗?
是的,Amz Hot Keywords 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
Amz Hot Keywords 支持哪些平台?
Amz Hot Keywords 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 Amz Hot Keywords?
由 simoncai519(@simoncai519)开发并维护,当前版本 v1.0.0。