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
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install amz-hot-keywords - After installation, invoke the skill by name or use
/amz-hot-keywords - Provide required inputs per the skill's parameter spec and get structured output
What is 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... It is an AI Agent Skill for Claude Code / OpenClaw, with 138 downloads so far.
How do I install Amz Hot Keywords?
Run "/install amz-hot-keywords" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Amz Hot Keywords free?
Yes, Amz Hot Keywords is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Amz Hot Keywords support?
Amz Hot Keywords is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Amz Hot Keywords?
It is built and maintained by simoncai519 (@simoncai519); the current version is v1.0.0.