← Back to Skills Marketplace
linkfox-ai

Multimodal Product Similarity

by linkfox-ai · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
77
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install linkfox-multimodal-product-similarity
Description
多模态产品图片相似度分析与分组。当用户提到产品图片相似度、视觉分组、查找外观相似的商品、基于图片去重、竞品同款检测、同款商品聚类、按外观分组、image similarity, product image comparison, visual clustering, same-style recognition,...
README (SKILL.md)

Multimodal Product Image Similarity Analysis

This skill guides you on how to analyze and group products by the visual similarity of their main images. It helps Amazon sellers identify same-style products, detect competitor lookalikes, and organize product lists into visually coherent clusters.

Core Concepts

Product Image Similarity Analysis uses multimodal AI to compare the main images of products and automatically group them based on visual features such as appearance, color, composition, and material. It is a post-processing tool -- it operates on product data that has already been retrieved by a preceding step (e.g., product search, product recommendations).

Similarity threshold: The similarityThreshold parameter controls how visually close two products must be to land in the same group. It is an integer from 0 to 100 representing a percentage. A higher value means stricter matching (only near-identical images group together); a lower value means more lenient matching (broader visual clusters). The default is 60.

Single-brand group filtering: The includeSingleBrandGroups flag (default true) controls whether groups containing products from only one brand are included in the results. Setting it to false filters out single-brand groups, which is useful when the user wants to focus on cross-brand visual overlaps (e.g., competitor lookalike analysis).

Input Data Requirement

This tool requires a products list from a preceding step. It cannot fetch product data on its own. The typical workflow is:

  1. Run a product search or recommendation tool to obtain a product list.
  2. Pass that product list into this tool via refResultData for visual similarity grouping.

The input data must be a JSON object containing a products array.

Parameters

Parameter Type Required Description
similarityThreshold integer No Similarity threshold (0-100), default 60. Higher = stricter matching.
includeSingleBrandGroups boolean No Whether to include groups with only one brand, default true. Set to false to focus on cross-brand similarity.
refResultData string No JSON string of the preceding tool's result data containing the product list.
userInput string No The original user query or instruction text.
  • chatId and other system fields (uid, stepId, messageId, memberId) are managed automatically and can be ignored.

Response Fields

Field Type Description
groups array List of similarity groups. Each group contains groupNumber, reason, brandCount, and an asins array of product details.
analysisInfo object Summary: totalProductsAnalyzed, totalGroupsFound, similarityThreshold, analysisTimestamp.
tables array Tabular result data, each element with data, columns, and name.
total integer Total number of result items.
title string Result title.
type string Rendering style hint.
costToken integer Total LLM tokens consumed (input + output).

Group Item (asins array element)

Field Type Description
asin string Product ASIN
productId string Product ID
brand string Brand name
price number Price
rating number Rating score
ratings integer Number of ratings
monthlySalesUnits integer Monthly sales units
monthlySalesRevenue number Monthly sales revenue
monthlySalesUnitsGrowthRate number Monthly sales growth rate
imageUrl string Main image URL
productImageUrls array All product image URLs
imagePrompt string AI-generated image description
asinUrl string Product detail page URL
availableDate string Listing date
color string Color
material string Material

API Usage

This tool calls the LinkFox tool gateway API. See references/api.md for endpoint details, request parameters, and response structure. You can also execute scripts/multimodal_analyze_product_similarity.py directly to run analyses.

Usage Examples

1. Group search results by visual similarity (default threshold) After obtaining a product list from a search tool, pass the results to this tool to cluster visually similar items:

User: "Group these products by how similar they look."
Action: Call the API with refResultData set to the preceding product list JSON, using the default similarityThreshold of 60.

2. Find near-identical products (strict matching)

User: "Which of these products have almost the same main image?"
Action: Call the API with similarityThreshold set to 85 or higher for strict visual matching.

3. Cross-brand competitor lookalike detection

User: "Show me groups where different brands have similar-looking products."
Action: Call the API with includeSingleBrandGroups set to false to filter out single-brand clusters.

4. Broad visual clustering (lenient threshold)

User: "Roughly categorize these products by appearance."
Action: Call the API with similarityThreshold set to 40 for broad grouping.

5. Combined: strict similarity across brands

User: "Find products from different brands that look nearly identical."
Action: Call the API with similarityThreshold set to 80 and includeSingleBrandGroups set to false.

Display Rules

  1. Present grouping results clearly: Show each similarity group with its group number, the reason for grouping, brand count, and a table of products within the group.
  2. Show product images when possible: If image URLs are available, include them to help users visually verify the grouping.
  3. Highlight cross-brand groups: When the user cares about competitor analysis, emphasize groups containing multiple brands.
  4. Analysis summary: Always present the analysis summary (total products analyzed, total groups found, similarity threshold used, timestamp).
  5. No subjective advice: Present the grouping data objectively. Do not inject business recommendations unless the user asks.
  6. Large result sets: When there are many groups, show the most significant ones first (e.g., groups with the most products or the most brands) and inform the user about additional groups.
  7. Error handling: When a request fails, explain the reason based on the response message and suggest adjustments (e.g., check that the input product data is valid, adjust the threshold).

Important Limitations

  • Post-processing only: This tool cannot fetch product data on its own. It must receive product data from a preceding step.
  • No database storage: Results are not stored in a database. Do not use database query tools for secondary analysis on the output.
  • Input format: The input must be a JSON object containing a products array.
  • Direct to summary: After this tool completes, pass the results directly to the summary stage. Do not perform additional intermediate data computations.

User Expression & Scenario Quick Reference

Applicable -- Visual similarity analysis on product lists:

User Says Scenario
"Group these by how they look" Visual clustering
"Find similar-looking products", "find lookalikes" Similarity detection
"Which products look the same" Image deduplication
"Show me competitor copycats" Cross-brand lookalike analysis
"Cluster by appearance / color / style" Visual categorization
"Are there duplicates in this list" Image-based dedup
"Same-style products from different brands" Cross-brand similarity

Not applicable -- Needs beyond image similarity:

  • Text-based product comparison (titles, descriptions, keywords)
  • Price or sales-based grouping without visual component
  • Product search or discovery (this tool only post-processes existing lists)
  • Review analysis, listing optimization, advertising strategy

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
Before installing, confirm the missing-but-required env var: the script and API docs require LINKFOXAGENT_API_KEY, yet the registry metadata lists none — ask the publisher to update the metadata. Review and trust the external endpoints (tool-gateway.linkfox.com and skill-api.linkfox.com); using the skill will send any product JSON and image URLs you pass (refResultData) to that service along with your API key in the Authorization header. If you will pass sensitive or private product data, verify LinkFox's privacy/security policies and the API key scope. Prefer setting the API key in a restricted environment variable, inspect the script locally if desired (it is small and readable), and consider disabling autonomous invocation or limiting the contexts where the skill may be called until the metadata inconsistency is resolved.
Capability Analysis
Type: OpenClaw Skill Name: linkfox-multimodal-product-similarity Version: 1.0.0 The skill bundle is a legitimate tool for analyzing product image similarity using the LinkFox API. The Python script (multimodal_analyze_product_similarity.py) performs standard POST requests to a documented endpoint (tool-gateway.linkfox.com) and includes appropriate input validation and error handling. No evidence of data exfiltration, malicious execution, or harmful prompt injection was found in SKILL.md or the supporting documentation.
Capability Assessment
Purpose & Capability
The SKILL.md, references/api.md, and the included script all call https://tool-gateway.linkfox.com/multimodal/analyzeProductSimilarity to perform image-similarity grouping — that matches the skill's stated purpose. However, the skill registry metadata declares no required environment variables or primary credential even though the code and API docs clearly require an API key (LINKFOXAGENT_API_KEY). This mismatch is an incoherence that should be resolved before trusting the skill.
Instruction Scope
The runtime instructions and the script stay within the stated scope: they accept a preceding tool's product list (refResultData) and send it to the LinkFox tool gateway for analysis. The instructions do not request unrelated system files or broad context. They do call a separate feedback endpoint (skill-api.linkfox.com) for user feedback, which is documented separately in references/api.md.
Install Mechanism
There is no install spec (instruction-only), and the included Python script uses standard libraries to call the external API. Nothing is downloaded or extracted during install, so there is low disk-write/install risk.
Credentials
The code and API docs require a single API credential (LINKFOXAGENT_API_KEY) passed in the Authorization header — this is proportionate to calling an external API. The problem is the registry metadata did not declare this required env var or a primary credential, causing a mismatch between what the skill claims it needs and what it actually uses. Also note that any refResultData (product details and image URLs) will be transmitted to the external domain; ensure the API key and data-sharing policy are acceptable.
Persistence & Privilege
always is false and the skill does not request persistent system privileges or modify other skills. disable-model-invocation is default (agent may invoke autonomously), which is normal; there is no evidence the skill tries to persist credentials or change platform-wide settings.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install linkfox-multimodal-product-similarity
  3. After installation, invoke the skill by name or use /linkfox-multimodal-product-similarity
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release
Metadata
Slug linkfox-multimodal-product-similarity
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Multimodal Product Similarity?

多模态产品图片相似度分析与分组。当用户提到产品图片相似度、视觉分组、查找外观相似的商品、基于图片去重、竞品同款检测、同款商品聚类、按外观分组、image similarity, product image comparison, visual clustering, same-style recognition,... It is an AI Agent Skill for Claude Code / OpenClaw, with 77 downloads so far.

How do I install Multimodal Product Similarity?

Run "/install linkfox-multimodal-product-similarity" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Multimodal Product Similarity free?

Yes, Multimodal Product Similarity is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Multimodal Product Similarity support?

Multimodal Product Similarity is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Multimodal Product Similarity?

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

💬 Comments