amazon-movers-shakers

zhuhongyin/global-ecom-skills · updated Apr 8, 2026

MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.

$npx skills add https://github.com/zhuhongyin/global-ecom-skills --skill amazon-movers-shakers
0 commentsdiscussion
summary

这是跨境电商选品的数据源头工具。从亚马逊 Movers & Shakers 获取近期飙升商品,发现真实需求和市场趋势。

skill.md

亚马逊飙升榜数据获取 (Amazon Movers & Shakers)

核心定位

这是跨境电商选品的数据源头工具。从亚马逊 Movers & Shakers 获取近期飙升商品,发现真实需求和市场趋势。

数据来源(优先级从高到低)

1. 卖家精灵 API(推荐)

卖家精灵是国内领先的亚马逊数据分析平台,提供专业的 API 接口:

优势

  • 数据准确、稳定
  • 包含月销量、月营收等深度数据
  • 无反爬风险
  • 支持关键词搜索、类目热销榜等

API 接口

接口 说明
/traffic/keyword/stat/{marketplace}/{asin}/ 关键词流量数据
/product/info/{marketplace}/{asin}/ 产品详情
/bestsellers/{marketplace}/{category_id}/ 类目热销榜
/search/{marketplace}/ 产品搜索
/market/trends/{marketplace}/{category_id}/ 市场趋势

2. 真实爬取

Amazon Movers & Shakers 页面:

  • 美国: https://www.amazon.com/Best-Sellers/zgbs
  • 英国: https://www.amazon.co.uk/Best-Sellers/zgbs
  • 德国: https://www.amazon.de/Best-Sellers/zgbs
  • 日本: https://www.amazon.co.jp/Best-Sellers/zgbs

3. Mock 数据(兜底)

当 API 和爬取都失败时,使用预设的 Mock 数据

支持的类目

类目代码 类目名称 说明
home-garden Home & Kitchen 家居厨房(Loctek 重点)
electronics Electronics 电子产品
sports Sports & Outdoors 运动户外
office Office Products 办公用品
toys Toys & Games 玩具游戏
health Health & Personal Care 健康个护
beauty Beauty & Personal Care 美妆个护
pet-supplies Pet Supplies 宠物用品
automotive Automotive 汽车用品
garden Patio, Lawn & Garden 庭院园艺

输入参数

{
  "site": "amazon.com",
  "category": "home-garden",
  "limit": 20,
  "min_price": 10.0,
  "max_price": 100.0,
  "exclude_brands": ["Amazon Basics"],
  "time_window": "24h"
}
参数 类型 必需 默认值 说明
site string amazon.com 亚马逊站点
category string 全类目 商品类目
limit int 20 返回商品数量
min_price float 最低价格筛选
max_price float 最高价格筛选
exclude_brands list [] 排除的品牌
time_window string 24h 时间窗口

输出格式

{
  "metadata": {
    "site": "amazon.com",
    "category": "Home & Kitchen",
    "scrape_time": "2026-02-26T10:30:00Z",
    "total_products": 100,
    "returned_products": 20
  },
  "products": [
    {
      "rank": 1,
      "rank_change": "+256",
      "asins": "B0XXXXXXXXX",
      "title": "Standing Desk Converter, Height Adjustable...",
      "url": "https://www.amazon.com/dp/B0XXXXXXXXX",
      "image_url": "https://m.media-amazon.com/images/I/xxx.jpg",
      "price": "$89.99",
      "price_value": 89.99,
      "currency": "USD",
      "rating": 4.5,
      "review_count": 1256,
      "prime": true,
      "category_path": "Home & Kitchen > Furniture > Home Office Furniture",
      "sellers_info": {
        "seller": "Brand Name",
        "is_amazon": false
      },
      "trend": {
        "direction": "up",
        "momentum": "strong",
        "change_percentage": "+256%"
      },
      "keywords": ["standing desk", "desk converter", "height adjustable"],
      "suitable_for_temu": true,
      "notes": "家居办公类,适合 Temu 上架"
    }
  ]
}

数据字段说明

字段 说明
rank 当前飙升榜排名
rank_change 排名变化(如 +256 表示上升 256 位)
asins 亚马逊标准识别号
title 商品标题
price_value 价格数值(用于后续计算)
rating 平均评分(1-5)
review_count 评论数量
prime 是否 Prime 商品
trend.direction 趋势方向(up/down/stable)
trend.momentum 动量强度(strong/medium/weak)
suitable_for_temu 是否适合 Temu(初步判断)

筛选逻辑

自动过滤条件

以下类型产品自动标记为 suitable_for_temu: false

  1. 高资质门槛类

    • 医疗器械(需 FDA 认证)
    • 婴幼儿食品/用品(严格监管)
    • 药品/保健品(需认证)
  2. 品牌垄断类

    • Apple、Samsung 等大品牌配件
    • 有明显品牌保护的商品
  3. 价格过低类

    • 售价 < $5(利润空间不足)
  4. 体积过大类

    • 大型家具、家电(物流成本高)

优先推荐条件

以下类型产品优先标记为 suitable_for_temu: true

  1. 家居办公类(Loctek 主营)

    • 站立桌、桌边架
    • 办公收纳、桌垫
    • 人体工学配件
  2. 轻小件类

    • 重量 < 1kg
    • 体积小、运费低
  3. 组合套装类

    • 多件装
    • 配套产品组合

使用方式

方式一:卖家精灵 API(推荐)

使用卖家精灵 API 获取数据,稳定可靠:

# 设置环境变量
export SELLERSPRITE_API_KEY="your_api_key"

# 使用卖家精灵 API
python scripts/scrape_amazon.py --source sellersprite --keyword "standing desk" --limit 20

# 或通过命令行传入 API Key
python scripts/scrape_amazon.py --source sellersprite --api-key YOUR_KEY --keyword "desk converter"

卖家精灵 MCP 配置(Claude Code):

{
  "mcpServers": {
    "sellersprite": {
      "url": "https://mcp.sellersprite.com/sse",
      "headers": {
        "secret-key": "YOUR_API_KEY"
      }
    }
  }
}

方式二:真实爬取

当没有 API Key 时,自动尝试爬取:

python scripts/scrape_amazon.py --source scrape --category home-garden --limit 20

方式三:Web 搜索获取

当无法直接爬取时,使用 WebSearch 工具:

搜索词: "site:amazon.com Movers and Shakers Home Kitchen"

方式四:WebFetch 获取

直接获取页面内容:

URL: https://www.amazon.com/Best-Sellers-Home-Kitchen/zgbs/home-garden

方式五:用户手动输入

用户可手动提供飙升榜商品信息,skill 进行结构化处理。

方式六:Mock 数据(兜底)

强制使用 Mock 数据:

python scripts/scrape_amazon.py --source mock --category home-garden --limit 10

自动模式(默认)

自动选择最佳数据源:

# 自动模式:卖家精灵 API → 真实爬取 → Mock 数据
python scripts/scrape_amazon.py --source auto --keyword "standing desk"

与其他 Skills 协作

  • 输出数据供 temu-competitor-search 搜索竞品
  • 输出数据供 ali1688-sourcing 查找供应链
  • 输出数据供 temu-pricing-calculator 进行核价

注意事项

  1. 爬虫限制:亚马逊有反爬机制,建议:

    • 控制请求频率
    • 使用代理轮换
    • 模拟真实用户行为
  2. 数据时效:飙升榜数据每小时更新,建议定期刷新

  3. 价格波动:促销期间价格可能异常,需关注历史价格

  4. 合规风险:部分产品可能有专利/版权问题,需进一步核查

示例用法

示例 1:获取家居类飙升产品

用户:帮我看看亚马逊家居类最近有什么飙升的产品

执行:
1. 访问亚马逊 Movers & Shakers 家居类页面
2. 提取前 20 个飙升产品
3. 筛选适合 Temu 的产品
4. 返回结构化数据

示例 2:按价格区间筛选

用户:找亚马逊上 $20-$50 之间飙升的办公产品

执行:
1. 获取办公用品类飙升榜
2. 筛选价格在 $20-$50 之间的产品
3. 返回符合条件的商品列表

示例 3:关键词搜索

用户:看看 "standing desk" 在亚马逊上的趋势

执行:
1. 搜索亚马逊上 standing desk 相关产品
2. 分析销量趋势和排名变化
3. 返回热门产品列表
how to use amazon-movers-shakers

How to use amazon-movers-shakers on Cursor

AI-first code editor with Composer

1

Prerequisites

Before installing skills in Cursor, ensure your development environment meets these requirements:

  • Cursor installed and configured on your development machine
  • Node.js version 16.0+ with npm package manager (verify with node --version)
  • Active project directory or workspace where you want to add amazon-movers-shakers
2

Execute installation command

Execute the skills CLI command in your project's root directory to begin installation:

$npx skills add https://github.com/zhuhongyin/global-ecom-skills --skill amazon-movers-shakers

The skills CLI fetches amazon-movers-shakers from GitHub repository zhuhongyin/global-ecom-skills and configures it for Cursor.

3

Select Cursor when prompted

The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:

◆ Which agents do you want to install to?
│ ── Universal (.agents/skills) ── always included ────
│ • Amp
│ • Antigravity
│ • Cline
│ • Codex
│ ●Cursor(selected)
│ • Cursor
│ • Windsurf
4

Verify installation

Confirm successful installation by checking the skill directory location:

.cursor/skills/amazon-movers-shakers

Reload or restart Cursor to activate amazon-movers-shakers. Access the skill through slash commands (e.g., /amazon-movers-shakers) or your agent's skill management interface.

Security & Verification Notice

We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.

Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.

List & Monetize Your Skill

Submit your Claude Code skill and start earning

GET_STARTED →

Use Cases

User Story & Requirements Generation

Create detailed user stories, acceptance criteria, and feature specs

Example

Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios

Reduce spec writing time by 50%, ensure comprehensive coverage

Competitive Analysis

Research competitors, compare features, identify gaps

Example

Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities

Complete competitive research in 2 hours instead of 2 days

Roadmap Prioritization

Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs

Example

Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale

Make data-driven prioritization decisions faster

Stakeholder Communication

Draft PRDs, status updates, and stakeholder presentations

Example

Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement

Save 3-5 hours/week on communication overhead

Implementation Guide

Prerequisites

  • Claude Desktop or compatible AI client
  • Access to product documentation and roadmap tools (Jira, Notion, etc.)
  • Understanding of product management frameworks (RICE, Jobs-to-be-Done, etc.)
  • Stakeholder contact information and communication channels

Time Estimate

30-60 minutes to see productivity improvements

Installation Steps

  1. 1.Install product management skill
  2. 2.Start with user story generation for known feature
  3. 3.Progress to competitive analysis: research 2-3 competitors
  4. 4.Use for roadmap prioritization: apply RICE/ICE scoring
  5. 5.Draft stakeholder communications and refine based on feedback
  6. 6.Build template library for recurring PM tasks
  7. 7.Share effective prompts with product team

Common Pitfalls

  • Not validating competitive research—verify facts before sharing
  • Accepting user stories without involving engineering team
  • Over-relying on frameworks without qualitative judgment
  • Not customizing outputs to company culture and communication style
  • Skipping stakeholder validation of generated requirements

Best Practices

✓ Do

  • +Validate research and competitive analysis with real data
  • +Collaborate with engineering when generating technical requirements
  • +Customize frameworks and templates to your company context
  • +Use skill for first drafts, refine with stakeholder input
  • +Document successful prompt patterns for PM tasks
  • +Combine AI efficiency with human judgment and intuition

✗ Don't

  • Don't publish competitive analysis without fact-checking
  • Don't finalize user stories without engineering review
  • Don't make prioritization decisions solely on AI scoring
  • Don't skip customer validation of generated requirements
  • Don't ignore company-specific context and culture

💡 Pro Tips

  • Provide context: company goals, constraints, customer feedback
  • Ask for alternatives: 'Show 3 ways to prioritize this roadmap'
  • Request stakeholder-specific formatting: 'Executive summary vs. engineering spec'
  • Use skill for 70% generation + 30% customization to company needs

When to Use This

✓ Use When

Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.

✗ Avoid When

Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.

Learning Path

  1. 1Basic: user stories, feature specs, status updates
  2. 2Intermediate: competitive analysis, prioritization frameworks, PRDs
  3. 3Advanced: product strategy, go-to-market planning, OKR setting
  4. 4Expert: product vision, market positioning, business model innovation

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.555 reviews
  • Benjamin Thompson· Dec 28, 2024

    Useful defaults in amazon-movers-shakers — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Dhruvi Jain· Dec 24, 2024

    Keeps context tight: amazon-movers-shakers is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Maya Farah· Dec 20, 2024

    amazon-movers-shakers has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Lucas Bansal· Dec 16, 2024

    amazon-movers-shakers fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Maya Nasser· Dec 12, 2024

    We added amazon-movers-shakers from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Oshnikdeep· Nov 15, 2024

    Registry listing for amazon-movers-shakers matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Soo Perez· Nov 11, 2024

    amazon-movers-shakers fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Diya Robinson· Nov 7, 2024

    amazon-movers-shakers has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Benjamin Shah· Nov 3, 2024

    Solid pick for teams standardizing on skills: amazon-movers-shakers is focused, and the summary matches what you get after install.

  • Diya Mensah· Oct 26, 2024

    Solid pick for teams standardizing on skills: amazon-movers-shakers is focused, and the summary matches what you get after install.

showing 1-10 of 55

1 / 6