name: 调查设计 description: 为产品验证和用户研究设计和分析调查问卷 allowed-tools:
- Read
- Write
- Glob
- Grep
- Bash
调查设计技能
概述
专门用于产品验证的调查问卷设计和分析技能。使产品团队能够通过精心设计的调查问卷收集结构化反馈,并以统计严谨性解读结果。
能力
调查设计
- 设计产品市场契合度调查问卷(肖恩·埃利斯测试)
- 创建净推荐值调查问卷实施方案
- 构建功能验证调查问卷
- 生成调查问题库
- 设计新用户上手反馈调查问卷
- 创建流失用户退出调查问卷
问题设计
- 撰写无偏见的调查问题
- 设计适当的回答量表
- 创建跳转逻辑和分支
- 优化问题顺序
- 平衡问卷长度与完成率
分析
- 分析调查问卷响应数据
- 计算结果的统计置信度
- 按用户属性进行细分分析
- 识别响应模式和主题
- 从数据中生成可操作的见解
目标流程
此技能与以下流程集成:
product-market-fit.js- PMF调查问卷设计和分析beta-program.js- Beta参与者调查问卷customer-advisory-board.js- 客户咨询委员会反馈收集jtbd-analysis.js- 基于任务(Jobs-to-be-Done)的调查问题
输入模式
{
"type": "object",
"properties": {
"surveyType": {
"type": "string",
"enum": ["pmf", "nps", "csat", "feature-validation", "exit", "onboarding", "custom"],
"description": "要设计的调查问卷类型"
},
"objective": {
"type": "string",
"description": "调查问卷的主要目标"
},
"targetAudience": {
"type": "string",
"description": "目标调查对象"
},
"hypotheses": {
"type": "array",
"items": { "type": "string" },
"description": "需要通过调查验证的假设"
},
"maxQuestions": {
"type": "number",
"default": 10,
"description": "最大问题数量"
},
"responseData": {
"type": "array",
"description": "用于分析的调查问卷响应数据(如果分析现有调查问卷)"
}
},
"required": ["surveyType", "objective"]
}
输出模式
{
"type": "object",
"properties": {
"survey": {
"type": "object",
"properties": {
"title": { "type": "string" },
"introduction": { "type": "string" },
"questions": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": { "type": "string" },
"type": { "type": "string" },
"text": { "type": "string" },
"options": { "type": "array", "items": { "type": "string" } },
"required": { "type": "boolean" },
"logic": { "type": "object" }
}
}
},
"estimatedTime": { "type": "string" }
}
},
"analysisFramework": {
"type": "object",
"properties": {
"keyMetrics": { "type": "array", "items": { "type": "string" } },
"segmentationCriteria": { "type": "array", "items": { "type": "string" } },
"successThresholds": { "type": "object" }
}
},
"analysis": {
"type": "object",
"description": "如果提供了响应数据,则为分析结果",
"properties": {
"responseRate": { "type": "number" },
"keyFindings": { "type": "array", "items": { "type": "string" } },
"segmentInsights": { "type": "object" },
"statisticalConfidence": { "type": "object" },
"recommendations": { "type": "array", "items": { "type": "string" } }
}
}
}
}
使用示例
const survey = await executeSkill('survey-design', {
surveyType: 'pmf',
objective: '衡量新分析功能的产品市场契合度',
targetAudience: '至少使用过分析功能3次的活跃用户',
hypotheses: [
'用户认为分析功能对他们的工作流程有价值',
'如果该功能被移除,用户会感到失望'
],
maxQuestions: 8
});
依赖项
- 调查平台集成
- 统计分析库