Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计通过

amazon-analyzer-skill亚马逊分析器技能

Agent Skill

amazon-analyzer-skill 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

5,309

周安装

219

GitHub Stars

2

下载量

1,734
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:amazon-analyzer-skill(亚马逊分析器技能)
来源仓库:https://github.com/kyle-srp/amazon-analyzer-skill
安装命令:
openclaw skills install amazon-analyzer-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install amazon-analyzer-skill

简介

利用海量产品库识别具备爆款潜质的亚马逊候选商品。

  • 适合快速验证市场需求与竞争格局的产品调研阶段。amazon-analyzer-skill 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 融合多维度评分算法与历史销售数据回溯比对机制。
  • 建议配合人工尽调使用,避免单一算法导致误判风险。
  • 输出包含SWOT分析与备选方案的多版本评估报告。

SKILL.md

name
apiclaw-analysis
version
1.1.3
description
>
author
SerendipityOneInc
homepage
https://github.com/SerendipityOneInc/Amazon-analysis-skill
metadata
{"openclaw": {"requires": {"env": ["APICLAW_API_KEY"]}, "primaryEnv": "APICLAW_API_KEY"}}

APIClaw — Amazon Seller Data Analysis

AI-powered Amazon product research. From market discovery to daily operations. Language rule: Always respond in the user's language. If the user asks in Chinese, reply in Chinese. If in English, reply in English. The language of this skill document does not affect output language. All API calls go through scripts/apiclaw.py — one script, 5 endpoints, built-in error handling.

Credentials

  • Required: APICLAW_API_KEY
  • Scope: used only for https://api.apiclaw.io
  • Resolution order:

1. Environment variable APICLAW_API_KEY (preferred, most secure) 2. Config file config.json in the skill root directory (fallback)

{ "api_key": "hms_live_xxxxxx" }

When user provides a Key, write it to config.json. New keys may need 3-5 seconds to activate — if first call returns 403, wait 3 seconds and retry (max 2 retries).

⚠️ Data persistence notice: When you provide an API Key, the skill saves it to config.json in the skill directory for persistent access across sessions. This file is local-only and listed in .gitignore to prevent accidental commits. If you prefer not to store the key on disk, use the environment variable method (export APICLAW_API_KEY=...) instead — no file will be created.

New users: Get API Key at apiclaw.io/api-keys.

File Map

FileWhen to Load
SKILL.md (this file)Start here — covers 80% of tasks
scripts/apiclaw.pyExecute for all API calls (do NOT read into context)
references/reference.mdNeed exact field names or filter parameter details
references/scenarios-composite.mdComprehensive recommendations (2.10) or Chinese seller cases (3.4)
references/scenarios-eval.mdProduct evaluation, risk assessment, review analysis (4.x)
references/scenarios-pricing.mdPricing strategy, profit estimation, listing reference (5.x)
references/scenarios-ops.mdMarket monitoring, competitor tracking, anomaly alerts (6.x)
references/scenarios-expand.mdProduct expansion, trends, discontinuation decisions (7.x)
references/scenarios-listing.mdListing writing, optimization, content creation (8.x)

Don't guess field names — if uncertain, load reference.md first.


Execution Mode

Task TypeModeBehavior
Single ASIN lookup, simple data queryQuickExecute command, return key data. Skip evaluation criteria and output standard block.
Market analysis, product selection, competitor comparison, risk assessmentFullComplete flow: command → analysis → evaluation criteria → output standard block.

Quick mode trigger: User asks for a single specific data point ("B09XXX monthly sales?", "how many brands in cat litter?") — no decision analysis needed.


Execution Standards

Prioritize script execution for API calls. The script includes:

  • Parameter format conversion (e.g. topN auto-converted to string)
  • Retry logic (429/timeout auto-retry)
  • Standardized error messages
  • _query metadata injection (for query traceability)

Fallback: If script fails and can't be quickly fixed, use curl directly. Note "using curl direct call" in output.


Script Usage

All commands output JSON. Progress messages go to stderr.

categories — Category tree lookup

python3 scripts/apiclaw.py categories --keyword "pet supplies"
python3 scripts/apiclaw.py categories --parent "Pet Supplies"

Common fields: categoryName (not name), categoryPath, productCount, hasChildren

market — Market-level aggregate data

python3 scripts/apiclaw.py market --category "Pet Supplies,Dogs" --topn 10

Key output fields: sampleAvgMonthlySales, sampleAvgPrice, topSalesRate (concentration), topBrandSalesRate, sampleNewSkuRate, sampleFbaRate, sampleBrandCount

products — Product selection with filters

# Preset mode (14 built-in)
python3 scripts/apiclaw.py products --keyword "yoga mat" --mode beginner

# Explicit filters
python3 scripts/apiclaw.py products --keyword "yoga mat" --sales-min 300 --reviews-max 50

# Mode + overrides (overrides win)
python3 scripts/apiclaw.py products --keyword "yoga mat" --mode beginner --price-max 30

Available modes: fast-movers, emerging, single-variant, high-demand-low-barrier, long-tail, underserved, new-release, fbm-friendly, low-price, broad-catalog, selective-catalog, speculative, beginner, top-bsr

Keyword matching: Default is fuzzy (matches brand names too — e.g. "smart ring" matches "Smart Color Art" pens). Use --keyword-match-type exact or phrase for precise results. Always combine with --category when possible to reduce noise.

Category path with commas: Some category names contain commas (e.g. "Pacifiers, Teethers & Teething Relief"). Use > separator instead of , to avoid parsing errors:

# ❌ Wrong — comma in name breaks parsing
--category "Baby Products,Baby Care,Pacifiers, Teethers & Teething Relief"
# ✅ Correct — use ' > ' separator
--category "Baby Products > Baby Care > Pacifiers, Teethers & Teething Relief"

competitors — Competitor lookup

python3 scripts/apiclaw.py competitors --keyword "wireless earbuds"
python3 scripts/apiclaw.py competitors --asin B09V3KXJPB

Easily confused fields (products/competitors shared):

❌ Wrong✅ CorrectNote
reviewCountratingCountReview count
bsrbsrRankBSR ranking (integer, only in products/competitors)
monthlySales / salesMonthlyatLeastMonthlySalesMonthly sales (lower bound estimate, NOT in realtime/product)
bestsellersRankbsrRankbestsellersRank is realtime/product only (array format); use bsrRank for products/competitors
price (in realtime)buyboxWinner.pricerealtime/product nests price inside buyboxWinner object
profitMargin (in realtime)❌ N/Arealtime/product does NOT return profitMargin; use products/competitors
Complete field list: reference.md → Shared Product Object

product — Single ASIN real-time detail

python3 scripts/apiclaw.py product --asin B09V3KXJPB

Returns: title, brand, rating, ratingBreakdown, features, topReviews, specifications, variants, bestsellersRank, buyboxWinner

report — Full market analysis (composite)

python3 scripts/apiclaw.py report --keyword "pet supplies"

Runs: categories → market → products (top 50) → realtime detail (top 1).

Note: The realtime detail section has a different field structure than products (no sales/revenue/profitMargin). It provides review details, seller info, and listing content as qualitative supplement.

opportunity — Product opportunity discovery (composite)

python3 scripts/apiclaw.py opportunity --keyword "pet supplies" --mode fast-movers

Runs: categories → market → products (filtered) → realtime detail (top 3).

Note: Same as report — realtime detail provides qualitative data only (reviews, features, seller). Sales/revenue come from the products step.


⚠️ Interface Data Differences

The 3 types of interfaces return different fields. Do NOT assume they share the same structure.

Datamarketproducts / competitorsrealtime/product
Monthly SalessampleAvgMonthlySalesatLeastMonthlySalesNot available
RevenuesampleAvgMonthlyRevenuesalesRevenueNot available
PricesampleAvgPricepricebuyboxWinner.price
BSRsampleAvgBsrbsrRank (integer)bestsellersRank (array of {category, rank})
RatingsampleAvgRatingratingrating
Review CountsampleAvgReviewCountratingCountratingCount
Review DetailstopReviews + ratingBreakdown
SellerbuyboxSeller (string)buyboxWinner (object with price, fulfillment, seller)
Profit MarginprofitMarginNot available
FBA FeefbaFeeNot available
Seller CountsellerCountNot available
Features/Bulletsfeatures
VariantsvariantCount (integer)variants (full list)

Usage rule:

  • Use products / competitors for sales, pricing, and competition data
  • Use realtime/product for review details, listing content, and seller info
  • Use market for category-level aggregate metrics
  • For reports: combine products/competitors (quantitative) + realtime/product (qualitative) as evidence

Data Structure Reminder

All interfaces return .data as an array. Use .data[0] to get the first record, NOT .data.fieldName.


Intent Routing

User SaysRun ThisScenario File?
"which category has opportunity"market + categoriesNo
"check B09XXX" / "analyze ASIN"product --asin XXXNo
"Chinese seller cases"competitors --keyword XXX --page-size 50scenarios-composite.md → 3.4
"pain points" / "negative reviews"product --asin XXXscenarios-eval.md → 4.2
"compare products"competitors or multiple productscenarios-eval.md → 4.3
"risk assessment" / "can I do this"product + market + competitorsscenarios-eval.md → 4.4
"monthly sales" / "estimate sales"competitors --asin XXXscenarios-eval.md → 4.5
"help me select products" / "find products"products --mode XXX (see mode table)No
"comprehensive recommendations" / "what should I sell"products (multi-mode) + marketscenarios-composite.md → 2.10
"pricing strategy" / "how much to price"market + productsscenarios-pricing.md → 5.1
"profit estimation"competitorsscenarios-pricing.md → 5.2
"listing reference"product --asin XXXscenarios-pricing.md → 5.3
"market changes" / "recent changes"market + productsscenarios-ops.md → 6.1
"competitor updates"competitors --brand XXXscenarios-ops.md → 6.2
"anomaly alerts"market + productsscenarios-ops.md → 6.4
"what else can I sell" / "related products"categories + marketscenarios-expand.md → 7.1
"trends"products --growth-min 0.2scenarios-expand.md → 7.3
"should I delist"competitors --asin XXX + marketscenarios-expand.md → 7.4
"write listing" / "generate bullet points" / "write title"product --asin XXX (competitors)scenarios-listing.md → 8.2
"analyze competitor listing" / "their selling points"product --asin XXX (multiple)scenarios-listing.md → 8.1
"optimize my listing" / "listing diagnosis"product --asin XXX + competitorsscenarios-listing.md → 8.3
Need exact filters or field namesLoad reference.md

Product Selection Mode Mapping (14 types):

User IntentModeKey Filters
"beginner friendly" / "new seller"--mode beginnerSales≥300, growth≥3%, $15-60, FBA, ≤1yr, excl. red ocean keywords
"fast turnover" / "hot selling"--mode fast-moversSales≥300, growth≥10%
"emerging" / "rising"--mode emergingSales≤600, growth≥10%, ≤180d
"single variant" / "small but beautiful"--mode single-variantGrowth≥20%, variants=1, ≤180d
"high demand low barrier" / "easy entry"--mode high-demand-low-barrierSales≥300, reviews≤50, ≤180d
"long tail" / "niche"--mode long-tailSales≤300, BSR 10K-50K, ≤$30, sellers≤1
"underserved" / "has pain points"--mode underservedSales≥300, rating≤3.7, ≤180d
"new products" / "new release"--mode new-releaseSales≤500, NR tag, FBA+FBM
"FBM" / "self-fulfillment" / "low stock"--mode fbm-friendlySales≥300, FBM, ≤180d
"low price" / "cheap"--mode low-price≤$10
"broad catalog" / "cast wide net"--mode broad-catalogBSR growth≥99%, reviews≤10, ≤90d
"selective catalog"--mode selective-catalogBSR growth≥99%, ≤90d
"speculative" / "piggyback"--mode speculativeSales≥600, sellers≥3, ≤180d
"top sellers" / "best sellers"--mode top-bsrSub-category BSR≤1000

Quick Evaluation Criteria

Market Viability (from market output)

MetricGoodMediumWarning
Market value (avgRevenue × skuCount)> $10M$5–10M< $5M
Concentration (topSalesRate, topN=10)< 40%40–60%> 60%
New SKU rate (sampleNewSkuRate)> 15%5–15%< 5%
FBA rate (sampleFbaRate)> 50%30–50%< 30%
Brand count (sampleBrandCount)> 5020–50< 20

Product Potential (from product output)

MetricHighMediumLow
BSRTop 10001000–5000> 5000
Reviews< 200200–1000> 1000
Rating> 4.34.0–4.3< 4.0
Negative reviews (1-2★ %)< 10%10–20%> 20%

Sales Estimation Fallback

When atLeastMonthlySales is null: Monthly sales ≈ 300,000 / BSR^0.65


Output Standards (Full Mode Only)

MUST include data source block after every Full-mode analysis:

---
**Data Source & Conditions**
| Item | Value |
|----|-----|
| Data Source | APIClaw API |
| Interface | [interfaces used] |
| Category | [category path] |
| Time Range | [dateRange] |
| Sampling | [sampleType] |
| Top N | [topN value] |
| Sort | [sortBy + sortOrder] |
| Filters | [specific parameter values] |

**Data Notes**
- Monthly sales are **lower bound estimates** (Amazon displays "10,000+ bought"), actual may be higher
- Database data has ~T+1 delay; realtime/product is current real-time data
- Concentration metrics based on Top N sample; different topN → different results

✅ Completed Example (yoga mat market analysis):

---
**Data Source & Conditions**
| Item | Value |
|----|-----|
| Data Source | APIClaw API |
| Interface | categories, markets/search, products/search |
| Category | Sports & Outdoors > Exercise & Fitness > Yoga > Yoga Mats |
| Time Range | 30d |
| Sampling | by_sale_100 |
| Top N | 10 |
| Sort | atLeastMonthlySales desc |
| Filters | monthlySalesMin: 300, reviewCountMax: 50 |

**Data Notes**
- Monthly sales are **lower bound estimates** (Amazon displays "10,000+ bought"), actual may be higher
- Database data has ~T+1 delay; realtime/product is current real-time data

Rules:

  1. Every Full-mode analysis MUST end with this block
  2. Filter conditions MUST list specific parameter values
  3. If multiple interfaces used, list each one
  4. If data has limitations, proactively explain

Limitations

What This Skill Cannot Do

  • Keyword research / reverse ASIN / ABA data
  • Traffic source analysis
  • Historical sales trends (14-month curves)
  • Historical price / BSR charts
  • AI review sentiment analysis (use topReviews + ratingBreakdown manually)

API Coverage Boundaries

ScenarioCoverageSuggestion
Market data: Popular keywords✅ Has dataUse --keyword directly
Market data: Niche/long-tail keywords⚠️ May be emptyUse --category instead
Product data: Active ASIN✅ Has data
Product data: Delisted/variant ASIN❌ No dataTry parent ASIN or realtime
Real-time data: US site✅ Full support
Real-time data: Non-US sites⚠️ PartialCore fields OK, sales may be null

Error Handling

HTTP errors (401/402/403/404/429) are handled by the script, returning structured JSON with error.message and error.action.

Self-check: python3 scripts/apiclaw.py check — tests 4/5 endpoints, reports availability.

ErrorCauseFix
Cannot index array with string.data is arrayUse .data[0].fieldName
Empty data: []Keyword no matchUse categories to confirm category exists
atLeastMonthlySales: nullMissing sales dataBSR estimate: 300,000 / BSR^0.65
realtime/product slowReal-time scrapingNormal 5-30s, be patient

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

70.55%
按下载量换算1,223

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills