name: workshop-session-5-report description: VOC虾工作坊 Session 5 — 虾交作业(最终报告) version: 2.2.0 session: 5 prevSession: workshop-session-4-deep.md
前置依赖:必须先加载
workshop-global-rules.md
workshop-progress.json 中 session-4.status。如果为 awaitingCalibration,禁止开始 Session 5,必须先等待用户回复 Session 4 的校准问题。stage-1~4-output.json 全部存在calibration-notes.json 全部 session 校准已记录calibration-notes._forwardPassSummary → 全量校准摘要_goalAlignment 和 _anomalies → 目标进度 + 异常汇总这是最终报告,必须整合所有前置校准:
_forwardPassSummary — 获取用户的全部校准意见摘要proposalEmphasis: 用户希望报告重点强调的内容proposalDeemphasis: 用户认为不重要或误判的内容userDefinedPriority: 用户自定义的优先级(覆盖算法排序)_anomalies — 将跨阶段的异常发现整合为报告中的"意外发现"章节虾:📝 最终阶段:成果整合 + 报告生成
━━━━━━━━━━━━━━━━━━━━
到了交作业的时候了!我要做两件事:
① 生成《VOC产品优化提案》(11章节)
② 生成13屏可演示HTML报告
{{#if forwardPassSummary.totalCorrections > 0}}
📝 在生成报告之前,让我确认一下你之前的校准意见:
{{#each forwardPassSummary.keyAdjustments}}
• {{this}}
{{/each}}
{{#if forwardPassSummary.pendingUncertainties.length > 0}}
⚠️ 还有这些待确认的项,你现在想确认一下吗?
{{#each forwardPassSummary.pendingUncertainties}}
• {{this}}
{{/each}}
{{/if}}
{{/if}}
我会把前面4个阶段的所有数据 + 你的校准意见整合起来。
Step 5.1: voc-proposal(
categoryLandscape = stage-1-output,
brandProfile = stage-2-output.brandProfile,
competitorData = stage-2-output.{discovery + comparison + pricing + vulnerabilities},
vocSentiment = stage-3-output.{voiceClassification + brandVsCompetitor + keywordCloud},
vocDeepAnalysis = stage-4-output.{painPointInsight + highlightInsight + featureSatisfaction + scenarioDashboard},
socialVocData = stage-4-output.{socialTrend + competitorBsr} || null,
userPersona = stage-4-output.userPersona,
brandName = brand-context.brandName,
categoryKeyword = brand-context.categoryKeywords[0],
calibrationNotes = memory/calibration-notes.json
)
→ 输出: proposal (11章节提案 + actionableInsights + overallHealthScore + ROI + 30天行动线)
Step 5.2: html-report-generator(
industryName = 从categoryKeywords推断,
coverBrandEnglish = brand-context.brandName,
reportDate = 当前日期,
categoryLandscape = stage-1-output,
competitorData = stage-2-output,
vocSentiment = stage-3-output (情感+关键词),
vocDeepAnalysis = stage-4-output (痛点+亮点+功能+场景),
socialVocData = stage-4-output.{socialTrend + competitorBsr} || null,
userPersona = stage-4-output.userPersona,
actionableInsights = step5.1 output.actionableInsights,
overallHealthScore = step5.1 output.overallHealthScore,
reportSections = ["cover", "executive-summary", "category-landscape", "brand-profile",
"competitor-matrix", "voc-voice-classification", "voc-pain-point-insight",
"voc-highlight-selling-points", "voc-feature-satisfaction", "voc-scenario-dashboard",
"user-persona", "action-plan", "roi-estimate"]
)
→ 输出: HTML报告文件(13屏)
虾:📋 《{{brandName}} VOC产品优化提案》生成完毕!
━━━━━━━━━━━━━━━━━━━━
🎯 综合健康度评分:{{overallHealthScore.total}}/100
┌──────────────────────────────────┐
│ 市场定位 {{marketPosition}}/100
│ 产品质量 {{productQuality}}/100
│ 客户满意度 {{customerSatisfaction}}/100
│ 竞争优势 {{competitiveAdvantage}}/100
│ 增长潜力 {{growthPotential}}/100
└──────────────────────────────────┘
📊 VOC 深度洞察摘要
• 情感健康分:{{voiceSentimentScore}}/100
• 严重痛点:{{painPointCriticalCount}} 个
• 功能平均满足率:{{featureAvgSatisfaction}}%
• 场景覆盖率:{{scenarioCoverageRate}}%
• 品牌vs竞品差距:{{brandVsCompetitorGap}}分
━━━━━━━━━━━━━━━━━━━━
提案结构(13屏完整报告):
━━━━━━━━━━━━━━━━━━━━
📄 封面 + 执行摘要
第一章 品类全景 — 市场规模${{revenue}},健康度{{healthScore}}/100
第二章 品牌六维画像 — 综合得分{{brandScore}}/100,雷达图
第三章 竞品对比矩阵 — {{vulnCount}}个可利用的竞品漏洞
第四章 用户声音分类 — 情感健康分{{sentimentScore}}/100
第五章 痛点深度洞察 — {{criticalPainPoints}}个严重痛点+权重排行
第六章 卖点植入方案 — 亮点→Listing建议+竞品对比
第七章 功能满足度 — 四象限矩阵+{{gapCount}}个功能缺口
第八章 使用场景看板 — {{scenarioCount}}个场景+失败预警
第九章 用户画像 — {{personaCount}}类核心用户
第十章 行动计划 — P0/P1/P2优先级+30天时间线
第十一章 ROI估算 — 投入产出对比
🎯 优先行动项(Top 5)
{{#each actionableInsights.topActions slice=5}}
{{priority}} {{suggestion}}
场景:{{scenario}} | 功能:{{feature}}
预期影响:{{expectedImpact}} | 投入:{{investmentLevel}}
见效周期:{{timeToResult}}
{{/each}}
⚡ 快速见效(零/低投入)
{{#each quickWins}}
• {{this}}
{{/each}}
📈 战略投资(中长期高回报)
{{#each strategicInvestments}}
• {{this}}
{{/each}}
💰 ROI估算摘要:
• Listing优化:$0投入 → 转化率提升15-25%(即时)
• PPC广告:$30-50/日 → ACOS 20-30%(2-3周回本)
• 产品迭代:$5k-10k → 评分提升+差评降低(60-90天)
HTML报告已生成(13屏),可在浏览器打开直接演示。
虾:🎯 老板,还记得你最初的问题吗:「{{workshopGoal}}」
经过两天5个阶段的全面分析,虾的最终回答是:
{{goalFullAnswer}}
{{#if unaddressedAspects.length > 0}}
⚠️ 有几个方面目前数据还不够充分:
{{#each unaddressedAspects}}
• {{this}}
{{/each}}
建议后续持续追踪。
{{/if}}
{{#if crossStageContradictions.length > 0}}
🔍 分析过程中发现的重要矛盾(已在报告中标注):
{{#each crossStageContradictions}}
• {{this}}
{{/each}}
{{/if}}
虾:老板,这是两天分析的最终成果。请你整体审阅一下:
1️⃣ 我对你问题「{{workshopGoal}}」的回答到位吗?
2️⃣ 11章节的内容和结论有没有明显偏差?
3️⃣ 30天行动计划的优先级排序合理吗?
4️⃣ 有没有想补充的战略方向?
你的反馈我会记录下来,作为提案的"老板批注"附在最后。
虾:🎉 恭喜!VOC虾工作坊全部完成!
📦 你的完整交付物清单:
━━━━━━━━━━━━━━━━━━━━
📊 阶段一:品类全景
✅ 《品类健康度评分》(四维雷达图)
✅ 《品类认知校准表》(含竞争格局分析)
✅ 《价格带分布 + 空白机会》
✅ 《搜索趋势报告》
🏷️ 阶段二:品牌+竞品
✅ 《品牌六维画像》(定价/评分/流量/销售/增长/口碑雷达图)
✅ 《单品深度诊断》(主力ASIN)
✅ 《竞品档案卡》× {{n}}个 + 竞品漏洞分析
✅ 《竞品六维对比矩阵》
✅ 《定价策略分析》(价格带+毛利估算)
💬 阶段三:评论采集+VOC初体验(Day1晚)
✅ 📥 结构化评论语料库({{totalReviews}}条,含品牌+竞品)
✅ 📊《情感分析报告》— 情感健康分+正/中/负分布
✅ 🔤《关键词情感地图》(正向/负向/中性/趋势)
✅ 🏷️《品牌vs竞品情感对比》
📊 阶段四:深度VOC+社媒+用户画像(Day2上午)
✅ ⚡《痛点深度洞察》— 显性+隐性+权重排行+关联分析
✅ ✨《卖点植入方案》— 亮点→Listing标题/Bullet/A+建议
✅ 📈《功能满足度看板》— 四象限矩阵+功能缺口
✅ 🎯《使用场景看板》— 高频/失败/新兴场景
✅ 《社媒趋势报告》(TikTok/Instagram/抖音)
✅ 📊《竞品BSR追踪》— 增长路径+风险预警
✅ 👤《用户画像手册》({{personaCount}}类画像+购买行为)
📋 阶段五:最终报告
✅ 《VOC产品优化提案》(11章节)
✅ 🎯 综合健康度评分(五维{{totalScore}}/100)
✅ 优先行动项(P0/P1/P2)+ 快速见效+战略投资
✅ 30天行动时间线 + ROI估算
✅ 《HTML可演示报告》(13屏完整报告)
━━━━━━━━━━━━━━━━━━━━
所有数据和报告都已保存在我的记忆中。
以后你随时可以叫我重新分析、更新数据、或者换一个品类再跑一遍。
虾会一直在这里,有问题随时叫我!🦐