Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计提醒

personality-profiler性格分析器

Agent Skill

personality-profiler 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

998

周安装

40

GitHub Stars

35

下载量

323
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:personality-profiler(性格分析器)
来源仓库:https://github.com/petekp/claude-code-setup
仓库路径:skills/personality-profiler
安装命令:
npx skills add https://github.com/petekp/claude-code-setup --skill personality-profiler
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/petekp/claude-code-setup --skill personality-profiler

简介

personality-profiler 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。

  • 适用于性格分析与用户画像构建等研究支持场景。
  • 通过 GitHub 仓库安装,使用 npx skills add 命令添加指定技能。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Personality Profiler

Generate comprehensive, extensible personality profiles from social media data exports.

Overview

This skill analyzes exported social media data to create detailed personality profiles suitable for:

  1. AI assistant personalization (training data for personalized responses)
  2. Self-reflection and pattern discovery

Workflow

  1. Receive data — User provides exported data files (JSON/CSV)
  2. Parse data — Extract posts, comments, interactions using platform-specific parsers
  3. Analyze dimensions — Evaluate across 8 personality dimensions
  4. Generate profile — Output structured profile in extensible JSON format
  5. Summarize insights — Provide human-readable summary

Supported Platforms

PlatformExport TypeKey Files
Twitter/XZIP archivetweets.js, like.js, profile.js
LinkedInZIP archiveProfile.csv, Connections.csv, Comments.csv, Shares.csv
InstagramZIP archivecontent/posts_1.json, comments.json, profile.json

For detailed format specifications, see references/platform-formats.md.

Analysis Dimensions

Analyze content across these 8 dimensions:

1. Communication Style

  • Tone: formal ↔ casual, serious ↔ playful, direct ↔ diplomatic
  • Verbosity: concise ↔ elaborate, uses bullet points vs paragraphs
  • Vocabulary: technical level, industry jargon, colloquialisms

2. Interests & Expertise

  • Topics: recurring themes, domains of focus
  • Depth: surface mentions vs deep engagement
  • Evolution: how interests have changed over time

3. Values & Beliefs

  • Priorities: what matters most (inferred from emphasis)
  • Advocacy: causes supported or promoted
  • Philosophy: worldview indicators

4. Social Patterns

  • Engagement style: initiator vs responder, commenter vs creator
  • Network orientation: broad reach vs tight community
  • Interaction tone: supportive, challenging, neutral

5. Emotional Expression

  • Range: emotional vocabulary breadth
  • Valence: positive/negative tendency
  • Triggers: what elicits strong reactions

6. Cognitive Style

  • Reasoning: analytical vs intuitive, data-driven vs narrative
  • Complexity: nuanced vs straightforward positions
  • Openness: receptivity to new ideas

7. Professional Identity

  • Domain: industry, role, expertise areas
  • Aspirations: career direction signals
  • Network: professional relationship patterns

8. Temporal Patterns

  • Activity rhythms: when they post, reply, engage
  • Content cycles: seasonal or event-driven patterns
  • Growth trajectory: how expression has evolved

Profile Schema

Output profiles in this extensible JSON structure:

{
  "version": "1.0",
  "generated_at": "ISO-8601 timestamp",
  "data_sources": [
    {
      "platform": "twitter|linkedin|instagram",
      "date_range": {"start": "YYYY-MM-DD", "end": "YYYY-MM-DD"},
      "item_count": 1234
    }
  ],
  "profile": {
    "summary": "2-3 paragraph narrative summary",
    "dimensions": {
      "communication_style": {
        "confidence": 0.0-1.0,
        "traits": {
          "formality": {"value": -1.0 to 1.0, "evidence": ["quote1", "quote2"]},
          "verbosity": {"value": -1.0 to 1.0, "evidence": []},
          "directness": {"value": -1.0 to 1.0, "evidence": []}
        },
        "patterns": ["pattern1", "pattern2"],
        "recommendations_for_ai": "How an AI should communicate with this person"
      }
    },
    "notable_quotes": [
      {"text": "quote", "context": "why notable", "dimension": "which dimension"}
    ],
    "keywords": ["term1", "term2"],
    "topics_ranked": [
      {"topic": "name", "frequency": 0.0-1.0, "sentiment": -1.0 to 1.0}
    ]
  },
  "extensions": {}
}

The extensions field allows adding custom dimensions without breaking compatibility.

Process

Step 1: Data Ingestion

When user provides files:

  1. Identify platform from file structure
  2. Locate key content files (see platform table above)
  3. Parse using appropriate format handler
  4. Normalize to common internal structure:
{
  "items": [
    {
      "id": "unique_id",
      "type": "post|comment|share|like",
      "timestamp": "ISO-8601",
      "content": "text content",
      "metadata": {
        "platform": "twitter",
        "engagement": {"likes": 0, "replies": 0, "shares": 0},
        "context": "reply_to_id or null"
      }
    }
  ]
}

Step 2: Content Analysis

For each dimension:

  1. Extract signals — Find relevant content snippets
  2. Score traits — Rate on dimension-specific scales
  3. Gather evidence — Collect representative quotes
  4. Calculate confidence — Based on data volume and consistency

Minimum thresholds for confident analysis:

  • 50+ posts for basic profile
  • 200+ posts for detailed profile
  • 500+ posts for high-confidence profile

If below thresholds, note reduced confidence in output.

Step 3: Profile Generation

  1. Populate all dimension objects in schema
  2. Write narrative summary synthesizing key findings
  3. Extract notable quotes (5-10 most characteristic)
  4. Rank topics by frequency and engagement
  5. Generate AI personalization recommendations

Step 4: Output Delivery

Provide two outputs:

  1. JSON profile — Complete structured data (save as personality_profile.json)
  2. Markdown summary — Human-readable insights document

AI Personalization Recommendations

For each dimension, include specific guidance for AI systems:

Example recommendations:

communication_style.recommendations_for_ai:
"Use a conversational but informed tone. Avoid excessive formality.
Include occasional humor. Lead with conclusions, then supporting detail.
Match their tendency for medium-length responses (2-3 paragraphs)."

interests.recommendations_for_ai:
"Can reference machine learning, distributed systems, and startup culture
without explanation. Assume familiarity with Python ecosystem. May enjoy
tangential connections to philosophy of technology."

Handling Multiple Platforms

When analyzing data from multiple platforms:

  1. Process each platform separately first
  2. Cross-reference for consistency
  3. Note platform-specific behaviors (e.g., more formal on LinkedIn)
  4. Weight professional platforms for work identity
  5. Weight personal platforms for authentic voice
  6. Merge into unified profile with platform annotations

Privacy Considerations

Before processing:

  1. Confirm user owns the data
  2. Note that analysis stays local (no external API calls for content)
  3. Offer to redact specific people/topics if requested
  4. Output can be edited before use

Extending the Profile

The profile schema supports extensions:

{
  "extensions": {
    "custom_dimension": {
      "confidence": 0.8,
      "traits": {},
      "patterns": [],
      "recommendations_for_ai": ""
    },
    "domain_specific": {
      "developer_profile": {
        "languages": ["python", "rust"],
        "paradigm_preference": "functional-leaning"
      }
    }
  }
}

Users can request custom dimensions by describing what they want analyzed.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude

31.82%
按下载量换算103

Codex

31.13%
按下载量换算101

Cursor

18.18%
按下载量换算59

Gemini CLI

9.96%
按下载量换算32

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills