
Social Graph Ranker
FreeOptimize your network outreach with weighted rankings.
Free · Opens the source repo
What Social Graph Ranker does
The Social Graph Ranker is a specialized tool designed for users seeking to enhance their networking efforts through a normalized, weighted graph ranking layer. This skill is particularly useful for individuals who wish to rank existing connections or followers based on intrinsic value, allowing them to identify the best potential introductions and outreach opportunities. By analyzing connections on platforms like X and LinkedIn, users can map warm paths to their target lists and measure bridge values across first and second-degree connections.
This skill operates by collecting essential inputs such as the target individuals, companies, or ideal customer profile (ICP) definitions, as well as the user's current graph on the chosen platforms. It employs mathematical principles to calculate bridge scores, helping users determine whether to pursue warm introductions or cold outreach. The underlying model uses weighted scoring based on various factors, including role, industry, geographic relevance, and engagement potential, to provide a comprehensive ranking of connections.
Users can leverage the Social Graph Ranker in scenarios where they need to identify who in their network can provide the most valuable introductions or when they want to map their connections against specific targets. The output includes a prioritized list of warm introductions, conditional paths, and recommendations for direct outreach when no warm paths are available. This makes it an essential tool for professionals focused on maximizing the effectiveness of their networking strategies.
However, it is important to note that this skill is not a complete lead generation or outreach solution. For broader lead generation workflows or network optimization tasks, users should consider complementary tools like lead-intelligence or connections-optimizer that integrate with this ranking model, providing a more holistic approach to networking and outreach.
When to use it
Use this tool when you need to rank existing connections based on their potential for providing warm introductions.
When not to use it
This is not suitable for complete lead generation or broader outreach sequences; consider other tools for those needs.
What you can build with it
Identifying Key Introductions
Use the Social Graph Ranker to determine which connections can provide the best introductions to your target audience.
Mapping Warm Paths
Map out warm paths to your target list by analyzing your existing connections and their potential for outreach.
Evaluating Connection Value
Evaluate the bridge value of your first and second-degree connections to make informed networking decisions.
How to install Social Graph Ranker
View source1. Install with the skills CLI
npx skills add affaan-m/ecc/social-graph-ranker --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by affaan-mソーシャルグラフランカー
ネットワーク認識型アウトリーチのための正規化された重み付きグラフランキングレイヤー。
以下の機能が必要な場合にこのツールを使用する:
- 内在的価値に基づいて既存の相互フォロワーまたはコネクションをランク付けする
- ターゲットリストに対してウォームパスをマッピングする
- 1度と2度のコネクション全体でブリッジ価値を測定する
- ウォームな紹介とコールドアウトリーチのどちらが適切かを判断する
lead-intelligenceやconnections-optimizerとは独立してグラフの数学的原理を理解する
単独での使用場面
ユーザーが主にランキングエンジンを必要としている場合にこのスキルを選択する:
- 「私のネットワークで誰が最もよい紹介をしてくれるか?」
- 「相互フォロワーをランク付けして、この人たちへの連絡を手伝ってもらえる人を見つける」
- 「このICPに対して私のグラフをマッピングする」
- 「ブリッジの数学的計算を見せる」
ユーザーが実際に以下を必要としている場合は、単独で使用しない:
- 完全なリード生成とアウトリーチシーケンス ->
lead-intelligenceを使用 - ネットワークのトリミング、再バランシング、拡張 ->
connections-optimizerを使用
入力
以下を収集または推論する:
- ターゲットとなる人物、企業、またはICP定義
- XまたはLinkedIn、あるいは両方におけるユーザーの現在のグラフ
- 役割、業界、地理、レスポンス性などの重み付け優先度
- 探索の深さと減衰の許容度
コアモデル
以下が与えられたとする:
T= 重み付きターゲットのセットM= 現在の相互フォロワー/直接コネクションd(m, t)= 相互フォロワーmからターゲットtへの最短ホップ距離w(t)= シグナルスコアリングからのターゲット重み
基本ブリッジスコア:
B(m) = Σ_{t ∈ T} w(t) · λ^(d(m,t) - 1)
ここで:
λは減衰因子、通常0.5- 直接パスは全価値を提供
- ホップが増えるごとに貢献が半分になる
2度拡張:
B_ext(m) = B(m) + α · Σ_{m' ∈ N(m) \\ M} Σ_{t ∈ T} w(t) · λ^(d(m',t))
ここで:
N(m) \\ Mは相互フォロワーが知っているがユーザーが知らない人のセットαは2度の到達可能性に対する割引、通常0.3
レスポンス調整後の最終ランキング:
R(m) = B_ext(m) · (1 + β · engagement(m))
ここで:
engagement(m)は正規化されたレスポンス性または関係強度βはエンゲージメントボーナス、通常0.2
解釈:
- 第1層:高い
R(m)と直接ブリッジパス -> ウォームな紹介リクエスト - 第2層:中程度の
R(m)と1ホップのブリッジパス -> 条件付き紹介リクエスト - 第3層:低い
R(m)またはブリッジなし -> 直接アウトリーチまたはギャップ補完に注力
スコアリングシグナル
グラフ探索前に、現在の優先度セットに基づいてターゲットを重み付けする:
- 役職または職位の一致度
- 企業または業界の適合性
- 現在のアクティビティと時効性
- 地理的な関連性
- 影響力またはリーチ
- レスポンスの可能性
探索後に相互フォロワーを重み付けする:
- ターゲットセットへの重み付きパスの数
- それらのパスの直接性
- レスポンス性または過去のインタラクション履歴
- 紹介を行うためのコンテキスト適合性
ワークフロー
- 重み付きターゲットセットを構築する。
- X、LinkedIn、または両方からユーザーのグラフを取得する。
- 直接ブリッジスコアを計算する。
- 最も価値の高い相互フォロワーの2度の候補を拡張する。
R(m)でランク付けする。- 以下を返す:
- 最良のウォームな紹介リクエスト
- 条件付きブリッジパス
- ウォームパスが存在しないグラフギャップ
出力フォーマット
ソーシャルグラフランキング
====================
優先度セット:
プラットフォーム:
減衰モデル:
トップブリッジ
- 相互フォロワー / コネクション
基本スコア:
拡張スコア:
最良ターゲット:
パスサマリー:
推奨アクション:
条件付きパス
- 相互フォロワー / コネクション
理由:
追加ホップコスト:
ウォームパスなし
- ターゲット
推奨:直接連絡 / グラフギャップを補完
関連スキル
lead-intelligenceはより広いターゲット発見とアウトリーチパイプラインでこのランキングモデルを使用するconnections-optimizerは誰を保持、トリミング、または追加するかを決定する際に同じブリッジロジックを使用するbrand-voiceは紹介リクエストや直接アウトリーチを起草する前に実行するx-apiはXグラフへのアクセスとオプションの実行パスを提供する
Frequently asked questions about Social Graph Ranker
Similar skills
Create an Asset
Generate tailored sales assets from your deal context.
Contact Research
Effortlessly retrieve detailed contact profiles.
Compose Outreach
Generate tailored outreach messages with ease.
Enterprise Account Planning
Optimize your enterprise sales strategy effectively.
Lead Triage
Prioritize HubSpot leads with actionable insights.
Pipeline Review
Optimize your sales pipeline with actionable insights.
