Install
openclaw skills install @harrylabsj/amazon-listing-analyzer为中阶 Amazon 卖家提供 Listing 健康度诊断、关键词分析、竞品对标及结构化优化建议,助力提升销售表现。
openclaw skills install @harrylabsj/amazon-listing-analyzerAmazon Listing Analyzer 为 Amazon 卖家提供 Listing 健康度诊断、关键词研究和竞品对标分析,输出结构化的优化建议包。面向月销售额 $5k–$200k、1–5 年运营经验的中阶卖家。不依赖实时 API,所有数据基于内置规则库和模板生成。
用户通过对话发起以下类型的分析请求:
用户输入 → 解析意图(健康度评分 | 关键词分析 | 竞品对标 | 优化建议包)
→ 调用对应分析模块
→ 聚合结果 → 输出结构化报告
{
"intent": "health_score | keyword_analysis | competitor_benchmark | full_optimization",
"product_title": "string (optional)",
"bullet_points": ["string"] * 5 (optional)",
"product_description": "string (optional)",
"search_terms": "string (optional)",
"backend_keywords": "string (optional)",
"competitor_asin": "string (optional)",
"product_category": "string (optional)",
"product_features": ["string"] (optional)"
}
{
"status": "success | partial | error",
"module": "string",
"result": {
"health_score": {
"total": 0-100,
"dimensions": {
"title": {"score": 0-100, "issues": []},
"bullets": {"score": 0-100, "issues": []},
"description": {"score": 0-100, "issues": []},
"keywords": {"score": 0-100, "issues": []},
"compliance": {"score": 0-100, "issues": []}
},
"summary": "string"
},
"keyword_analysis": {
"matrix": [
{"keyword": "string", "volume": "string", "competition": "string", "relevance": 1-5}
],
"priority_keywords": ["string"],
"long_tail_keywords": ["string"]
},
"competitor_benchmark": {
"comparisons": [
{"dimension": "string", "you": "string", "competitor": "string", "opportunity": "string"}
],
"gaps": ["string"]
},
"optimization_package": {
"title": {"current": "string", "suggested": "string", "priority": "high|medium|low"},
"bullets": [{"current": "string", "suggested": "string", "priority": "string"}],
"description": {"current": "string", "suggested": "string", "priority": "string"},
"keywords": {"missing": [], "redundant": [], "suggested": []}
}
},
"errors": ["string"] (optional)
}
输入:
{"intent": "health_score", "product_title": "Premium Wireless Bluetooth Headphones with Noise Cancellation", "bullet_points": ["High quality sound", "30-hour battery life", "Comfortable fit", "Fast charging", "Foldable design"], "product_description": "Experience music like never before...", "search_terms": "wireless headphones bluetooth noise cancellation"}
输出:
{
"status": "success",
"module": "health_score",
"result": {
"health_score": {
"total": 72,
"dimensions": {
"title": {"score": 75, "issues": ["缺少核心关键词搜索量验证", "品牌词位置偏后"]},
"bullets": {"score": 70, "issues": ["卖点不够具体,缺少数据支撑"]},
"description": {"score": 68, "issues": ["缺少品牌故事和使用场景描述"]},
"keywords": {"score": 78, "issues": ["Search Terms 未充分利用"]},
"compliance": {"score": 90, "issues": []}
},
"summary": "Listing 健康度中等偏上,主要改进空间在标题关键词精准度和五点描述的具体性。"
}
}
}
输入:
{"intent": "keyword_analysis", "product_category": "Electronics > Headphones", "product_features": ["wireless", "noise cancellation", "bluetooth", "long battery life", "comfortable"]}
输出:
{
"status": "success",
"module": "keyword_analysis",
"result": {
"keyword_analysis": {
"matrix": [
{"keyword": "wireless headphones", "volume": "High", "competition": "High", "relevance": 5},
{"keyword": "bluetooth headphones", "volume": "High", "competition": "High", "relevance": 5},
{"keyword": "noise cancelling headphones", "volume": "High", "competition": "Medium", "relevance": 4},
{"keyword": "long battery life headphones", "volume": "Medium", "competition": "Low", "relevance": 4},
{"keyword": "comfortable headphones", "volume": "Medium", "competition": "Medium", "relevance": 3}
],
"priority_keywords": ["wireless headphones", "bluetooth headphones", "noise cancelling headphones"],
"long_tail_keywords": ["long battery life wireless headphones", "comfortable noise cancelling headphones"]
}
}
}
python3 handler.py 直接执行并输出有效 JSON 结果python3 tests/test_handler.py 至少 3 个测试用例全部通过skill.json 和 .claw/identity.json 字段齐全