利益相关者沟通Skill StakeholderCommunication

利益相关者沟通技能是一款专门用于为产品更新生成定制化沟通材料和演示文稿的AI工具。它能够根据不同的受众(如高管、销售团队、客户或内部员工)自动创建针对性的执行摘要、董事会报告、销售简报、客户公告、内部更新和FAQ文档。该技能支持多种格式输出,包括文档、演示文稿、电子邮件和Slack消息,并能调整沟通语气(正式、专业、随意或紧急)。通过集成产品开发流程,它帮助团队保持信息对齐,提升沟通效率,确保关键信息准确传达给所有利益相关者。关键词:利益相关者沟通、产品更新演示、执行摘要生成、销售简报模板、内部沟通工具、客户公告自动化、FAQ文档创建、团队对齐、沟通效率提升、产品发布沟通。

产品运营 1 次安装 6 次浏览 更新于 2/25/2026

名称: 利益相关者沟通 描述: 为产品更新生成针对特定利益相关者的沟通材料和演示文稿 允许使用的工具:

  • 读取
  • 写入
  • 全局搜索
  • 文本搜索
  • 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'
});

依赖项

  • 沟通模板
  • 演示文稿格式