名称: 利益相关者沟通 描述: 为产品更新生成针对特定利益相关者的沟通材料和演示文稿 允许使用的工具:
- 读取
- 写入
- 全局搜索
- 文本搜索
- Bash
利益相关者沟通技能
概述
专门用于生成针对特定利益相关者的沟通材料和演示文稿的技能。使产品团队能够创建针对不同受众的、能引起共鸣的定向沟通,并保持一致性。
能力
高管沟通
- 生成执行摘要
- 创建董事会级别的演示文稿
- 构建投资者更新模板
- 创建OKR进展报告
- 生成战略计划更新
销售与客户沟通
- 构建以销售为导向的功能简报
- 创建客户沟通材料
- 生成发布说明
- 构建功能公告模板
- 创建客户成功更新
内部沟通
- 生成内部发布公告
- 构建FAQ文档
- 创建状态更新模板
- 生成跨职能更新
- 构建团队对齐文档
演示文稿产出物
- 创建演示文稿大纲
- 生成要点提示
- 构建可视化数据摘要
- 创建演示脚本
- 生成问答准备文档
目标流程
此技能与以下流程集成:
stakeholder-alignment.js- 所有利益相关者沟通product-council-review.js- 评审演示文稿product-launch-gtm.js- 发布沟通quarterly-roadmap.js- 路线图演示
输入模式
{
"type": "object",
"properties": {
"communicationType": {
"type": "string",
"enum": ["executive-summary", "board-update", "sales-brief", "customer-announcement", "internal-update", "status-report", "faq"],
"description": "要生成的沟通类型"
},
"audience": {
"type": "string",
"enum": ["executive", "board", "sales", "customer", "engineering", "all-hands"],
"description": "目标受众"
},
"content": {
"type": "object",
"properties": {
"topic": { "type": "string" },
"keyPoints": { "type": "array", "items": { "type": "string" } },
"data": { "type": "object" },
"context": { "type": "string" }
}
},
"tone": {
"type": "string",
"enum": ["formal", "professional", "casual", "urgent"],
"default": "professional"
},
"format": {
"type": "string",
"enum": ["document", "presentation", "email", "slack"],
"default": "document"
}
},
"required": ["communicationType", "audience", "content"]
}
输出模式
{
"type": "object",
"properties": {
"communication": {
"type": "object",
"properties": {
"title": { "type": "string" },
"summary": { "type": "string" },
"body": { "type": "string" },
"keyTakeaways": { "type": "array", "items": { "type": "string" } },
"callToAction": { "type": "string" }
}
},
"presentation": {
"type": "object",
"properties": {
"slides": {
"type": "array",
"items": {
"type": "object",
"properties": {
"title": { "type": "string" },
"content": { "type": "string" },
"speakerNotes": { "type": "string" }
}
}
},
"talkingPoints": { "type": "array", "items": { "type": "string" } }
}
},
"faq": {
"type": "array",
"items": {
"type": "object",
"properties": {
"question": { "type": "string" },
"answer": { "type": "string" },
"audience": { "type": "string" }
}
}
},
"metadata": {
"type": "object",
"properties": {
"recommendedChannels": { "type": "array", "items": { "type": "string" } },
"timing": { "type": "string" },
"followUp": { "type": "array", "items": { "type": "string" } }
}
}
}
}
使用示例
const communication = await executeSkill('stakeholder-comms', {
communicationType: 'executive-summary',
audience: 'executive',
content: {
topic: '第一季度产品回顾',
keyPoints: [
'发布了3个主要功能',
'NPS提升了15分',
'按计划实现年度经常性收入目标'
],
data: {
featuresLaunched: 3,
npsChange: 15,
arrProgress: 0.85
}
},
tone: 'professional',
format: 'presentation'
});
依赖项
- 沟通模板
- 演示文稿格式