social-graph-ranker
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseSocial Graph Ranker
社交图排名器
Canonical weighted graph-ranking layer for network-aware outreach.
Use this when the user needs to:
- rank existing mutuals or connections by intro value
- map warm paths to a target list
- measure bridge value across first- and second-order connections
- decide which targets deserve warm intros versus direct cold outreach
- understand the graph math independently from or
lead-intelligenceconnections-optimizer
用于网络感知型外展的标准加权图排名层。
当用户需要以下功能时可使用本工具:
- 按介绍价值对现有共同联系人或直接联系人进行排名
- 绘制通往目标列表的暖路径
- 衡量一阶和二阶联系人之间的桥梁价值
- 决定哪些目标适合暖介绍,哪些适合直接冷外展
- 独立于或
lead-intelligence理解图运算逻辑connections-optimizer
When To Use This Standalone
何时单独使用本工具
Choose this skill when the user primarily wants the ranking engine:
- "who in my network is best positioned to introduce me?"
- "rank my mutuals by who can get me to these people"
- "map my graph against this ICP"
- "show me the bridge math"
Do not use this by itself when the user really wants:
- full lead generation and outbound sequencing -> use
lead-intelligence - pruning, rebalancing, and growing the network -> use
connections-optimizer
当用户主要需要排名引擎时选择本技能:
- "我的网络中谁最适合为我做介绍?"
- "按谁能帮我联系到这些人的能力对我的共同联系人进行排名"
- "将我的社交图与这个理想客户画像(ICP)进行匹配"
- "向我展示桥梁运算的数学逻辑"
当用户实际需要以下功能时,请勿单独使用本工具:
- 完整的线索生成和外展序列编排 -> 使用
lead-intelligence - 网络的修剪、重新平衡和拓展 -> 使用
connections-optimizer
Inputs
输入信息
Collect or infer:
- target people, companies, or ICP definition
- the user's current graph on X, LinkedIn, or both
- weighting priorities such as role, industry, geography, and responsiveness
- traversal depth and decay tolerance
收集或推断以下信息:
- 目标人物、公司或理想客户画像(ICP)定义
- 用户在X、LinkedIn或两者平台上的当前社交图
- 权重优先级,如职位、行业、地域和响应度
- 遍历深度和衰减容忍度
Core Model
核心模型
Given:
- = weighted target set
T - = your current mutuals / direct connections
M - = shortest hop distance from mutual
d(m, t)to targetmt - = target weight from signal scoring
w(t)
Base bridge score:
text
B(m) = Σ_{t ∈ T} w(t) · λ^(d(m,t) - 1)Where:
- is the decay factor, usually
λ0.5 - a direct path contributes full value
- each extra hop halves the contribution
Second-order expansion:
text
B_ext(m) = B(m) + α · Σ_{m' ∈ N(m) \\ M} Σ_{t ∈ T} w(t) · λ^(d(m',t))Where:
- is the set of people the mutual knows that you do not
N(m) \\ M - discounts second-order reach, usually
α0.3
Response-adjusted final ranking:
text
R(m) = B_ext(m) · (1 + β · engagement(m))Where:
- is normalized responsiveness or relationship strength
engagement(m) - is the engagement bonus, usually
β0.2
Interpretation:
- Tier 1: high and direct bridge paths -> warm intro asks
R(m) - Tier 2: medium and one-hop bridge paths -> conditional intro asks
R(m) - Tier 3: low or no viable bridge -> direct outreach or follow-gap fill
R(m)
已知:
- = 加权目标集合
T - = 用户当前的共同联系人/直接联系人
M - = 共同联系人
d(m, t)到目标m的最短跳数距离t - = 基于信号评分的目标权重
w(t)
基础桥梁评分:
text
B(m) = Σ_{t ∈ T} w(t) · λ^(d(m,t) - 1)其中:
- 为衰减因子,通常取值
λ0.5 - 直接路径贡献全部价值
- 每多一跳,贡献值减半
二阶扩展:
text
B_ext(m) = B(m) + α · Σ_{m' ∈ N(m) \\ M} Σ_{t ∈ T} w(t) · λ^(d(m',t))其中:
- 是共同联系人认识但用户不认识的人群集合
N(m) \\ M - 为二阶触达的折扣系数,通常取值
α0.3
响应度调整后的最终排名:
text
R(m) = B_ext(m) · (1 + β · engagement(m))其中:
- 为标准化的响应度或关系强度
engagement(m) - 为互动奖励系数,通常取值
β0.2
解读:
- 一级:高值且有直接桥梁路径 -> 请求暖介绍
R(m) - 二级:中等值且有一跳桥梁路径 -> 有条件地请求介绍
R(m) - 三级:低值或无可行桥梁路径 -> 直接外展或填补网络差距
R(m)
Scoring Signals
评分信号
Weight targets before graph traversal with whatever matters for the current priority set:
- role or title alignment
- company or industry fit
- current activity and recency
- geographic relevance
- influence or reach
- likelihood of response
Weight mutuals after traversal with:
- number of weighted paths into the target set
- directness of those paths
- responsiveness or prior interaction history
- contextual fit for making the intro
在图遍历前,根据当前优先级集合对目标进行加权,可考虑以下因素:
- 职位或头衔匹配度
- 公司或行业契合度
- 当前活跃度和近期互动情况
- 地域相关性
- 影响力或覆盖范围
- 响应可能性
在图遍历后,对共同联系人进行加权,可考虑以下因素:
- 通往目标集合的加权路径数量
- 路径的直接性
- 响应度或过往互动历史
- 进行介绍的场景适配性
Workflow
工作流程
- Build the weighted target set.
- Pull the user's graph from X, LinkedIn, or both.
- Compute direct bridge scores.
- Expand second-order candidates for the highest-value mutuals.
- Rank by .
R(m) - Return:
- best warm intro asks
- conditional bridge paths
- graph gaps where no warm path exists
- 构建加权目标集合。
- 从X、LinkedIn或两者平台获取用户的社交图。
- 计算直接桥梁评分。
- 为最高价值的共同联系人扩展二阶候选对象。
- 按值进行排名。
R(m) - 返回结果:
- 最佳暖介绍请求对象
- 有条件的桥梁路径
- 无暖路径存在的网络差距
Output Shape
输出格式
text
SOCIAL GRAPH RANKING
====================
Priority Set:
Platforms:
Decay Model:
Top Bridges
- mutual / connection
base_score:
extended_score:
best_targets:
path_summary:
recommended_action:
Conditional Paths
- mutual / connection
reason:
extra hop cost:
No Warm Path
- target
recommendation: direct outreach / fill graph gaptext
SOCIAL GRAPH RANKING
====================
Priority Set:
Platforms:
Decay Model:
Top Bridges
- mutual / connection
base_score:
extended_score:
best_targets:
path_summary:
recommended_action:
Conditional Paths
- mutual / connection
reason:
extra hop cost:
No Warm Path
- target
recommendation: direct outreach / fill graph gapRelated Skills
相关技能
- uses this ranking model inside the broader target-discovery and outreach pipeline
lead-intelligence - uses the same bridge logic when deciding who to keep, prune, or add
connections-optimizer - should run before drafting any intro request or direct outreach
brand-voice - provides X graph access and optional execution paths
x-api
- 在更广泛的目标发现和外展流程中使用本排名模型
lead-intelligence - 在决定保留、修剪或添加联系人时使用相同的桥梁逻辑
connections-optimizer - 在起草任何介绍请求或直接外展内容前,应先运行
brand-voice - 提供X平台的社交图访问权限及可选执行路径
x-api