这是跨境电商选品的数据源头工具。从亚马逊 Movers & Shakers 获取近期飙升商品,发现真实需求和市场趋势。
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionamazon-movers-shakersExecute the skills CLI command in your project's root directory to begin installation:
Fetches amazon-movers-shakers from zhuhongyin/global-ecom-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate amazon-movers-shakers. Access via /amazon-movers-shakers in your agent's command palette.
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 environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
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
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
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
0
total installs
0
this week
0
upvotes
Run in your terminal
0
installs
0
this week
—
stars
这是跨境电商选品的数据源头工具。从亚马逊 Movers & Shakers 获取近期飙升商品,发现真实需求和市场趋势。
卖家精灵是国内领先的亚马逊数据分析平台,提供专业的 API 接口:
https://api.sellersprite.com/v1https://mcp.sellersprite.com优势:
API 接口:
| 接口 | 说明 |
|---|---|
/traffic/keyword/stat/{marketplace}/{asin}/ |
关键词流量数据 |
/product/info/{marketplace}/{asin}/ |
产品详情 |
/bestsellers/{marketplace}/{category_id}/ |
类目热销榜 |
/search/{marketplace}/ |
产品搜索 |
/market/trends/{marketplace}/{category_id}/ |
市场趋势 |
Amazon Movers & Shakers 页面:
https://www.amazon.com/Best-Sellers/zgbshttps://www.amazon.co.uk/Best-Sellers/zgbshttps://www.amazon.de/Best-Sellers/zgbshttps://www.amazon.co.jp/Best-Sellers/zgbs当 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:
高资质门槛类
品牌垄断类
价格过低类
体积过大类
以下类型产品优先标记为 suitable_for_temu: true:
家居办公类(Loctek 主营)
轻小件类
组合套装类
使用卖家精灵 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
当无法直接爬取时,使用 WebSearch 工具:
搜索词: "site:amazon.com Movers and Shakers Home Kitchen"
直接获取页面内容:
URL: https://www.amazon.com/Best-Sellers-Home-Kitchen/zgbs/home-garden
用户可手动提供飙升榜商品信息,skill 进行结构化处理。
强制使用 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"
temu-competitor-search 搜索竞品ali1688-sourcing 查找供应链temu-pricing-calculator 进行核价爬虫限制:亚马逊有反爬机制,建议:
数据时效:飙升榜数据每小时更新,建议定期刷新
价格波动:促销期间价格可能异常,需关注历史价格
合规风险:部分产品可能有专利/版权问题,需进一步核查
示例 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. 返回热门产品列表
Make data-driven prioritization decisions faster
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
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ 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.
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
ailabs-393/ai-labs-claude-skills
pproenca/dot-skills
Useful defaults in amazon-movers-shakers — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
Keeps context tight: amazon-movers-shakers is the kind of skill you can hand to a new teammate without a long onboarding doc.
amazon-movers-shakers has been reliable in day-to-day use. Documentation quality is above average for community skills.
amazon-movers-shakers fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
We added amazon-movers-shakers from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
Registry listing for amazon-movers-shakers matched our evaluation — installs cleanly and behaves as described in the markdown.
amazon-movers-shakers fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
amazon-movers-shakers has been reliable in day-to-day use. Documentation quality is above average for community skills.
Solid pick for teams standardizing on skills: amazon-movers-shakers is focused, and the summary matches what you get after install.
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