Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问clear审计通过

interpreting-culture-index口译文化指数

Agent Skill

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

总安装

47,424

周安装

1,861

GitHub Stars

4,864

下载量

15,352
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:interpreting-culture-index(口译文化指数)
来源仓库:https://github.com/trailofbits/skills
仓库路径:skills/interpreting-culture-index
安装命令:
npx skills add https://github.com/trailofbits/skills --skill interpreting-culture-index
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/trailofbits/skills --skill interpreting-culture-index

简介

使用特质分析和倦怠检测来解释文化指数行为概况、团队动态和招聘契合度。

  • 使用距离箭头方法分析个人 CI 概况,以识别行为原型、优势和基于特质的挑战
  • 通过 Gas/Brake/Glue 框架评估团队组成;通过比较调查(硬连线特征)与工作(适应性行为)图表并计算能源利用率来检测倦怠
  • 支持基于 CI 特质模式的招聘档案定义、经理辅导、冲突调解和入职规划
  • 接受提取的 JSON 或 PDF 输入(通过 OpenCV 脚本自动提取);从面试笔录中预测 CI 特征,以进行预评估候选人评估

SKILL.md

<essential_principles>

Culture Index measures behavioral traits, not intelligence or skills. There is no "good" or "bad" profile.

The 0-10 scale is just a ruler. What matters is distance from the red arrow (population mean at 50th percentile). The arrow position varies between surveys based on EU.

Why the arrow moves: Higher EU scores cause the arrow to plot further right; lower EU causes it to plot further left. This does not affect validity—we always measure distance from wherever the arrow lands.

Wrong: "Dan has higher autonomy than Jim because his A is 8 vs 5" Right: "Dan is +3 centiles from his arrow; Jim is +1 from his arrow"

Always ask: Where is the arrow, and how far is the dot from it?

"You can't send a duck to Eagle school." Traits are hardwired—you can only modify behaviors temporarily, at the cost of energy.
  • Top graph (Survey Traits): Hardwired by age 12-16. Does not change. Writing with your dominant hand.
  • Bottom graph (Job Behaviors): Adaptive behavior at work. Can change. Writing with your non-dominant hand.

Large differences between graphs indicate behavior modification, which drains energy and causes burnout if sustained 3-6+ months.

DistanceLabelPercentileInterpretation
On arrowNormative50thFlexible, situational
±1 centileTendency~67thEasier to modify
±2 centilesPronounced~84thNoticeable difference
±4+ centilesExtreme~98thHardwired, compulsive, predictable

Key insight: Every 2 centiles of distance = 1 standard deviation.

Extreme traits drive extreme results but are harder to modify and less relatable to average people.

Unlike A, B, C, D, you CAN compare L and I scores directly between people:

  • Logic 8 means "High Logic" regardless of arrow position
  • Ingenuity 2 means "Low Ingenuity" for anyone

Only these two traits break the "no absolute comparison" rule.

</essential_principles>

When to Use

  • Interpreting Culture Index survey results (individual or team)
  • Analyzing CI profiles from PDF or JSON data
  • Assessing team composition using Gas/Brake/Glue framework
  • Detecting burnout risk by comparing Survey vs Job graphs
  • Defining hiring profiles based on CI trait patterns
  • Coaching managers on how to work with specific CI profiles
  • Predicting CI traits from interview transcripts
  • Mediating team conflict using CI profile data

When NOT to Use

  • For non-CI behavioral assessments (DISC, Myers-Briggs, StrengthsFinder, Predictive Index, Enneagram)
  • For clinical psychological assessments or diagnoses
  • As the sole basis for hiring/firing decisions — CI is one data point among many

<input_formats>

JSON (Use if available)

If JSON data is already extracted, use it directly:

import json
with open("person_name.json") as f:
    profile = json.load(f)

JSON format:

{
  "name": "Person Name",
  "archetype": "Architect",
  "survey": {
    "eu": 21,
    "arrow": 2.3,
    "a": [5, 2.7],
    "b": [0, -2.3],
    "c": [1, -1.3],
    "d": [3, 0.7],
    "logic": [5, null],
    "ingenuity": [2, null]
  },
  "job": { "..." : "same structure as survey" },
  "analysis": {
    "energy_utilization": 148,
    "status": "stress"
  }
}

Note: Trait values are [absolute, relative_to_arrow] tuples. Use the relative value for interpretation.

Check same directory as PDF for matching .json file, or ask user if they have extracted JSON.

PDF Input (MUST EXTRACT FIRST)

⚠️ NEVER use visual estimation for trait values. Visual estimation has 20-30% error rate.

When given a PDF:

  1. Check if JSON already exists (same directory as PDF, or ask user)
  2. If not, run extraction with verification: uv run {baseDir}/scripts/extract_pdf.py --verify /path/to/file.pdf [output.json]
  3. Visually confirm the verification summary matches the PDF
  4. Use the extracted JSON for interpretation

If uv is not installed: Stop and instruct user to install it (brew install uv or pip install uv). Do NOT fall back to vision.

PDF Vision (Reference Only)

Vision may be used ONLY to verify extracted values look reasonable, NOT to extract trait scores.

</input_formats>

Step 0: Do you have JSON or PDF?

  1. If JSON provided or found: Use it directly (skip extraction)

- Check same directory as PDF for .json file with matching name - Check if user provided JSON path

  1. If only PDF: Run extraction script with --verify flag uv run {baseDir}/scripts/extract_pdf.py --verify /path/to/file.pdf [output.json]
  2. If extraction fails: Report error, do NOT fall back to vision

Step 1: What data do you have?

  • CI Survey JSON → Proceed to Step 2
  • CI Survey PDF → Extract first (Step 0), then proceed to Step 2
  • Interview transcript only → Go to option 8 (predict traits from interview)
  • No data yet → "Please provide Culture Index profile (PDF or JSON) or interview transcript"

Step 2: What would you like to do?

Profile Analysis:

  1. Interpret an individual profile - Understand one person's traits, strengths, and challenges
  2. Analyze team composition - Assess gas/brake/glue balance, identify gaps
  3. Detect burnout signals - Compare Survey vs Job, flag stress/frustration
  4. Compare multiple profiles - Understand compatibility, collaboration dynamics
  5. Get motivator recommendations - Learn how to engage and retain someone

Hiring & Candidates: 6. Define hiring profile - Determine ideal CI traits for a role 7. Coach manager on direct report - Adjust management style based on both profiles 8. Predict traits from interview - Analyze interview transcript to estimate CI traits 9. Interview debrief - Assess candidate fit based on predicted traits

Team Development: 10. Plan onboarding - Design first 90 days based on new hire and team profiles 11. Mediate conflict - Understand friction between two people using their profiles

Provide the profile data (JSON or PDF) and select an option, or describe what you need.

ResponseWorkflow
"extract", "parse pdf", "convert pdf", "get json from pdf"workflows/extract-from-pdf.md
1, "individual", "interpret", "understand", "analyze one", "single profile"workflows/interpret-individual.md
2, "team", "composition", "gaps", "balance", "gas brake glue"workflows/analyze-team.md
3, "burnout", "stress", "frustration", "survey vs job", "energy", "flight risk"workflows/detect-burnout.md
4, "compare", "compatibility", "collaboration", "multiple", "two profiles"workflows/compare-profiles.md
5, "motivate", "engage", "retain", "communicate"Read references/motivators.md directly
6, "hire", "hiring profile", "role profile", "recruit", "what profile for"workflows/define-hiring-profile.md
7, "manage", "coach", "1:1", "direct report", "manager"workflows/coach-manager.md
8, "transcript", "interview", "predict traits", "guess", "estimate", "recording"workflows/predict-from-interview.md
9, "debrief", "should we hire", "candidate fit", "proceed", "offer"workflows/interview-debrief.md
10, "onboard", "new hire", "integrate", "starting", "first 90 days"workflows/plan-onboarding.md
11, "conflict", "friction", "mediate", "not working together", "clash"workflows/mediate-conflict.md
"conversation starters", "how to talk to", "engage with"Read references/conversation-starters.md directly

After reading the workflow, follow it exactly.

<verification_loop>

After every interpretation, verify:

  1. Did you use relative positions? Never stated "A is 8" without context
  2. Did you reference the arrow? All trait interpretations relative to arrow
  3. Did you compare Survey vs Job? Identified any behavior modification
  4. Did you avoid value judgments? No traits called "good" or "bad"
  5. Did you check EU? Energy utilization calculated if both graphs present

Report to user:

  • "Interpretation complete"
  • Key findings (2-3 bullet points)
  • Recommended actions

</verification_loop>

<reference_index>

Domain Knowledge (in references/):

Primary Traits:

  • primary-traits.md - A (Autonomy), B (Social), C (Pace), D (Conformity)

Secondary Traits:

  • secondary-traits.md - EU (Energy Units), L (Logic), I (Ingenuity)

Patterns:

  • patterns-archetypes.md - Behavioral patterns, trait combinations, archetypes

Archetype Deep Profiles (archetype-*.md):

  • archetype-administrator.md - The Administrator (High A, High B, Low C, Mid D)
  • archetype-coordinator.md - The Coordinator (Low A, High B, Mid C, Low D)
  • archetype-craftsman.md - The Craftsman (Low A, Low B, High C, High D)
  • archetype-daredevil.md - The Daredevil (High A, Low B, Low C, Low D)
  • archetype-debater.md - The Debater (Mid A, Mid-High B, Low C, High D)
  • archetype-facilitator.md - The Facilitator (Low A, Mid B, Mid C, Low D)
  • archetype-influencer.md - The Influencer (Low A, High B, Low C, Low D)
  • archetype-operator.md - The Operator (Low A, Low B, High C, Mid-High D)
  • archetype-persuader.md - The Persuader (High A, High B, Low C, Low D)
  • archetype-philosopher.md - The Philosopher (Low A, Low B, High C, Low D)
  • archetype-rainmaker.md - The Rainmaker (High A, High B, Low C, Low D)
  • archetype-scholar.md - The Scholar (High A, Low B, Low C, High D)
  • archetype-socializer.md - The Socializer (Low A, High B, Low C, Low D)
  • archetype-specialist.md - The Specialist (Low A, Low B, High C, Mid D)
  • archetype-technical-expert.md - The Technical Expert (Low A, Low B, High C, Low D)
  • archetype-traditionalist.md - The Traditionalist (Low A, Low B, High C, High D)
  • archetype-trailblazer.md - The Trailblazer (High A, Mid B, Mid C, Low D)

Application:

  • motivators.md - How to motivate each trait type
  • team-composition.md - Gas, brake, glue framework
  • anti-patterns.md - Common interpretation mistakes
  • conversation-starters.md - How to engage each pattern and trait type
  • interview-trait-signals.md - Signals for predicting traits from interviews

</reference_index>

<workflows_index>

Workflows (in workflows/):

FilePurpose
extract-from-pdf.mdExtract profile data from Culture Index PDF to JSON format
interpret-individual.mdAnalyze single profile, identify archetype, summarize strengths/challenges
analyze-team.mdAssess team balance (gas/brake/glue), identify gaps, recommend hires
detect-burnout.mdCompare Survey vs Job, calculate EU utilization, flag risk signals
compare-profiles.mdCompare multiple profiles, assess compatibility, collaboration dynamics
define-hiring-profile.mdDefine ideal CI traits for a role, identify acceptable patterns and red flags
coach-manager.mdHelp managers adjust their style for specific direct reports
predict-from-interview.mdAnalyze interview transcripts to predict CI traits before survey
interview-debrief.mdAssess candidate fit using predicted traits from transcript analysis
plan-onboarding.mdDesign first 90 days based on new hire profile and team composition
mediate-conflict.mdUnderstand and address friction between team members using their profiles

</workflows_index>

<quick_reference>

Trait Colors:

TraitColorMeasures
AMaroonAutonomy, initiative, self-confidence
BYellowSocial ability, need for interaction
CBluePace/Patience, urgency level
DGreenConformity, attention to detail
LPurpleLogic, emotional processing
ICyanIngenuity, inventiveness

Energy Utilization Formula:

Utilization = (Job EU / Survey EU) × 100

70-130% = Healthy
>130% = STRESS (burnout risk)
<70% = FRUSTRATION (flight risk)

Gas/Brake/Glue:

RoleTraitFunction
GasHigh AGrowth, risk-taking, driving results
BrakeHigh DQuality control, risk aversion, finishing
GlueHigh BRelationships, morale, culture

Score Precision:

ValuePrecisionExample
Traits (A,B,C,D,L,I)Integer 0-100, 1, 2,... 10
Arrow positionTenths0.4, 2.2, 3.8
Energy Units (EU)Integer11, 31, 45

</quick_reference>

<success_criteria>

A well-interpreted Culture Index profile:

  • Uses relative positions (distance from arrow), never absolute values alone
  • Identifies the archetype/pattern correctly
  • Highlights 2-3 key strengths based on leading traits
  • Notes 2-3 challenges or development areas
  • Compares Survey vs Job if both are available
  • Provides actionable recommendations
  • Avoids value judgments ("good"/"bad")
  • Acknowledges Culture Index is one data point, not a complete picture

</success_criteria>

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

27.44%
按下载量换算4,213

OpenCode

24.83%
按下载量换算3,812

Gemini CLI

16.26%
按下载量换算2,496

Cursor

13.46%
按下载量换算2,066

Antigravity

7.24%
按下载量换算1,111

Codex

3.11%
按下载量换算477

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills