← 返回 Skills 市场
linkfox-ai

Product Title Analyze

作者 linkfox-ai · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
87
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install linkfox-product-title-analyze
功能描述
对产品标题进行分词分析,提取词频、场景词、人群词、材质词等属性维度。当用户想分析产品标题、提取标题高频词、进行标题分词、发现场景词或人群词、对比不同商品的标题关键词用法、基于词频优化Listing标题、识别一组ASIN中的常见属性规律、title tokenization, word frequency anal...
使用说明 (SKILL.md)

Product Title Analyzer

This skill guides you on how to tokenize and analyze product titles from previously queried products, helping Amazon sellers extract keyword patterns, scene words, audience words, and other attribute dimensions from product listing titles.

Core Concepts

Product Title Analysis performs intelligent tokenization on product titles that have already been retrieved in the current conversation. It uses LLM-powered analysis to extract structured attributes (scene words, audience words, materials, colors, etc.) from free-text titles, then groups and counts them for pattern discovery.

Automatic data aggregation: The tool automatically collects products from all prior steps in the current conversation turn -- even across paginated queries. You do NOT need to manually pass product data unless you are referencing data from a previous conversation turn.

One dimension per request: Each call should analyze exactly ONE attribute dimension (e.g., scene words OR audience words). Do NOT request multiple dimensions in a single call.

Data Fields

Request Fields

Field API Name Required Description Example
Analysis Request tokenizationAndCountingRequest Yes Natural-language instruction describing which attribute dimension to extract from titles "Count scene words in product titles"
Output Mode outputMode No How multi-value attributes are returned. MULTIPLE_RECORDS (default): one record per value. COMMA_SEPARATED: all values in one record MULTIPLE_RECORDS
Reference Data refResultData No Externally supplied product data (only needed when referencing data from a previous conversation turn) (JSON string)

Response Fields -- Product Attributes

Field API Name Description Example
ASIN asin Product ASIN identifier B0XXXXXXXX
Product Title title Original product title Portable Camping Lantern...
Attribute Name attributeName Extracted attribute category Scene Word
Attribute Value attributeValue Extracted attribute value Outdoor / Camping
Price price Product price 29.99
Monthly Sales monthlySalesUnits Monthly unit sales 1200
Monthly Revenue monthlySalesRevenue Monthly sales revenue 35988
Rating rating Product rating 4.5
Rating Count ratings Number of ratings 3820
Available Date availableDate Listing date 2024-03-15
Brand brand Brand name BrandX
Image URL imageUrl Main product image https://...

Response Fields -- Attribute Groups

Field API Name Description
Attribute Name attributeName The attribute category for this group (e.g., "Scene Word")
Attribute Value attributeValue A specific value within the group (e.g., "Outdoor")
Count count Number of products sharing this attribute value
ASIN List asins List of ASINs that share this attribute value

Response Metadata

Field API Name Description
Render Type type UI rendering style
Columns columns Column definitions for table rendering
Source Type sourceType Data source type
Token Cost costToken Total LLM tokens consumed (input + output)

Parameter Guide

tokenizationAndCountingRequest Examples

The tokenizationAndCountingRequest parameter is a natural-language instruction telling the tool which dimension to analyze. Keep it focused on a single dimension.

Scene words (where / when the product is used)

Count scene words appearing in product titles

Audience / target-user words (who the product is for)

Count audience words appearing in product titles

Material words

Count material-related words appearing in product titles

Function / feature words

Count function or feature words appearing in product titles

Incorrect -- multiple dimensions in one request (do NOT do this)

Count scene words AND audience words in product titles

Split this into two separate calls instead.

outputMode

Value Behavior When to Use
MULTIPLE_RECORDS Each attribute value becomes its own record (default) Most analysis -- easier to count, sort, and group
COMMA_SEPARATED Multiple values stay in one record, comma-separated When you want to see all attributes per ASIN at a glance

Display Rules

  1. Present data in tables: Show extracted attributes and their frequencies in clear, sortable tables
  2. Highlight top keywords: Call out the most frequent attribute values so patterns are immediately visible
  3. Group summary first: When attributeGroups is returned, present the grouped summary before the per-product detail
  4. One dimension at a time: If the user wants multiple dimensions analyzed, run separate calls and present results sequentially
  5. Token cost awareness: The response includes costToken; do not display it unless the user asks about usage
  6. Error handling: If the tool returns an error, explain the reason and suggest corrective action (e.g., "No products found in current conversation -- please query products first")

Applicable Scenarios

User Says Scenario
"What scene words appear in these titles?" Scene-word extraction
"Analyze title keywords", "title word frequency" General title tokenization
"What audience are these products targeting?" Audience-word extraction
"Common materials in these listings" Material-word extraction
"Help me optimize my title based on competitors" Competitive title keyword analysis
"What words do top sellers use in titles?" High-frequency keyword discovery
"Group these products by title attributes" Attribute-based product grouping

Not Applicable Scenarios

  • No products queried yet: The tool requires products to already exist in the conversation context. Prompt the user to search for products first.
  • Advertising / PPC keyword suggestions: This tool analyzes existing titles, not ad keywords.
  • Full listing copywriting: This tool extracts and counts words; it does not generate new titles.
  • Backend search term analysis: This is for visible title analysis, not hidden search terms.
  • ABA search term data: Use the ABA Data Explorer skill instead.

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

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.

安全使用建议
Before installing: (1) Confirm you trust the LinkFox endpoints (tool-gateway.linkfox.com and skill-api.linkfox.com). The skill will aggregate prior-conversation product data (titles, ASINs, prices, images, etc.) and POST it to that external API. (2) The package omits declaring the required LINKFOXAGENT_API_KEY in its manifest even though both the helper script and the API docs require it — ask the publisher to add explicit env requirements and documentation. (3) If you have sensitive data, do not allow the skill to run on real product data until you verify privacy/retention policies for the remote service; test first with non-sensitive samples. (4) Consider disabling autonomous invocation for this skill or restricting its use, and only provide an API key with least privilege and monitoring if you decide to trust it. (5) If anything is unclear (who runs the service, what data is logged/retained), request those clarifications from the skill author before granting credentials.
功能分析
Type: OpenClaw Skill Name: linkfox-product-title-analyze Version: 1.0.0 The skill is a legitimate tool for Amazon product title analysis, extracting attributes like scene and audience keywords via the LinkFox API. The Python script (title_analyze.py) is a straightforward implementation using standard libraries to make POST requests to a documented endpoint (tool-gateway.linkfox.com), and the instructions in SKILL.md are well-aligned with the stated purpose without any signs of malicious intent or data exfiltration.
能力评估
Purpose & Capability
Name/description match the files: this is a product-title tokenization / word-frequency tool that calls an external API. However, the skill metadata declares no required environment variables while the included code and API reference expect an API key (LINKFOXAGENT_API_KEY). That mismatch is unexplained.
Instruction Scope
SKILL.md says the tool "automatically collects products from all prior steps in the current conversation" and the API/reference expect you to POST product data (or allow the skill to use conversation data). This means the skill will aggregate conversation content (titles, possibly prices, ASINs, images, sales metrics) and send it to https://tool-gateway.linkfox.com. There are no instructions to filter or redact sensitive fields before sending.
Install Mechanism
No install script or downloads; it's instruction-only plus a small helper script. Nothing on-disk is fetched from third-party URLs during installation.
Credentials
The helper script and API docs require LINKFOXAGENT_API_KEY for Authorization, but the skill metadata did not declare any required env vars or a primary credential. Requiring an API key for the remote service is reasonable for this purpose, but the omission in the manifest is an incoherence that could mislead users. Also, sending conversation/product metadata to an external service is a proportionality decision users should be aware of.
Persistence & Privilege
The skill is not always-enabled and does not request system config paths or persistent privileges. It does allow normal autonomous invocation (platform default), which increases blast radius if the skill is trusted, but that alone is not flagged here.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install linkfox-product-title-analyze
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /linkfox-product-title-analyze 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release
元数据
Slug linkfox-product-title-analyze
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Product Title Analyze 是什么?

对产品标题进行分词分析,提取词频、场景词、人群词、材质词等属性维度。当用户想分析产品标题、提取标题高频词、进行标题分词、发现场景词或人群词、对比不同商品的标题关键词用法、基于词频优化Listing标题、识别一组ASIN中的常见属性规律、title tokenization, word frequency anal... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 87 次。

如何安装 Product Title Analyze?

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

Product Title Analyze 是免费的吗?

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

Product Title Analyze 支持哪些平台?

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

谁开发了 Product Title Analyze?

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

💬 留言讨论