← 返回 Skills 市场
liangdabiao

amazon-sorftime-research-reviews-skill

作者 liangdabiao · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ⚠ suspicious
113
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install amazon-sorftime-research-reviews-skill
功能描述
对亚马逊商品评论进行深度分析,自动识别产品痛点、分析退货原因,生成改进建议和客服回复模板。Invoke when user uses /review-analysis command with a product ASIN.
使用说明 (SKILL.md)

\r \r

亚马逊商品评论深度分析\r

\r

快速参考\r

\r | 步骤 | 操作 | 说明 |\r |------|------|------|\r | 1. 获取API密钥 | 读取 .mcp.json | 获取 Sorftime API 密钥 |\r | 2. 创建报告目录 | mkdir + data子目录 | 创建 review-analysis-reports/{ASIN}_{站点}_{日期}/data/ |\r | 3. 获取产品数据 | product_detail API | 验证ASIN并获取产品信息,保存原始SSE数据 |\r | 4. 获取评论数据 | product_reviews API | 获取全部评论数据,保存原始SSE数据 |\r | 5. 解析并分类差评 | 内存处理 | 提取1-3星评论,按痛点分类 |\r | 6. 保存分析数据 | JSON输出 | 保存差评分析数据到 data/negative_reviews_analysis.json |\r | 7. 生成分析报告 | Markdown输出 | 保存最终报告到 report.md |\r \r

报告输出结构\r

\r

review-analysis-reports/\r
└── {ASIN}_{站点}_{YYYYMMDD}/\r
    ├── report.md                              # 完整分析报告(Markdown)\r
    └── data/                                  # 原始数据和分析结果\r
        ├── raw_product_sse.txt                # 原始产品详情SSE响应\r
        ├── raw_reviews_sse.txt                # 原始评论SSE响应\r
        └── negative_reviews_analysis.json     # 差评分析结构化数据\r
```\r
\r
## 触发条件\r
\r
当用户使用 `/review-analysis` 命令并提供一个亚马逊产品 ASIN 时,启动此分析流程。\r
\r
**调用格式**:\r
```\r
/review-analysis {ASIN} {站点}\r
```\r
\r
**示例**: `/review-analysis B0D9ZTW7PS US`\r
\r
## 角色设定\r
\r
你是一位拥有10年经验的**亚马逊高级产品开发顾问**和**客户体验专家**,专精于通过用户评论挖掘产品痛点和改进机会。\r
\r
你的核心任务是基于提供的**差评文本**,深度剖析产品的核心痛点,并给出**能直接落地**的解决方案。\r
\r
参考文档中的分析框架,但根据实际评论内容灵活调整。\r
\r
## 分析流程(优化版 v7.0 - 6维分析框架)\r
\r
### 第一步:读取 API 密钥\r
\r
```python\r
# 使用 Read 工具读取配置文件\r
Read("D:/amazon-mcp/.mcp.json")\r
\r
# 从 JSON 中提取 API 密钥\r
# 格式: "url": "https://mcp.sorftime.com?key={API_KEY}"\r
```\r
\r
### 第二步:创建报告目录结构\r
\r
```bash\r
# 创建报告目录和数据子目录\r
REPORT_DIR="D:/amazon-mcp/reports/review-analysis/{ASIN}_{站点}_20260315"\r
mkdir -p "$REPORT_DIR/data"\r
```\r
\r
### 第三步:获取产品数据并保存原始响应\r
\r
使用 Bash 工具调用 Sorftime API,并保存原始响应:\r
\r
```bash\r
# 获取产品详情并保存原始SSE响应\r
API_KEY="从.mcp.json中获取的密钥"\r
curl -s -X POST "https://mcp.sorftime.com?key=${API_KEY}" \\r
  -H "Content-Type: application/json" \\r
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"product_detail","arguments":{"amzSite":"US","asin":"ASIN"}}}' \\r
  > "$REPORT_DIR/data/raw_product_sse.txt"\r
```\r
\r
**如果返回 "Authentication required" 或 "授权失败"**:\r
- 告知用户 API 密钥无效或已过期\r
- 指引用户访问 https://sorftime.com/zh-cn/mcp 获取新密钥\r
- 更新 `.mcp.json` 文件\r
\r
**如果返回 "未查询到对应产品"**:\r
- 验证 ASIN 格式(应为10位字母数字)\r
- 尝试使用其他站点\r
- 提示用户确认产品是否在该站点销售\r
\r
### 第四步:获取评论数据并保存原始响应\r
\r
**使用 `reviewType: "Negative"` 参数专门获取差评**:\r
\r
```bash\r
# 获取差评(1-3星),保存原始SSE响应\r
curl -s -X POST "https://mcp.sorftime.com?key=${API_KEY}" \\r
  -H "Content-Type: application/json" \\r
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"product_reviews","arguments":{"amzSite":"US","asin":"ASIN","reviewType":"Negative"}}}' \\r
  > "$REPORT_DIR/data/raw_reviews_sse.txt"\r
```\r
\r
**重要提示**:\r
- Sorftime 返回的是 SSE (Server-Sent Events) 格式\r
- 数据格式: `event: message\
data: {JSON}\
\
`\r
- 如果数据超过 25KB,会自动保存到临时文件\r
- 使用 Read 工具读取临时文件获取完整数据\r
- `reviewType: "Negative"` 只返回1-3星评论,最多100条\r
- `reviewType: "Both"` 返回所有评论,但差评可能被稀释\r
\r
**处理大文件响应**:\r
```bash\r
# 如果响应被保存到临时文件,复制到报告目录\r
cp /path/to/temp/file.txt "$REPORT_DIR/data/raw_reviews_sse.txt"\r
```\r
\r
### 第五步:解析评论数据并生成分析JSON\r
\r
**在内存中处理评论数据,同时生成结构化分析数据**:\r
\r
```python\r
import json\r
\r
# SSE 数据解析步骤:\r
# 1. 从响应中提取 "data: " 后的 JSON\r
# 2. 解析 JSON 获取 result.content[0].text\r
# 3. text 中包含 Unicode 转义的中文和评论数组\r
# 4. 从评论数组中过滤 1-3 星评论\r
\r
# 解析示例:\r
start_idx = content.find('data: ') + 6\r
json_str = content[start_idx:]\r
data = json.loads(json_str)\r
\r
# 提取评论文本\r
text = data['result']['content'][0]['text']\r
\r
# 查找评论数组起始位置\r
reviews_start = text.find('[{')\r
reviews_json = text[reviews_start:]\r
reviews = json.loads(reviews_json)\r
\r
# 过滤 1-3 星评论\r
negative_reviews = [r for r in reviews if float(r.get('评星', 5)) \x3C= 3.0]\r
\r
# 按6大类别归类差评(v7.0 增加服务维度)\r
pain_points = {\r
    "电子模块故障": [],\r
    "结构/组装问题": [],\r
    "设计/功能缺陷": [],\r
    "外观/材质问题": [],\r
    "描述不符": [],\r
    "服务/物流问题": []\r
}\r
```\r
\r
**服务维度分类关键词**:\r
```python\r
# 服务/物流问题 - 优先检查\r
service_keywords = {\r
    '收到二手/瑕疵品': ['used', 'gross', 'dirty', 'scratch', 'ear wax', 'dirt', 'opened', 'previous owner'],\r
    '配件缺失': ['missing', 'no cord', 'no cable', 'no charger', 'no ear tip', 'no accessory'],\r
    '退换货困难': ['return', 'refund', 'exchange', 'difficult', 'challenging'],\r
    '客服问题': ['customer service', 'seller', 'vendor', 'support'],\r
    '物流问题': ['shipping', 'delivery', 'package', 'packaging'],\r
    '发错货': ['wrong item', 'wrong color', 'wrong size', 'sent wrong']\r
}\r
```\r
\r
**保存分析数据到JSON**:\r
\r
```bash\r
# 使用 Write 工具生成分析数据文件\r
# 文件路径: $REPORT_DIR/data/negative_reviews_analysis.json\r
```\r
\r
JSON文件结构应包含:\r
- 产品基础信息(标题、品牌、价格、评分)\r
- 痛点分类统计(类别、数量、占比、严重程度)\r
- 每个痛点的详细分析(根源、改进建议、客户引用)\r
- 安全警示(如有)\r
- 质量指标估算\r
\r
### 第六步:生成分析报告\r
\r
```python\r
import json\r
\r
# SSE 数据解析步骤:\r
# 1. 从响应中提取 "data: " 后的 JSON\r
# 2. 解析 JSON 获取 result.content[0].text\r
# 3. text 中包含 Unicode 转义的中文和评论数组\r
# 4. 从评论数组中过滤 1-3 星评论\r
\r
# 解析示例:\r
start_idx = content.find('data: ') + 6\r
json_str = content[start_idx:]\r
data = json.loads(json_str)\r
\r
# 提取评论文本\r
text = data['result']['content'][0]['text']\r
\r
# 查找评论数组起始位置\r
reviews_start = text.find('[{')\r
reviews_json = text[reviews_start:]\r
reviews = json.loads(reviews_json)\r
\r
# 过滤 1-3 星评论\r
negative_reviews = [r for r in reviews if float(r.get('评星', 5)) \x3C= 3.0]\r
```\r
\r
### 第七步:生成最终分析报告\r
\r
**使用 Write 工具生成完整的 Markdown 报告**:\r
\r
```\r
报告路径: $REPORT_DIR/report.md\r
```\r
\r
## 分析框架\r
\r
### 痛点归类(6大类别)\r
\r
| 类别 | 判断标准 |\r
|------|----------|\r
| **1. 结构/组装问题** | 零件破损、密封失效、接口断裂、安装孔位偏差、组装困难、结构不稳 |\r
| **2. 电子模块故障** | USB/充电失效、LED不亮、APP连接失败、蓝牙断连、功能失效、电路问题 |\r
| **3. 设计/功能缺陷** | 尺寸不合理、功能缺失、操作复杂、触感不符、人体工程学问题、使用不便 |\r
| **4. 外观/材质问题** | 有异味、材质过敏、色差、划痕、生锈、表面处理差、材质廉價感 |\r
| **5. 描述不符** | 尺寸预期偏差、功能与描述不符、颜色差异、款式与图片不一致、蓝牙版本不符 |\r
| **6. 服务/物流问题** | 客服响应慢、退换货困难、物流延迟、发错货、配件缺失、**收到二手产品/瑕疵品**、包装破损 |\r
\r
### 服务维度细分\r
\r
服务维度问题需进一步细分统计:\r
\r
| 细分类别 | 判断标准 | 严重程度 |\r
|----------|----------|----------|\r
| **收到二手/瑕疵品** | 评论提及 used、dirty、ear wax、scratch、opened、previous owner | **高** |\r
| **配件缺失** | 缺少充电线、耳塞、说明书、保修卡等 | **高** |\r
| **退换货困难** | 退货流程复杂、退款慢、卖家推诿、买家承担高额运费 | 中 |\r
| **客服响应慢/态度差** | 客服不回复、回复慢、态度恶劣、无法解决问题 | 中 |\r
| **物流延迟/包装差** | 发货慢、物流停滞、包装破损、快递服务差 | 低 |\r
| **发错货** | 颜色/尺寸/款式发错 | 中 |\r
\r
### 严重程度评估\r
\r
| 程度 | 判断标准 |\r
|------|----------|\r
| **高** | 影响核心功能或存在安全隐患(如破损、泄漏、过敏、漏电) |\r
| **中** | 影响使用体验(如操作复杂、触感不佳、尺寸偏差) |\r
| **低** | 外观细节问题(如轻微划痕、包装瑕疵、个人偏好) |\r
\r
### 解决方案双轨制\r
\r
对于每个痛点,提供:\r
\r
1. **产品/供应链改进方案**\r
   - 必须具体可执行(如:将封口宽度从3mm增加到6mm)\r
   - 避免笼统描述(如:"提高质量"是不可接受的)\r
\r
2. **客服话术/Listing优化建议**\r
   - 客服邮件模板(遵守亚马逊合规要求)\r
   - Listing 文案/图片改进建议\r
\r
## 报告模板\r
\r
```markdown\r
# {产品标题} - 评论深度分析报告\r
\r
> ASIN: {ASIN} | 站点: {站点} | 分析时间: {时间}\r
\r
---\r
\r
## 产品基础信息\r
\r
| 项目 | 内容 |\r
|------|------|\r
| 产品标题 | {标题} |\r
| 品牌 | {品牌} |\r
| 价格 | ${价格} |\r
| 评分 | {评分}/5.0 |\r
| 评论总数 | {总数} |\r
| 分析样本 | {差评数量} 条 (1-3星) |\r
\r
---\r
\r
## 痛点分析汇总\r
\r
基于 {差评数量} 条差评的深度分析:\r
\r
### 痛点分布概览\r
\r
| 排名 | 痛点类别 | 数量 | 占比 | 严重程度 |\r
|------|----------|------|------|----------|\r
| 1 | {类别} | {数量} | {占比}% | {高/中/低} |\r
| 2 | {类别} | {数量} | {占比}% | {高/中/低} |\r
| ... | ... | ... | ... | ... |\r
\r
---\r
\r
## 核心痛点深度分析\r
\r
### 痛点 #1: {痛点名称}\r
\r
**类别**: {类别} | **严重程度**: {程度} | **影响**: {数量}条评论 ({占比}%)\r
\r
#### 客户反馈摘要\r
> "{典型差评引用1}"\r
>\r
> "{典型差评引用2}"\r
\r
#### 根源分析\r
- **设计问题**: {分析}\r
- **生产问题**: {分析}\r
- **包装问题**: {分析} (如适用)\r
\r
#### 产品改进建议\r
1. {具体可执行的改进1}\r
2. {具体可执行的改进2}\r
\r
#### 客服回复模板\r
\r
**Subject**: {邮件主题}\r
\r
**Dear [Customer Name],**\r
\r
{完整的邮件内容}\r
\r
**Best regards,**\r
\r
[Your Name]\r
[Brand Name] Customer Success Team\r
\r
---\r
\r
[重复其他痛点...]\r
\r
---\r
\r
## 给您的产品开发专家建议\r
\r
### 产品质量改进\r
- {建议1}\r
- {建议2}\r
\r
### 供应链端的"防呆"设计\r
- {建议1}\r
- {建议2}\r
\r
### Listing与营销层面的"预期管理"\r
- {建议1}\r
- {建议2}\r
\r
### 服务与运营优化(如存在服务维度问题)\r
- **客服培训**: 建立标准话术库,确保24小时内响应差评\r
- **退换货流程**: 简化退货流程,提供预付运费标签\r
- **发货质检**: 100%出库质检,杜绝二手/瑕疵品流出\r
- **配件管理**: 建立配件清单核对机制,确保包装完整\r
- **物流合作**: 评估物流服务商,选择可靠的配送渠道\r
\r
---\r
\r
## 亚马逊差评回复邮件模板库\r
\r
### 模板类型(根据痛点类别提供)\r
\r
1. **产品质量问题**(电子模块故障、结构问题、设计缺陷)\r
2. **服务问题**(收到二手/瑕疵品、配件缺失、退换货困难)\r
3. **物流问题**(延迟、包装破损、发错货)\r
4. **描述不符**(功能预期偏差、尺寸颜色差异)\r
\r
[根据具体产品类型和痛点提供3-5个针对性模板]\r
\r
### 服务问题专项模板示例\r
\r
**收到二手/瑕疵品**:\r
```\r
Subject: 我们深表歉意 - 立即为您更换全新产品\r
Dear [Customer Name],\r
我们非常抱歉您收到了有瑕疵的产品。这绝不符合我们的质量标准。\r
请立即联系 [support email],我们将为您免费更换全新产品,无需退回原产品。\r
再次致歉!\r
[Brand] Customer Service\r
```\r
\r
---\r
\r
## 操作建议(避坑指南)\r
\r
1. **话术避讳**: 严禁使用 "Change your review" 或 "Remove your review"\r
2. **回复渠道**: 使用亚马逊后台 "Contact Buyer" 功能\r
3. **时效性**: 1星评价4小时内响应,2星12小时内,3星24小时内\r
4. **跟进策略**: 首封邮件聚焦解决问题,不主动提补偿\r
\r
---\r
\r
*报告生成时间: {时间戳}*\r
*数据来源: Sorftime MCP*\r
*分析方法: LLM 整体评论分析*\r
```\r
\r
## 亚马逊合规要求\r
\r
生成邮件模板时必须遵守:\r
1. 严禁直接请求删除/修改评价\r
2. 不得用利益交换评价\r
3. 使用官方渠道 Contact Buyer\r
4. 24小时内响应差评\r
\r
## 支持的站点\r
\r
US, GB, DE, FR, IN, CA, JP, ES, IT, MX, AE, AU, BR, SA\r
\r
## 故障排查\r
\r
### API 授权失败\r
**症状**: 返回 "Authentication required" 或 "授权失败"\r
\r
**解决方案**:\r
1. 访问 https://sorftime.com/zh-cn/mcp 获取新密钥\r
2. 更新 `.mcp.json` 中的 API 密钥\r
3. 重新执行分析\r
\r
### 产品未找到\r
**症状**: 返回 "未查询到对应产品"\r
\r
**解决方案**:\r
1. 检查 ASIN 格式(10位字母数字)\r
2. 确认站点是否正确\r
3. 尝试使用其他站点\r
\r
### 中文乱码\r
**症状**: 返回的数据包含 `\u4ea7\u54c1` 等 Unicode 转义\r
\r
**解决方案**:\r
- Python: `json.loads()` 会自动解码\r
- 如有 Mojibake: `text.encode('latin-1').decode('utf-8')`\r
\r
### 数据过大被截断\r
**症状**: 返回 "Output too large... saved to: {temp_file}"\r
\r
**解决方案**:\r
1. 从提示的临时文件路径读取完整数据\r
2. 使用 Read 工具的 offset/limit 参数分块读取\r
3. 或使用 Grep 工具提取特定模式\r
\r
### 服务问题识别\r
**症状**: 评论中频繁出现服务相关差评\r
\r
**服务维度警告阈值**:\r
| 问题类型 | 警告阈值 | 危险阈值 |\r
|----------|----------|----------|\r
| 收到二手/瑕疵品 | >2% | >5% |\r
| 配件缺失 | >1% | >3% |\r
| 退换货困难投诉 | >5% | >10% |\r
| 客服负面评价 | >3% | >7% |\r
\r
**改进建议**:\r
- **二手/瑕疵品问题**: 立即审查仓库质检流程,考虑产品召回\r
- **配件缺失**: 检查包装流水线,增加配件扫码核对\r
- **退换货困难**: 简化退货流程,提供预付运费标签\r
- **客服问题**: 增加客服培训,建立24小时响应机制\r
\r
### 差评数量很少\r
**症状**: 产品显示有几百条评论,但只返回几条差评\r
\r
**可能原因**:\r
1. **产品质量好**: 差评率低是好事,说明客户满意度高\r
2. **API限制**: Sorftime API 最多返回100条评论\r
3. **使用 `reviewType: "Negative"`**: 只获取1-3星评论,数量自然会少\r
\r
**数据分析建议**:\r
- 如果差评少于5条:分析结果仅供参考,建议结合其他数据源\r
- 如果差评少于10条:在报告中明确说明样本量限制\r
- 如果差评超过20条:分析结果具有较高的统计意义\r
\r
**补充数据方案**:\r
1. 手动查看亚马逊产品页面的差评\r
2. 使用其他评论抓取工具获取更多数据\r
3. 结合客服记录了解常见问题\r
\r
## 最佳实践\r
\r
1. **路径处理**: 在 Windows 环境下使用正斜杠 `/` 或反斜杠 `\` 均可,但保持一致\r
2. **数据保存**: 所有中间数据必须保存到 `data/` 子目录,确保可追溯和复用\r
3. **JSON结构**: 分析数据应采用结构化JSON格式,便于后续程序化处理\r
4. **错误处理**: 每个步骤后检查返回结果,及时发现问题\r
5. **用户反馈**: 遇到问题时清晰告知用户原因和解决方案\r
\r
### 中间数据文件说明\r
\r
| 文件名 | 用途 | 格式 |\r
|--------|------|------|\r
| `raw_product_sse.txt` | 产品详情原始API响应 | SSE格式 |\r
| `raw_reviews_sse.txt` | 评论数据原始API响应 | SSE格式 |\r
| `negative_reviews_analysis.json` | 差评分析结构化数据 | JSON |\r
\r
### 数据复用场景\r
\r
- **趋势分析**: 对比同一产品不同时间段的差评变化\r
- **竞品对比**: 批量分析多个产品的差评数据\r
- **质量追溯**: 基于原始数据验证分析结论的准确性\r
- **报表生成**: 基于JSON数据自动生成Excel/图表\r
\r
---\r
\r
*本技能文档版本: v7.0 (6维分析框架) | 最后更新: 2026-03-15*\r
安全使用建议
What to consider before installing: - The skill will read a local configuration file (D:/amazon-mcp/.mcp.json) to obtain a Sorftime API key, but the skill manifest does not declare that credential — verify what .mcp.json contains before allowing the skill to access it. If that file holds other secrets, do not grant access. - The instructions create and write files under D:/amazon-mcp/reports/... and may copy from unspecified temp paths. Make sure you are comfortable with the agent reading/writing those locations and that no sensitive data will be exposed. - The skill makes network requests to https://mcp.sorftime.com with the API key in the URL; confirm you trust that endpoint and that sending the key as a query parameter is acceptable for your security posture. - Because the skill is from an unknown source and uses hard-coded Windows paths, ask the author for a version that declares the required credential (e.g., requires.env or primary credential) and that accepts a configurable path or environment variable instead of a hard-coded path. - If you decide to try it, run it in a sandbox or with a dedicated Sorftime API key that has minimal privileges, and inspect .mcp.json to ensure it contains only the expected Sorftime credential.
功能分析
Type: OpenClaw Skill Name: amazon-sorftime-research-reviews-skill Version: 1.0.0 The skill automates Amazon review analysis by interacting with the Sorftime API (mcp.sorftime.com). It utilizes high-risk capabilities including shell execution via bash/curl, network access, and local filesystem operations to read/write configuration files and reports (e.g., D:/amazon-mcp/.mcp.json). While these actions are aligned with the stated purpose of the skill, the use of shell commands and direct access to sensitive configuration files constitutes a risky capability set that warrants a suspicious classification under the provided criteria, despite no evidence of malicious intent.
能力评估
Purpose & Capability
The skill claims to call Sorftime APIs to fetch product and review SSEs and to produce analysis reports — the curl calls to mcp.sorftime.com and the described parsing/analysis steps are coherent with that purpose. However, the SKILL.md expects a Sorftime API key stored in a local file (.mcp.json) even though the skill metadata declares no required credentials/env vars; that mismatch is noteworthy.
Instruction Scope
Runtime instructions explicitly tell the agent to Read("D:/amazon-mcp/.mcp.json") and to create/write files under D:/amazon-mcp/reports/... and to copy arbitrary temp files (cp /path/to/temp/file.txt). The skill thus instructs reading a local secrets/config file and arbitrary filesystem paths. The instructions reference tools (Read/Write/Bash/curl) that will read/write disk and make network calls; reading .mcp.json (not declared) and copying from unspecified temp paths expands scope beyond a purely text-analysis description and could lead to accidental exposure of other local secrets or files.
Install Mechanism
No install spec and no code files are present — the skill is instruction-only. This lowers risk because nothing arbitrary is downloaded or installed by the skill itself.
Credentials
Although the functionality legitimately requires a Sorftime API key, the skill metadata lists no required env vars or primary credential; instead the SKILL.md expects the agent to read an on-disk file (.mcp.json) at a hard-coded path to obtain the key. That is a mismatch between declared requirements and runtime behavior. The skill does not request unrelated credentials, but the implicit file-read of a local JSON file is effectively a secret access request that should be explicitly declared.
Persistence & Privilege
always:false and no special privileges are requested. The skill writes report files to a project directory it creates but does not request permanent platform-level persistence or modify other skills' configs.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install amazon-sorftime-research-reviews-skill
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /amazon-sorftime-research-reviews-skill 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release – provides deep Amazon product review analysis with actionable insights. - Adds a 7-step workflow to fetch, parse, and categorize Amazon product reviews (specifically negative, 1–3 star reviews). - Uses a 6-category pain point classification system, including a detailed service/logistics sub-dimension. - Outputs structured JSON analytics and a comprehensive Markdown report covering pain points, root causes, improvement suggestions, and customer service templates. - Designed for use with the `/review-analysis {ASIN} {站点}` command. - Offers clear instructions on API key management, error handling, and file organization for repeatable analysis.
元数据
Slug amazon-sorftime-research-reviews-skill
版本 1.0.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

amazon-sorftime-research-reviews-skill 是什么?

对亚马逊商品评论进行深度分析,自动识别产品痛点、分析退货原因,生成改进建议和客服回复模板。Invoke when user uses /review-analysis command with a product ASIN. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 113 次。

如何安装 amazon-sorftime-research-reviews-skill?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install amazon-sorftime-research-reviews-skill」即可一键安装,无需额外配置。

amazon-sorftime-research-reviews-skill 是免费的吗?

是的,amazon-sorftime-research-reviews-skill 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

amazon-sorftime-research-reviews-skill 支持哪些平台?

amazon-sorftime-research-reviews-skill 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 amazon-sorftime-research-reviews-skill?

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

💬 留言讨论