用户画像开发技能Skill PersonaDevelopment

用户画像开发技能是一种专门用于从用户研究数据中创建、管理和应用数据驱动用户画像的工具。该技能通过分析访谈、调查、分析数据和用户反馈,生成详细的人口统计、心理统计和行为档案,帮助产品团队识别用户细分、定义待完成工作、映射产品功能优先级,并指导产品决策和营销策略制定。关键词:用户画像、用户研究、数据分析、产品定位、市场细分、JTBD、用户旅程、产品管理、营销策略、数据驱动决策。

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

name: 用户画像开发 description: 从研究数据创建和维护用户画像,用于产品目标定位 allowed-tools:

  • 读取
  • 写入
  • 全局搜索
  • 文本搜索
  • Bash

用户画像开发技能

概述

专门用于从研究数据创建和维护用户画像的技能。使产品团队能够开发丰富、数据驱动的用户画像,以指导产品决策和营销策略。

能力

画像创建

  • 从研究数据生成用户画像档案
  • 从分析数据中识别用户画像细分
  • 为每个画像创建待完成工作
  • 将访谈数据综合为用户画像属性
  • 定义人口统计和心理统计档案

画像管理

  • 用新的研究发现更新用户画像
  • 版本控制和跟踪用户画像演变
  • 根据行为数据验证用户画像
  • 识别新兴的用户画像细分
  • 淘汰过时的用户画像

画像应用

  • 将用户画像映射到产品功能
  • 计算用户画像TAM/SAM估算
  • 生成用户画像比较矩阵
  • 创建基于用户画像的用户旅程
  • 按用户画像影响优先级排序功能

目标流程

此技能与以下流程集成:

  • user-story-mapping.js - 基于用户画像的故事映射
  • jtbd-analysis.js - 每个画像的待完成工作分析
  • feature-definition-prd.js - PRD中的用户画像定位
  • product-launch-gtm.js - 基于用户画像的上市定位

输入模式

{
  "type": "object",
  "properties": {
    "mode": {
      "type": "string",
      "enum": ["create", "update", "analyze", "map"],
      "description": "操作模式"
    },
    "researchData": {
      "type": "object",
      "properties": {
        "interviews": { "type": "array", "items": { "type": "object" } },
        "surveys": { "type": "array", "items": { "type": "object" } },
        "analytics": { "type": "object" },
        "supportTickets": { "type": "array", "items": { "type": "object" } }
      },
      "description": "用于创建用户画像的研究数据源"
    },
    "existingPersonas": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": { "type": "string" },
          "name": { "type": "string" },
          "description": { "type": "string" },
          "attributes": { "type": "object" }
        }
      }
    },
    "segmentationCriteria": {
      "type": "array",
      "items": { "type": "string" },
      "description": "用户画像细分的标准"
    },
    "productFeatures": {
      "type": "array",
      "items": { "type": "string" },
      "description": "要映射到用户画像的功能"
    }
  },
  "required": ["mode"]
}

输出模式

{
  "type": "object",
  "properties": {
    "personas": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": { "type": "string" },
          "name": { "type": "string" },
          "tagline": { "type": "string" },
          "demographics": {
            "type": "object",
            "properties": {
              "role": { "type": "string" },
              "industry": { "type": "string" },
              "companySize": { "type": "string" },
              "experience": { "type": "string" }
            }
          },
          "psychographics": {
            "type": "object",
            "properties": {
              "goals": { "type": "array", "items": { "type": "string" } },
              "frustrations": { "type": "array", "items": { "type": "string" } },
              "motivations": { "type": "array", "items": { "type": "string" } },
              "behaviors": { "type": "array", "items": { "type": "string" } }
            }
          },
          "jobs": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "job": { "type": "string" },
                "importance": { "type": "string" },
                "currentSolution": { "type": "string" }
              }
            }
          },
          "quotes": { "type": "array", "items": { "type": "string" } },
          "marketSize": {
            "type": "object",
            "properties": {
              "tam": { "type": "string" },
              "sam": { "type": "string" },
              "som": { "type": "string" }
            }
          }
        }
      }
    },
    "featureMapping": {
      "type": "object",
      "description": "功能到用户画像的映射及优先级"
    },
    "comparisonMatrix": {
      "type": "object",
      "description": "关键维度上的用户画像比较"
    },
    "recommendations": {
      "type": "array",
      "items": { "type": "string" }
    }
  }
}

使用示例

const personas = await executeSkill('persona-development', {
  mode: 'create',
  researchData: {
    interviews: [
      { id: 'int-1', role: '产品经理', painPoints: ['...'], goals: ['...'] },
      { id: 'int-2', role: '开发人员', painPoints: ['...'], goals: ['...'] }
    ],
    analytics: {
      userSegments: ['企业', '中小企业', '初创公司'],
      behaviorPatterns: ['高级用户', '普通用户', '管理员']
    }
  },
  segmentationCriteria: ['角色', '公司规模', '使用场景']
});

依赖项

  • 研究数据格式
  • 细分算法