调查设计Skill SurveyDesign

调查设计技能是一种专门用于产品验证和用户研究的工具,能够设计和分析各类调查问卷,如产品市场契合度、净推荐值、功能验证等。它通过严谨的问卷设计、无偏见问题撰写、跳转逻辑优化以及深入的统计分析,帮助产品团队收集结构化用户反馈,计算统计置信度,进行用户细分分析,并从中提炼出可执行的洞察与建议,以驱动产品决策和优化。关键词:调查问卷设计,用户研究,产品验证,统计分析,PMF,NPS,CSAT,数据洞察,反馈收集。

用户研究 0 次安装 4 次浏览 更新于 2/25/2026

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
});

依赖项

  • 调查平台集成
  • 统计分析库