← Back to Skills Marketplace
linkfox-ai

Jiimore Niche Review

by linkfox-ai · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
92
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install linkfox-jiimore-niche-review
Description
亚马逊细分市场评论分析与消费者情感洞察。当用户提到细分市场评论分析、消费者情感、用户痛点、客户反馈洞察、评论主题分析、好评差评拆解、细分市场舆情挖掘、产品评论情感分析、niche market reviews, consumer sentiment, customer pain points, review to...
README (SKILL.md)

Jiimore Niche Review from Keyword

This skill guides you on how to query and analyze Amazon niche market review data powered by Jiimore, helping Amazon sellers uncover consumer sentiment, pain points, and real demand signals from product reviews within niche markets.

Core Concepts

Niche Review Analysis aggregates and categorizes customer reviews across products in an Amazon niche market. Given a keyword, the system identifies the relevant niche markets, extracts review topics, classifies them as positive or negative, and shows how frequently each topic is mentioned. This enables sellers to understand what customers love, what frustrates them, and where product improvement opportunities exist.

Review types: Each review entry is classified as either "positive" or "negative", reflecting the overall sentiment of that review topic.

Mention percentage: The percentOfMentions value (0-1 scale, representing 0%-100%) indicates how frequently a particular topic appears across all reviews in the niche. A higher percentage means more customers are talking about that topic.

Supported Marketplaces

US (United States), JP (Japan), DE (Germany)

Default marketplace is US. Use US when the user does not 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/jiimore_get_niche_review.py directly to run queries.

Parameter Guide

Required Parameter

Parameter Type Description
keyword string The search keyword (max 1000 chars). Must be in the language of the target marketplace (English for US, German for DE, Japanese for JP)

Marketplace & Pagination

Parameter Type Default Description
countryCode string US Country code: US, JP, or DE
page integer 1 Page number (starting from 1)
pageSize integer 50 Results per page (10-100)

Sorting

Parameter Type Default Description
sortField string unitsSoldT7 Field to sort by (see Sortable Fields below)
sortType string desc Sort direction: desc (descending) or asc (ascending)

Sortable Fields:

Field Description
unitsSoldT7 Units sold (7-day)
searchVolumeT7 Search volume (7-day)
searchVolumeGrowthT7 Search volume growth (7-day)
clickConversionRateT7 Click conversion rate (7-day)
searchConversionRateT7 Search conversion rate (7-day)
clickCountT7 Click count (7-day)
demand Demand score
avgPrice Average price
maximumPrice Maximum price
minimumPrice Minimum price
productCount Product count
brandCount Brand count
top5BrandsClickShare Top 5 brands click share
top5ProductsClickShare Top 5 products click share
clickCountT90 Click count (90-day)
clickConversionRateT90 Click conversion rate (90-day)
searchConversionRateT90 Search conversion rate (90-day)
searchVolumeT90 Search volume (90-day)
unitsSoldT90 Units sold (90-day)
unitsSoldGrowthT90 Units sold growth (90-day)
searchVolumeGrowthT90 Search volume growth (90-day)
returnRateT360 Return rate (360-day)
newProductsLaunchedT180 New products launched (180-day)
successfulLaunchesT180 Successful launches (180-day)
launchRateT180 Launch success rate (180-day)
acos ACOS
profitRate50 Profit rate at 50% organic orders

Niche Filtering Parameters

All filter parameters follow a min/max range pattern. Values for percentage-based fields use a 0-1 scale (e.g., 0.05 = 5%).

Product & Brand Metrics:

Parameter Type Description
productCountMin / productCountMax integer Product count range
brandCountMin / brandCountMax integer Brand count range
avgPriceMin / avgPriceMax number Average price range

Sales & Search Volume:

Parameter Type Description
unitsSoldT7Min / unitsSoldT7Max integer Units sold (7-day) range
searchVolumeT7Min / searchVolumeT7Max integer Search volume (7-day) range
clickCountT7Min / clickCountT7Max integer Click count (7-day) range

Conversion & Click Rates (0-1 scale):

Parameter Type Description
clickConversionRateT7Min / clickConversionRateT7Max number Click conversion rate (7-day) range

Market Concentration (0-1 scale):

Parameter Type Description
top5BrandsClickShareMin / top5BrandsClickShareMax number Top 5 brands click share range
top5ProductsClickShareMin / top5ProductsClickShareMax number Top 5 products click share range
sponsoredProductsPercentageMin / sponsoredProductsPercentageMax number SP ad percentage range

Brand & Seller Age:

Parameter Type Description
avgBrandAgeMin / avgBrandAgeMax number Average brand age (current)
avgBrandAgeQoqMin / avgBrandAgeQoqMax number Average brand age (90-day)
avgBrandAgeYoyMin / avgBrandAgeYoyMax number Average brand age (360-day)
avgSellingPartnerAgeMin / avgSellingPartnerAgeMax number Average seller age (current)
avgSellingPartnerAgeQoqMin / avgSellingPartnerAgeQoqMax number Average seller age (90-day)
avgSellingPartnerAgeYoyMin / avgSellingPartnerAgeYoyMax number Average seller age (360-day)

New Product & Return Metrics (0-1 scale):

Parameter Type Description
launchRateT180Min / launchRateT180Max number Launch success rate (180-day) range
newProductRateT180 number New product percentage (180-day) min
returnRateT360Min / returnRateT360Max number Return rate (360-day) range

Advertising:

Parameter Type Description
cpcMediumMin / cpcMediumMax number CPC (current) range

Usage Examples

1. Basic niche review lookup for a keyword

Analyze customer reviews in niche markets related to "yoga mat" on the US marketplace.

Parameters: {"keyword": "yoga mat", "countryCode": "US"}

2. Find niche reviews with high search volume

Show me niche market reviews for "wireless earbuds" where 7-day search volume is above 10000.

Parameters: {"keyword": "wireless earbuds", "countryCode": "US", "searchVolumeT7Min": 10000}

3. Low competition niches with review insights

Find review insights for "pet bed" niches where top 5 brands hold less than 30% click share.

Parameters: {"keyword": "pet bed", "countryCode": "US", "top5BrandsClickShareMax": 0.3}

4. Japanese market niche reviews

Analyze niche reviews for wireless earbuds on the Japan marketplace.

Parameters: {"keyword": "wireless earbuds", "countryCode": "JP"}

5. Sorted by demand score

Show niche reviews for "kitchen organizer" sorted by demand score in descending order.

Parameters: {"keyword": "kitchen organizer", "sortField": "demand", "sortType": "desc"}

6. Filter by new product success rate

Find niches for "phone case" where the 180-day new product launch success rate is above 20%.

Parameters: {"keyword": "phone case", "launchRateT180Min": 0.2}

7. Low return rate niches

Show review topics for "water bottle" niches with return rates below 5%.

Parameters: {"keyword": "water bottle", "returnRateT360Max": 0.05}

Display Rules

  1. Present data clearly: Show review topics in a well-organized table. Include the niche name, review type (positive/negative), topic, mention percentage, and a review example
  2. Percentage formatting: Convert 0-1 scale values to percentages for display (e.g., 0.15 -> 15%)
  3. Sentiment separation: When presenting results, group or clearly label positive vs. negative reviews so users can quickly identify opportunities and pain points
  4. Actionable insight framing: While showing data objectively, highlight high-mention-percentage negative reviews as potential product improvement opportunities, and high-mention-percentage positive reviews as features to emphasize in listings
  5. Volume notice: When results are large, show the most relevant data first and remind users about pagination options
  6. Error handling: When a query fails, explain the reason and suggest adjusting the keyword or filter criteria
  7. Language reminder: If a user provides a keyword in the wrong language for the target marketplace, remind them to use the marketplace's native language (English for US, German for DE, Japanese for JP)

User Expression & Scenario Quick Reference

Applicable -- Consumer review and sentiment analysis within Amazon niche markets:

User Says Scenario
"What do customers say about XX" Niche review topic lookup
"Customer pain points for XX" Negative review analysis
"What features do buyers love in XX" Positive review analysis
"Review sentiment for XX niche" Full sentiment breakdown
"Consumer demand insights for XX" Demand signal extraction from reviews
"Common complaints about XX products" Negative topic mining
"What makes XX products popular" Positive topic mining
"Niche market review analysis" General niche review exploration

Not applicable -- Needs beyond niche review analysis:

  • Individual ASIN review analysis (this tool works at the niche/market level)
  • Keyword search volume trends without review context (use ABA data tools instead)
  • Product listing optimization or copywriting
  • Advertising strategy and PPC management
  • Sales estimation or revenue forecasting

Boundary judgment: When users say "market research" or "product opportunity", if their intent focuses on understanding consumer sentiment, review topics, and pain points within a niche market, this skill applies. If they are asking about search volume trends, pricing strategy, or sales data without review context, 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, set LinkFox Skills.

Usage Guidance
This skill appears to do what it claims (call the LinkFox Jiimore API to analyze Amazon niche reviews), but the manifest is incomplete. Before installing or enabling it: 1) confirm you trust the LinkFox endpoints (tool-gateway.linkfox.com and skill-api.linkfox.com) and the publisher; 2) expect to provide an API key via LINKFOXAGENT_API_KEY — the skill will exit if that env var is missing; 3) be aware the included Python script will make outbound requests when executed and requires a Python 3 runtime (the manifest does not declare this); 4) ask the publisher to update the skill metadata to explicitly declare required env vars and runtime/binaries, and provide a homepage or contact so you can verify the service and API key provisioning process. If you cannot verify the provider or do not want to supply an API key to this service, do not enable the skill.
Capability Assessment
Purpose & Capability
The skill claims to call the LinkFox Jiimore API to analyze Amazon niche reviews — which matches the included script and API reference. However, the skill metadata lists no required environment variables or runtime binaries, while the code clearly requires a LINKFOXAGENT_API_KEY environment variable and expects a Python 3 runtime. Those omissions are inconsistent with the stated purpose and suggest the manifest is incomplete.
Instruction Scope
SKILL.md and references/api.md instruct the agent to POST JSON to https://tool-gateway.linkfox.com/jiimore/getNicheReviewFromKeyword and optionally to a separate feedback endpoint at https://skill-api.linkfox.com/api/v1/public/feedback. The instructions otherwise stay within the described domain (keyword → niche review analysis). They do, however, rely on an environment API key (LINKFOXAGENT_API_KEY) that the manifest does not declare. There is no instruction to read unrelated local files or exfiltrate other credentials.
Install Mechanism
No install spec is provided (instruction-only), so nothing is downloaded or written by an installer. The package includes a Python script that will make network calls if executed; because there is no install step that fetches remote code, install-mechanism risk is low. Still, running the included script will perform outbound network requests to external endpoints.
Credentials
The code requires an API key via the LINKFOXAGENT_API_KEY environment variable (used as the Authorization header) but the skill metadata does not list any required env vars or a primary credential. That mismatch is concerning: the skill will fail without the key, and the user has no manifest-declared indication that a key is needed. No other unrelated credentials are requested.
Persistence & Privilege
The skill does not request persistent privileges, does not set always:true, and does not declare any config paths. Autonomous invocation is permitted (platform default) but is not combined with any elevated privileges or additional credential access in the manifest.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install linkfox-jiimore-niche-review
  3. After installation, invoke the skill by name or use /linkfox-jiimore-niche-review
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release
Metadata
Slug linkfox-jiimore-niche-review
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Jiimore Niche Review?

亚马逊细分市场评论分析与消费者情感洞察。当用户提到细分市场评论分析、消费者情感、用户痛点、客户反馈洞察、评论主题分析、好评差评拆解、细分市场舆情挖掘、产品评论情感分析、niche market reviews, consumer sentiment, customer pain points, review to... It is an AI Agent Skill for Claude Code / OpenClaw, with 92 downloads so far.

How do I install Jiimore Niche Review?

Run "/install linkfox-jiimore-niche-review" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Jiimore Niche Review free?

Yes, Jiimore Niche Review is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Jiimore Niche Review support?

Jiimore Niche Review is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Jiimore Niche Review?

It is built and maintained by linkfox-ai (@linkfox-ai); the current version is v1.0.0.

💬 Comments