name: shop-comment-analysis description: 'This skill should be used when a user wants to analyze e-commerce product reviews/comments (e.g. 淘宝/京东/拼多多/抖音 买家评价、商品评论、买家秀) to turn raw review text into structured, analyzable insight. It runs a fixed six-step workflow: (1) data-quality check with a pause for user confirmation before any processing, (2) structured classification into an editable Excel master table, (3) buyer-persona and usage-scenario analysis with charts, (4) positive/negative attribution for word-of-mouth drivers and optimization opportunities, (5) competitor/reference-object mention analysis, and (6) a visualized HTML report. Trigger phrases include "分析评论", "评论分析", "用户评价分析", "买家评价", "电商评论", "口碑分析", "评价归因", "生成评价报告".' agent_created: true
把一份原始电商评论数据,按固定六步流程,转化为「可筛选编辑的 Excel 母表 + 可视化 HTML 分析报告」。 全流程贯穿三条铁律:
用户给出一份电商评论数据(Excel/CSV),并提出以下任一类意图时触发:
scripts/quality_check.py — 第一步自动质检,输出《数据质量检查表》+ quality_report.jsonscripts/build_master_table.py — 第二步把分类结果写成带下拉校验的 Excel 母表scripts/build_report.py — 第六步把全流程结论渲染为可视化 HTML 报告references/classification_schema.md — 第二~五步的字段口径、分类/情感标准、输出表结构references/report_spec.md — 第六步报告 JSON 结构与脚本调用方式执行各步前,按需读取对应 references 以确保口径一致。
不要立即分析或处理用户上传的数据。先对原始数据做质量检查:
bash
python scripts/quality_check.py <输入.xlsx|csv> --out <输出目录>若质检脚本未能识别到关键字段(如 评论内容/时间/规格 缺失),先用 Grep/Read 确认表头,必要时请用户说明列含义,不要强行推断。
基于用户确认的有效样本,对每条评论做结构化分类(口径见 references/classification_schema.md):
references/classification_schema.md 的别名表,中英文皆可)。bash
python scripts/build_master_table.py <分类结果.csv|json> --out 评价分析母表.xlsx
母表含「主分类/情感倾向」下拉校验、冻结首行、自动换行、筛选器。交付该 xlsx 给用户。基于母表,做买家身份与使用场景分析(口径见 references):
references/report_spec.md)。bash
python scripts/build_report.py analysis_result.json --out 用户评价分析报告.html这个Skill质量不错,专为电商评论分析设计,能自动做数据质检、结构化分类、情感分析、人群场景洞察,并生成带图表的分析报告和可编辑的Excel母表。最贴心的是第一步会先检查数据质量并等你确认后才处理,避免误删数据。所有结论都要求来自真实评论原文,分析结果可以追溯复查。主要不足是生成的图表需要联网才能正常显示,离线环境下只能看文字数据;另外分析竞品时需要人工判断,没有自动识别功能。总体适合需要对淘宝、京东等平台评论做系统分析的用户。