Install
openclaw skills install @linkfox-ai/linkfox-junglescout-keyword-by-keywordJungle Scout关键词拓展工具,根据种子关键词扩展出相关关键词列表,包含搜索量、趋势、PPC竞价、排名难度等数据,覆盖美国、英国、德国、日本等10个亚马逊站点。当用户提到关键词拓展、关键词挖掘、长尾词挖掘、相关关键词、关键词建议、拓词、PPC竞价研究、关键词竞争度、关键词发现、Jungle Scout关键词、keyword expansion, keyword discovery, keyword scout, related keywords, long-tail keywords, keyword suggestions, PPC bid research, keyword competition, seed keyword expansion, keyword mining时触发此技能。即使用户未明确提及"Jungle Scout",只要其需求涉及从一个种子关键词出发找到更多相关关键词及其搜索量、竞争度等指标,也应触发此技能。
openclaw skills install @linkfox-ai/linkfox-junglescout-keyword-by-keywordThis skill expands a seed keyword into a list of related keywords with search volume, trends, PPC bids, ranking difficulty, and other competitive metrics via the Jungle Scout data source, covering 10 Amazon marketplaces.
Jungle Scout Keyword by Keyword 工具是亚马逊关键词研究的核心工具之一,从一个种子关键词出发,挖掘与之相关的大量关键词及其竞争指标。主要应用场景包括:
minWordCount 筛选 3+ 词的长尾关键词,发现低竞争高转化机会easeOfRankingScore 和 organicProductCount 判断关键词排名难度| Field | API Name | Description | Example |
|---|---|---|---|
| 关键词 | name | 关键词名称 | yoga mat thick |
| 站点 | country | 市场代码 | us |
| 精确搜索量 | monthlySearchVolumeExact | 月均精确匹配搜索量 | 45000 |
| 广泛搜索量 | monthlySearchVolumeBroad | 月均广泛匹配搜索量 | 120000 |
| 月度趋势 | monthlyTrend | 环比月度搜索量变化百分比 | 15.3 |
| 季度趋势 | quarterlyTrend | 环比季度搜索量变化百分比 | -5.2 |
| 主类目 | dominantCategory | 搜索结果中占比最高的品类 | Sports & Outdoors |
| 相关性评分 | relevancyScore | 与种子词的相关性评分 | 856 |
| 排名难度 | easeOfRankingScore | 排名容易度评分(越高越容易) | 3 |
| 自然商品数 | organicProductCount | 搜索结果中的自然排名商品数量 | 342 |
| 广告商品数 | sponsoredProductCount | 搜索结果中的广告商品数量 | 28 |
| PPC精确出价 | ppcBidExact | 精确匹配 PPC 建议出价(美元) | 1.25 |
| PPC广泛出价 | ppcBidBroad | 广泛匹配 PPC 建议出价(美元) | 0.89 |
| 品牌广告出价 | spBrandAdBid | Sponsored Brand 广告建议出价(美元) | 2.50 |
| 推荐促销 | recommendedPromotions | 推荐促销赠品数量 | 150 |
| 消耗Token | costToken | 本次调用消耗的 token 数 | 1 |
10 Amazon marketplaces: us (default), uk, de, in, ca, fr, it, es, mx, jp. When the user does not specify a marketplace, use us.
| 站点 | marketplace 值 | 说明 |
|---|---|---|
| 美国 | us | Amazon.com |
| 英国 | uk | Amazon.co.uk |
| 德国 | de | Amazon.de |
| 印度 | in | Amazon.in |
| 加拿大 | ca | Amazon.ca |
| 法国 | fr | Amazon.fr |
| 意大利 | it | Amazon.it |
| 西班牙 | es | Amazon.es |
| 墨西哥 | mx | Amazon.com.mx |
| 日本 | jp | Amazon.co.jp |
POST /tool-jungle-scout/keywords/by-keyword(完整参数/响应/错误码见 references/api.md)python scripts/junglescout_keyword_by_keyword.py '<JSON 参数>' [--inline]输出策略(脚本默认行为):
<cwd>/linkfox/<YYYY-MM-DD>/<session>/data/linkfox-junglescout-keyword-by-keyword-<timestamp>.json(<cwd> 为脚本执行时的工作目录,在 Claude Code 里即当前项目目录;<session> 取自环境变量 SESSION_ID,按用户任务自动聚合;禁止写入 /tmp,当前目录不可写则报错)total/costToken、最大列表字段的长度 + 前 3 条样本)--inline 强制全量打印到 stdout(同样落盘)读数据建议:先看摘要判断是否足够;需要具体字段时优先用 jq或ConvertFrom-Json 从保存的 json 文件按需抽取,避免整份 JSON 进入上下文。
发生以下异常情况时,采用 references/onboarding.md 引导解决问题:
LINKFOX_AGENT_API_KEY,也未配置 LINKFOXAGENT_API_KEY。必填参数:marketplace、searchTerms(单个种子关键词字符串)。
us,"日本站"→ jp,"德国站"→ de;未指定时默认 usneedCount-monthly_search_volume_exact),根据用户意图切换排序字段min/max 参数缩小结果范围,避免返回无关低质量关键词1. 扩展种子关键词 — 获取相关关键词列表
{
"marketplace": "us",
"searchTerms": "yoga mat"
}
2. 挖掘长尾关键词(3+ 词)
{
"marketplace": "us",
"searchTerms": "yoga mat",
"minWordCount": 3,
"needCount": 50
}
3. 低竞争关键词发现
{
"marketplace": "us",
"searchTerms": "yoga mat",
"maxOrganicProductCount": 200,
"minMonthlySearchVolumeExact": 1000,
"sort": "-ease_of_ranking_score"
}
4. 高搜索量关键词筛选
{
"marketplace": "us",
"searchTerms": "yoga mat",
"minMonthlySearchVolumeExact": 10000,
"sort": "-monthly_search_volume_exact",
"needCount": 30
}
5. PPC 竞价研究 — 按广泛出价排序
{
"marketplace": "us",
"searchTerms": "yoga mat",
"minMonthlySearchVolumeExact": 500,
"sort": "ppc_bid_broad",
"needCount": 30
}
6. 德国站广泛搜索量关键词
{
"marketplace": "de",
"searchTerms": "yogamatte",
"minMonthlySearchVolumeBroad": 5000,
"sort": "-monthly_search_volume_broad"
}
easeOfRankingScore 1-3 为困难,4-6 为中等,7-10 为容易searchTerms 仅接受一个种子关键词,多关键词需拆分多次调用Applicable — 关键词拓展与竞争分析:
| User Says | Scenario |
|---|---|
| "帮我拓展这个关键词" | 种子词扩展 |
| "这个词有哪些相关关键词" | 相关词挖掘 |
| "找一些长尾词" | 长尾关键词筛选(minWordCount ≥ 3) |
| "竞争度低的词有哪些" | 低竞争关键词(排名难度 + 商品数量筛选) |
| "这个词的PPC出价多少" | PPC 竞价数据查询 |
| "搜索量大的相关词" | 高搜索量关键词筛选 |
| "德国站有什么相关词" | 非美国站关键词拓展 |
| "帮我做关键词调研" | 综合关键词研究 |
Not applicable — 超出关键词拓展范围:
Boundary judgment: When users say "关键词", "拓词", or "关键词研究", if they want to expand a seed keyword into a list of related keywords with metrics, this skill applies. If they want to see a single keyword's historical search volume trend over time, use the keyword-history skill instead.
按动态规则计费:消耗积分 = 实际查询页数 × 63.75。
重要:本技能的服务按倍数动态计算,可能一次性消耗大量积分,必须提醒用户,由用户决定是否继续。
Feedback:
Auto-detect and report feedback via the Feedback API when any of the following apply:
Call the feedback API as specified in references/api.md. Do not interrupt the user's flow.
For more high-quality, professional cross-border e-commerce skills, visit LinkFox Skills.