ecommerce.amazon-niche-info-by-asin
Installation
SKILL.md
Jiimore Niche Info by ASIN
This skill guides you on how to query and analyze Amazon niche market data by a reference ASIN, helping Amazon sellers evaluate market segments for competitive intensity, brand maturity, pricing structure, and entry opportunity.
How to Invoke
- API Endpoint:
POST /jiimore/getNicheInfoByAsin(complete params/response/error codes inreferences/api.md) - Python Script:
python scripts/amazon_niche_info_by_asin.py '<JSON params>' [--inline] - Cost constraint: This tool consumes credits; the same session and parameter combination is called only once by default, with a 24h local cache in the script. On failure or empty results, do not automatically retry with different ASINs, marketplaces, or relaxed filters; inform the user about additional consumption before continuing to search.
Output strategy (script default behavior):
- Always write the full response to
<cwd>/nexscope/<YYYY-MM-DD>/<session>/data/nexscope-jiimore-get-niche-info-by-asin-<timestamp>.json(<cwd>is the working directory at script execution time, i.e. the current project directory in Claude Code;<session>is taken from theSESSION_IDenv var, auto-grouped by user task; do not write to /tmp, error if current directory is not writable) - Response body <= 8 KB: print full JSON to stdout after saving
- Response body > 8 KB: print only summary to stdout after saving (top-level fields, common counts like
costToken, length of largest list field + first 3 samples) - Add
--inlineto force full output to stdout (still saves to disk)
Data reading tip: Check the summary first to decide if it's enough; when specific fields are needed, prefer using jq or ConvertFrom-Json to extract from the saved json file on demand, avoiding loading the entire JSON into context.