← 返回 Skills 市场
linkfox-ai

Jiimore Niche By Asin

作者 linkfox-ai · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
67
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install linkfox-jiimore-niche-by-asin
功能描述
按ASIN查找亚马逊同细分市场(Niche)竞品,支持点击转化率、综合转化率、点击量、销量、评论、评分、价格、毛利率等多维度筛选潜力竞品。当用户提到同细分竞品、ASIN竞品挖掘、Niche竞品分析、同类商品对标、ASIN对标分析、细分市场竞品列表、高转化竞品筛选、极目产品挖掘、niche competitor b...
使用说明 (SKILL.md)

Jiimore Niche Competitor by ASIN

This skill guides you on how to query and filter Amazon competing products in the same niche segments as a reference ASIN, helping Amazon sellers discover potential competitors and evaluate opportunities using metrics such as click conversion rate, composite conversion rate, click volume, sales volume, reviews, price, FBA fees, and gross profit margin.

Core Concepts

Given a reference ASIN, the tool mines competing ASINs that share the same niche segments on Amazon and returns a paginated list with rich metrics: click conversion rate, composite conversion rate, click counts (7-day/30-day/90-day), sales volume, pricing, FBA fees, gross profit margin, customer rating, and 90-day trend data. Data is available for US, JP, and DE marketplaces only.

ASIN is required: Every query must include a reference asin. The tool finds products that share the same niche segments as this ASIN and returns them with detailed metrics.

Percentage fields: Several parameters use a 0-1 decimal range representing 0%-100%. When displaying these values to users, convert them to percentages (e.g., 0.15 -> 15%).

Date format: Launch date parameters use the format yyyyMMdd000000 (e.g., 20240101000000 for January 1, 2024).

Parameter Guide

Required

Parameter Type Description
asin string Reference ASIN to find competing products for (max 1000 chars)

Marketplace & Pagination

Parameter Type Default Description
countryCode string US Country code: US, JP, DE
page integer 1 Page number (starts from 1)
pageSize integer 50 Results per page (10-100)
sortField string purchasedClicksT360 Field to sort by (see Sorting Options below)
sortType string desc Sort direction: desc or asc

Filter Parameters (all optional, min/max ranges)

Price & FBA:

Parameter Type Description
priceMin / priceMax number Product price range
fbaFeeMin / fbaFeeMax number FBA commission range
grossProfitMarginMin / grossProfitMarginMax number Gross profit margin range

Reviews & Ratings:

Parameter Type Description
totalReviewsMin / totalReviewsMax integer Total review count range
customerRatingMin / customerRatingMax number Customer rating range (0.0-5.0)

Click Data (7-day):

Parameter Type Description
clickCountT7Min / clickCountT7Max integer Weekly click count range
clickCountGrowthT7Min / clickCountGrowthT7Max number Weekly click growth rate (0-1)
clickConversionRateMin / clickConversionRateMax number Click conversion rate (0-1)

Click Data (30-day):

Parameter Type Description
clickCountT30Min / clickCountT30Max integer Monthly click count range
clickCountGrowthT30Min / clickCountGrowthT30Max number Monthly click growth rate (0-1)

Composite Conversion:

Parameter Type Description
clickConversionRateCompositeMin / clickConversionRateCompositeMax number Composite click conversion rate (0-1)

Sales & Launch Date:

Parameter Type Description
salesVolumeT360Min / salesVolumeT360Max integer 360-day sales volume range
launchDateMin / launchDateMax string Launch date range (format: yyyyMMdd000000)

Niche & Seller:

Parameter Type Description
nicheCountMin / nicheCountMax integer Number of niches the product belongs to
sellerCountry string Seller country code(s), comma-separated (e.g., "CN,US")

Sorting Options

Value Meaning
purchasedClicksT360 360-day purchased clicks (default)
totalReviews Total reviews
price Price
launchDate Launch date
clickCountT30 30-day click count
clickCountT90 90-day click count
clickCountT7 7-day click count
clickConversionRate Click conversion rate
clickConversionRateComposite Composite click conversion rate
customerRating Customer rating
clickCountGrowthT7 Weekly click growth rate
clickCountGrowthT30 Monthly click growth rate
currentPrice Current price
fbaFee FBA commission
shippingFee FBA shipping fee
gpm Gross profit margin

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/jiimore_page_asins_by_asin.py directly to run queries.

Usage Examples

1. Basic competitor lookup by ASIN Find competing products for a reference ASIN in the US market:

{
  "asin": "B0GC4RPX79",
  "countryCode": "US",
  "sortField": "purchasedClicksT360",
  "sortType": "desc"
}

2. High-conversion competitors Find competitors with composite conversion rate above 15%:

{
  "asin": "B0GC4RPX79",
  "countryCode": "US",
  "clickConversionRateCompositeMin": 0.15,
  "sortField": "clickConversionRateComposite",
  "sortType": "desc"
}

3. New product opportunities Find recently launched competitors (within 3 months) with high click growth:

{
  "asin": "B0GC4RPX79",
  "countryCode": "US",
  "launchDateMin": "20240101000000",
  "clickCountGrowthT7Min": 0.1,
  "sortField": "clickCountGrowthT7",
  "sortType": "desc"
}

4. Price-range filtered competitors Find competitors priced between $20 and $50 with good gross margins:

{
  "asin": "B0GC4RPX79",
  "countryCode": "US",
  "priceMin": 20,
  "priceMax": 50,
  "grossProfitMarginMin": 0.3,
  "sortField": "gpm",
  "sortType": "desc"
}

5. High-click low-review competitors (potential weak spots) Find competitors with monthly clicks above 2000 but fewer than 100 reviews:

{
  "asin": "B0GC4RPX79",
  "countryCode": "US",
  "clickCountT30Min": 2000,
  "totalReviewsMax": 100,
  "sortField": "clickCountT30",
  "sortType": "desc"
}

6. Japanese market competitor analysis Explore competitors in the Japanese market sorted by rating:

{
  "asin": "B0GC4RPX79",
  "countryCode": "JP",
  "sortField": "customerRating",
  "sortType": "desc"
}

7. Chinese sellers in the same niche Filter competitors by seller country (China) with high sales volume:

{
  "asin": "B0GC4RPX79",
  "countryCode": "US",
  "sellerCountry": "CN",
  "salesVolumeT360Min": 1000,
  "sortField": "purchasedClicksT360",
  "sortType": "desc"
}

Display Rules

  1. Present data clearly: Show query results in well-structured tables. Convert decimal ratios to percentages for readability (e.g., 0.25 -> 25%).
  2. Highlight key metrics: Always surface the ASIN, product title, price, customer rating, click conversion rate (composite), click counts, total reviews, and gross profit margin as primary columns.
  3. Show niche context: When the niches field is present, display the top niche titles and demand scores to give context about which market segments the product competes in.
  4. Trends visualization: When trends data is available, summarize the 90-day trend direction (rising/falling/stable) for key metrics like clicks and pricing.
  5. Pagination guidance: When total exceeds the current page size, inform the user of the total count and suggest fetching additional pages if needed.
  6. Error handling: When a query fails, explain the reason based on the response message and suggest adjusting filter criteria (e.g., broadening ranges or checking the ASIN).
  7. No subjective advice: Present data objectively without adding unsolicited business recommendations. Only provide interpretation when explicitly requested by the user.

Important Limitations

  • Supported marketplaces: Only US, JP, and DE are available. Other marketplace codes will be rejected.
  • ASIN required: Every query must include a reference ASIN. The API will not return results without one.
  • Result cap: Maximum 100 results per page.
  • Percentage values: All rate/share parameters use 0-1 range, not 0-100. Ensure correct values when constructing filters.
  • Date format: Launch date parameters must use yyyyMMdd000000 format.

User Expression & Scenario Quick Reference

Applicable -- Finding competing products based on a reference ASIN:

User Says Scenario
"Find competitors for ASIN B0GC4RPX79" Direct competitor lookup
"What products compete with this ASIN" Same-niche competitor exploration
"Show me similar products in the same niche" Niche competitor discovery
"High-conversion competitors for my product" Conversion-based competitor filtering
"New products competing in my niche" New entrant identification
"Which Chinese sellers compete with this ASIN" Seller-origin based filtering
"Find low-review high-click products like mine" Opportunity gap analysis
"Competitor pricing analysis for ASIN XX" Price-focused competitor analysis

Not applicable -- Needs beyond ASIN-based same-niche competitor discovery:

  • Keyword-level niche market analysis (use Jiimore Niche Info by Keyword instead)
  • Individual ASIN revenue or profit estimation
  • ABA search term data / keyword research
  • Advertising campaign management or bid optimization
  • Product review analysis or listing optimization
  • Supplier sourcing or logistics planning

Boundary judgment: When users say "competitor analysis" or "similar products," if their intent focuses on finding products that compete in the same niche as a specific ASIN, this skill applies. If they want keyword-level market segment data, direct them to Jiimore Niche Info by Keyword. If they need detailed product data for a single ASIN, direct them to Amazon Product Detail.

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, set LinkFox Skills.

安全使用建议
This skill appears to do what it claims (call LinkFox's jiimore API to find ASIN competitors), but there are two issues you should consider before installing: - The package metadata does not declare the required environment variable LINKFOXAGENT_API_KEY, yet the script and API docs expect it. Expect to provide that API key as an environment variable; confirm you trust the provider before supplying any secret. - The source/homepage are missing and the owner identity is just an ID. Verify the API host (tool-gateway.linkfox.com and skill-api.linkfox.com) and the publisher (ask for a homepage or repo) before granting access or storing the key. If you proceed: only provide an API key with minimal scope, run the script in a controlled environment first, and avoid enabling broad autonomous invocation until you confirm the service and publisher are trustworthy.
功能分析
Type: OpenClaw Skill Name: linkfox-jiimore-niche-by-asin Version: 1.0.0 The skill bundle is a legitimate tool for Amazon market research, allowing users to find niche competitors based on a reference ASIN. The Python script `jiimore_page_asins_by_asin.py` performs standard API requests to a LinkFox gateway (tool-gateway.linkfox.com) using an environment-stored API key. The instructions in `SKILL.md` and `references/api.md` are consistent with the tool's purpose and do not contain any malicious directives or obfuscated code.
能力标签
requires-sensitive-credentials
能力评估
Purpose & Capability
Name/description match the included code and docs: the skill queries LinkFox's jiimore/pageAsinsByAsin endpoint to find ASIN competitors. However, the registry metadata declares no required environment variables while both the API reference and the shipped script require an API key (LINKFOXAGENT_API_KEY). The missing declaration is an inconsistency.
Instruction Scope
SKILL.md and references/api.md instruct the agent to POST JSON queries to https://tool-gateway.linkfox.com/jiimore/pageAsinsByAsin (and optionally send feedback to https://skill-api.linkfox.com). The runtime instructions only reference the ASIN query parameters and the API key; they do not ask the agent to read unrelated files or secrets beyond the API key.
Install Mechanism
There is no install spec (instruction-only) and the included Python script is small and self-contained. Nothing in the package downloads or extracts external code during install — low install risk.
Credentials
The skill actually requires an API credential (LINKFOXAGENT_API_KEY) for Authorization (documented in references/api.md and read by scripts/jiimore_page_asins_by_asin.py) but the registry metadata lists no required env vars or primary credential. Requiring a single API key for the external service is proportionate to the purpose, but the omission from metadata is a security/usability concern (the agent or user may not realize a secret is needed or where it will be sent).
Persistence & Privilege
always is false; the skill is user-invocable and allows normal autonomous invocation. It does not request persistent system privileges, nor does it modify other skills or system-wide settings.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install linkfox-jiimore-niche-by-asin
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /linkfox-jiimore-niche-by-asin 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release
元数据
Slug linkfox-jiimore-niche-by-asin
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Jiimore Niche By Asin 是什么?

按ASIN查找亚马逊同细分市场(Niche)竞品,支持点击转化率、综合转化率、点击量、销量、评论、评分、价格、毛利率等多维度筛选潜力竞品。当用户提到同细分竞品、ASIN竞品挖掘、Niche竞品分析、同类商品对标、ASIN对标分析、细分市场竞品列表、高转化竞品筛选、极目产品挖掘、niche competitor b... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 67 次。

如何安装 Jiimore Niche By Asin?

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

Jiimore Niche By Asin 是免费的吗?

是的,Jiimore Niche By Asin 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Jiimore Niche By Asin 支持哪些平台?

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

谁开发了 Jiimore Niche By Asin?

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

💬 留言讨论