name: 竞争情报 描述: 为产品战略提供深度竞争分析和市场监控能力 允许使用的工具:
- 网络搜索
- 网页抓取
- 读取
- 写入
- 全局搜索
- 文本搜索
- Bash命令
竞争情报技能
概述
专为深度竞争分析和市场监控而设计的技能。使产品团队能够保持对竞争对手活动的了解,识别市场机会,并为战略决策提供信息。
能力
核心分析功能
- 分析竞争对手网站、定价和定位
- 跟踪竞争对手功能发布和公告
- 生成功能对比矩阵
- 监控竞争对手评论和评级
- 提取竞争对手的优势和劣势
- 识别市场空白和蓝海机会
- 跟踪行业分析报告和提及
研究方法
- 竞争对手网站分析和抓取
- 定价结构对比
- 功能对等性评估
- 市场定位分析
- 为竞争对手编制SWOT分析
- 行业趋势监控
输出成果
- 竞争格局报告
- 功能对比矩阵
- 定价对比表
- 市场定位图
- 竞争作战卡
- 蓝海机会报告
- 行业趋势摘要
目标流程
此技能与以下流程集成:
competitive-analysis.js- 完整竞争分析工作流程的主要集成点product-vision-strategy.js- 战略定位和差异化product-launch-gtm.js- 产品发布时的竞争定位quarterly-roadmap.js- 市场机会识别
输入模式
{
"type": "object",
"properties": {
"competitors": {
"type": "array",
"items": { "type": "string" },
"description": "要分析的竞争对手名称或域名列表"
},
"analysisScope": {
"type": "string",
"enum": ["pricing", "features", "positioning", "full"],
"description": "竞争分析的范围"
},
"industryContext": {
"type": "string",
"description": "分析的行业或市场背景"
},
"focusAreas": {
"type": "array",
"items": { "type": "string" },
"description": "需要重点分析的具体领域"
}
},
"required": ["competitors", "analysisScope"]
}
输出模式
{
"type": "object",
"properties": {
"competitorProfiles": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": { "type": "string" },
"positioning": { "type": "string" },
"strengths": { "type": "array", "items": { "type": "string" } },
"weaknesses": { "type": "array", "items": { "type": "string" } },
"pricing": { "type": "object" },
"features": { "type": "array", "items": { "type": "string" } }
}
}
},
"featureMatrix": {
"type": "object",
"description": "跨竞争对手的功能对比矩阵"
},
"marketGaps": {
"type": "array",
"items": { "type": "string" },
"description": "已识别的市场机会和空白领域"
},
"recommendations": {
"type": "array",
"items": { "type": "string" },
"description": "基于分析的战略建议"
}
}
}
使用示例
const competitiveAnalysis = await executeSkill('competitive-intel', {
competitors: ['竞争对手A', '竞争对手B', '竞争对手C'],
analysisScope: 'full',
industryContext: 'B2B SaaS项目管理',
focusAreas: ['定价', '协作功能', '集成']
});
依赖项
- 网络抓取能力
- 新闻监控API
- 行业数据源