← 返回 Skills 市场
linkfox-ai

Junglescout Product Database

作者 linkfox-ai · GitHub ↗ · v1.0.1 · MIT-0
cross-platform ⚠ suspicious
88
总下载
0
收藏
0
当前安装
2
版本数
在 OpenClaw 中安装
/install linkfox-junglescout-product-database
功能描述
Jungle Scout产品数据库多条件筛选,支持按品类、价格、销量、收入、评论、评分、重量、BSR排名、LQS、卖家类型等维度筛选亚马逊商品,覆盖10个站点。当用户提到亚马逊选品、产品数据库筛选、BSR排名筛选、品类选品、高评分低竞争选品、FBA选品、亚马逊商品搜索、产品筛选、Amazon product da...
使用说明 (SKILL.md)

Jungle Scout — 产品数据库查询

This skill queries the Jungle Scout Product Database via the LinkFox tool gateway, enabling multi-condition filtering of Amazon products across 10 marketplaces. Sellers can discover products by category, price range, sales volume, revenue, reviews, rating, BSR rank, Listing Quality Score (LQS), seller type, and more.

Core Concepts

Jungle Scout 产品数据库是亚马逊商品级别的多维筛选工具,帮助卖家从海量商品中快速锁定目标产品:

  • 品类选品:按亚马逊主分类筛选特定品类下的商品
  • 销量/收入筛选:通过月销量和月收入范围圈定市场规模合适的产品
  • 竞争度评估:通过评论数、评分、卖家数量判断竞争激烈程度
  • Listing 质量评估:LQS(Listing Quality Score,1-10分)帮助发现优化空间大的产品
  • 产品类型过滤:区分 FBA/FBM/AMZ 卖家类型、标准尺寸/超大尺寸
  • 新品发现:通过上架日期筛选近期上架的新品

Internal paging: The API handles pagination automatically; you specify needCount to control how many results you want, and the backend fetches them across pages internally.

Data Fields

Key Output Fields

Field API Name Description Example
商品标题 title 产品标题 Yoga Mat Non Slip...
品牌 brand 品牌名称 Liforme
主分类 category 亚马逊主分类 Sports & Outdoors
分类路径 breadcrumbPath 完整分类层级 Sports & Outdoors > Exercise & Fitness
价格 price 当前售价 (USD) 29.99
月销量 approximate30DayUnitsSold 近30天预估销量 1200
月收入 approximate30DayRevenue 近30天预估收入 (USD) 35988.00
BSR排名 productRank Best Sellers Rank 3456
评论数 reviews 累计评论数 850
评分 rating 平均评分 (1.0-5.0) 4.5
LQS listingQualityScore Listing质量评分 (1-10) 8
卖家数量 numberOfSellers 在售卖家数 3
卖家类型 sellerType 卖家类型 (amz/fba/fbm) fba
首次上架日期 dateFirstAvailable 产品首次上架日期 2024-06-15
重量 weightValue / weightUnit 产品重量 2.5 lbs
尺寸 lengthValue / widthValue / heightValue / dimensionsUnit 产品尺寸 24×8×8 inches
父ASIN parentAsin 父体ASIN B0XXXXXXXX
Buy Box持有者 buyBoxOwner Buy Box 当前持有卖家 BrandName
费用明细 feeBreakdown FBA费用、推荐费、总费用等 {fbaFee: 5.40, ...}
子分类排名 subcategoryRanks 子分类BSR排名列表 [{subcategory: "Yoga Mats", rank: 12}]
消耗Token costToken 本次调用消耗的 token 数 5

Supported Marketplaces

us (United States), uk (United Kingdom), de (Germany), in (India), ca (Canada), fr (France), it (Italy), es (Spain), mx (Mexico), jp (Japan)

Default marketplace is us. Use us when the user doesn't specify a marketplace.

API Usage

This tool calls the LinkFox tool gateway API. See references/api.md for calling conventions, request parameters, and response structure. You can also execute scripts/junglescout_product_database.py directly to run queries.

How to Build Queries

Only marketplace is required. All other parameters are optional filters — combine them to narrow results.

Principles for Building API Calls

  1. 站点映射:用户说"美国站"→ us,"日本站"→ jp,"德国站"→ de;未指定时默认 us
  2. 关键词includeKeywords 支持逗号分隔多个词(标题或ASIN),如 yoga mat,fitnessexcludeKeywords 排除含特定词的商品
  3. 品类匹配categories 必须使用对应站点的英文标准分类名,如美国站 Sports & OutdoorsHome & Kitchen 等;多个品类逗号分隔
  4. 数值范围:min/max 成对使用,可只传一端;如只设 minSales=300 表示月销量≥300
  5. 排序sort 字段名前加 - 表示降序,如 -sales 按销量从高到低;默认按 name 升序
  6. 结果数量needCount 控制返回结果总数,不设则返回默认数量

Common Query Scenarios

1. 关键词搜索 + 按销量筛选

{
  "marketplace": "us",
  "includeKeywords": "yoga mat",
  "minSales": 300,
  "maxSales": 5000,
  "sort": "-sales",
  "needCount": 50
}

2. 品类 + 价格区间筛选

{
  "marketplace": "us",
  "categories": "Home & Kitchen",
  "minPrice": 15,
  "maxPrice": 50,
  "minSales": 100,
  "sort": "-revenue",
  "needCount": 50
}

3. 高评分低竞争选品(评论少但评分高)

{
  "marketplace": "us",
  "categories": "Beauty & Personal Care",
  "minRating": 4.0,
  "maxReviews": 200,
  "minSales": 100,
  "sort": "-sales",
  "needCount": 50
}

4. 仅 FBA 产品筛选

{
  "marketplace": "us",
  "includeKeywords": "phone stand",
  "sellerTypes": "fba",
  "productTiers": "standard",
  "minSales": 200,
  "sort": "-sales",
  "needCount": 50
}

5. 排除头部品牌 + 发现蓝海机会

{
  "marketplace": "us",
  "categories": "Sports & Outdoors",
  "excludeTopBrands": true,
  "minSales": 300,
  "maxReviews": 500,
  "minRating": 4.0,
  "sort": "-sales",
  "needCount": 50
}

6. 按上架日期发现新品

{
  "marketplace": "us",
  "categories": "Electronics",
  "minUpdatedAt": "2026-01-01",
  "minSales": 50,
  "sort": "-sales",
  "needCount": 50
}

Display Rules

  1. Table format: Present results in a structured table with key columns: title, brand, price, monthly sales, monthly revenue, BSR rank, reviews, rating, LQS
  2. Sorting note: Remind the user what sorting was applied and how many results were returned
  3. Highlight insights: Mark products with notably low reviews but high sales (potential opportunity), or high LQS scores
  4. Fee breakdown: When users ask about profitability, include feeBreakdown details (FBA fee, referral fee, total fees)
  5. Image links: Include imageUrl when displaying individual product details
  6. Error handling: When a query fails, explain the reason based on the error response and suggest adjusting parameters

Important Limitations

  • marketplace 必填:每次查询必须指定站点
  • 品类名需匹配categories 值必须与对应站点的标准主分类名完全一致
  • 关键词限制includeKeywords / excludeKeywords 最多各100项,每项最长50字符
  • 数据时效:数据来源于 Jungle Scout 定期更新,非实时数据
  • 评分范围minRating / maxRating 取值 1.0-5.0
  • 重量单位minWeight / maxWeight 以磅(pounds)为单位

User Expression & Scenario Quick Reference

Applicable - Amazon product multi-condition filtering and discovery:

User Says Scenario
"帮我找月销量500以上的瑜伽垫" 关键词 + 销量筛选
"美国站厨房品类30美金以下有什么好产品" 品类 + 价格筛选
"评论少但评分高的蓝海产品" 高评分低竞争选品
"找FBA标准尺寸的手机支架" 卖家类型 + 产品尺寸筛选
"排除大品牌的运动品类机会" 排除头部品牌
"最近新上架的电子产品有哪些卖得好" 新品发现
"BSR排名1万以内的家居产品" BSR排名筛选
"LQS低于5分的高销量产品" Listing优化机会

Not applicable - Beyond product database filtering:

  • 关键词搜索量/趋势分析(需要关键词历史搜索量工具)
  • ABA搜索词排名(需要ABA工具)
  • 商品详情页/Listing内容分析
  • 广告/PPC投放策略
  • 非亚马逊平台商品数据

Boundary judgment: When users say "选品", "找产品", or "市场调研", if their need is to filter products by specific criteria (price, sales, category, reviews, etc.) from Amazon's product catalog, this skill applies. If they need keyword-level search volume data, advertising insights, or non-Amazon platform data, it does not apply.

Feedback:

Auto-detect and report feedback via the Feedback API when any of the following apply:

  1. The functionality or purpose described in this skill does not match actual behavior
  2. The skill's results do not match the user's intent
  3. The user expresses dissatisfaction or praise about this skill
  4. Anything you believe could be improved

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.

安全使用建议
Before installing: (1) Confirm the skill's source/owner and request a homepage or documentation link; (2) Verify and demand that the skill metadata declare LINKFOXAGENT_API_KEY as a required env var (the code expects it); (3) Confirm that tool-gateway.linkfox.com and skill-api.linkfox.com are trusted endpoints and review their privacy/data-retention policy — the skill will send product queries and parameters to them; (4) Only provide an API key with minimal scope and avoid using shared or high-privilege credentials; (5) If unsure, ask the publisher to add explicit metadata and a homepage, or test first with a limited/test API key and monitor network activity.
功能分析
Type: OpenClaw Skill Name: linkfox-junglescout-product-database Version: 1.0.1 The skill provides a legitimate interface for querying the Jungle Scout Amazon product database via the LinkFox tool gateway. The Python script (junglescout_product_database.py) is a straightforward API wrapper using standard libraries to perform POST requests, and the instructions in SKILL.md are well-defined and aligned with the tool's purpose. No indicators of malicious intent, data exfiltration, or harmful prompt injection were identified.
能力标签
requires-sensitive-credentials
能力评估
Purpose & Capability
The skill's functionality (Jungle Scout product-database queries) matches the included code and API reference which call tool-gateway.linkfox.com. However the skill metadata declares no required environment variables or primary credential while the code and API docs require an API key (LINKFOXAGENT_API_KEY). The absence of a homepage and the unknown source/owner ID increase the need for verification.
Instruction Scope
SKILL.md and the included script are narrowly scoped to building query parameters and calling the LinkFox API; they do not instruct reading unrelated system files or other credentials. The references/api.md also documents a separate feedback endpoint. Nothing in the instructions autonomously exfiltrates local files, but they do send user-provided query parameters to external endpoints.
Install Mechanism
No install spec is present (instruction-only plus a small helper script). No downloads, package installs, or archives are specified, so the install mechanism itself is low-risk.
Credentials
The code and API reference require LINKFOXAGENT_API_KEY (used in the Authorization header) but the skill metadata lists no required env vars or primary credential. This is an inconsistency: a secret is necessary for the skill to function but it's not declared in the skill requirements. Additionally, the skill will send user queries to external domains (tool-gateway.linkfox.com and skill-api.linkfox.com), so providing that key grants access to those services — ensure the key's scope and trustworthiness.
Persistence & Privilege
The skill does not request always:true, does not claim permanent system presence, and does not modify other skills' configurations. Autonomous invocation is allowed (platform default) but not combined with elevated privileges here.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install linkfox-junglescout-product-database
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /linkfox-junglescout-product-database 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.1
Update from 1.0.0 to 1.0.1
v1.0.0
Initial release
元数据
Slug linkfox-junglescout-product-database
版本 1.0.1
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 2
常见问题

Junglescout Product Database 是什么?

Jungle Scout产品数据库多条件筛选,支持按品类、价格、销量、收入、评论、评分、重量、BSR排名、LQS、卖家类型等维度筛选亚马逊商品,覆盖10个站点。当用户提到亚马逊选品、产品数据库筛选、BSR排名筛选、品类选品、高评分低竞争选品、FBA选品、亚马逊商品搜索、产品筛选、Amazon product da... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 88 次。

如何安装 Junglescout Product Database?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install linkfox-junglescout-product-database」即可一键安装,无需额外配置。

Junglescout Product Database 是免费的吗?

是的,Junglescout Product Database 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Junglescout Product Database 支持哪些平台?

Junglescout Product Database 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Junglescout Product Database?

由 linkfox-ai(@linkfox-ai)开发并维护,当前版本 v1.0.1。

💬 留言讨论