Best fit
- "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"
affaan-m/ECC
Weighted social-graph ranking for warm intro discovery, bridge scoring, and network gap analysis across X and LinkedIn. Use when the user wants the reusable graph-ranking engine itself, not the broader outreach or network-maintenance workflow layered on top of it.
npx skills add https://github.com/affaan-m/ECC --skill "skills/social-graph-ranker"Source checked Jul 28, 2026·Refresh due Oct 26, 2026
Reorganized from the pinned upstream SKILL.md
According to the pinned SKILL.md from affaan-m/ECC: Canonical weighted graph-ranking layer for network-aware outreach.
npx skills add https://github.com/affaan-m/ECC --skill "skills/social-graph-ranker"Best fit
Bring this context
Expected outputs
Key source sections
Sections are extracted automatically from the pinned SKILL.md and link back to the source.
1. Build the weighted target set. 2. Pull the user's graph from X, LinkedIn, or both. 3. Compute direct bridge scores. 4. Expand second-order candidates for the highest-value mutuals. 5. Rank by R(m). 6. Return: - best warm intro asks - conditional bridge paths - graph gaps wher…
Choose this skill when the user primarily wants the ranking engine:
target people, companies, or ICP definition
Response-adjusted final ranking:
Weight targets before graph traversal with whatever matters for the current priority set:
SkillSignal prompt templates
These prompts were written by SkillSignal from the source structure; they are not upstream text.
Task-start prompt
Confirm source fit, inputs, and outputs before acting.
Use social-graph-ranker to help me with: [specific task]. Context: [files, data, or background]. Constraints: [environment, scope, and prohibited actions]. Before acting, check the pinned SKILL.md and explain which sections apply, what inputs are still missing, and what you will deliver.
Source-guided execution
Make the Agent explicitly follow the key extracted sections.
Apply the pinned social-graph-ranker source to [task]. Pay particular attention to these source sections: “Workflow”, “When To Use This Standalone”, “Inputs”, “Core Model”, “Scoring Signals”. Preserve the important decision at each step. Mark facts not covered by the source as “needs confirmation” instead of inventing them. Then verify the result against my acceptance criteria: [criteria].
Result-review prompt
Check omissions, permissions, and source drift before delivery.
Review the current social-graph-ranker result: (1) does it satisfy the original task; (2) were any applicable steps or limits in the pinned SKILL.md missed; (3) did it perform any unauthorized file, command, network, or data action; and (4) which conclusions remain unverified? List issues first, then fix only what the source or user authorization supports.
Output checklist
The task matches the purpose documented in the SKILL.md.
The source section “Workflow” has been checked.
The source section “When To Use This Standalone” has been checked.
The source section “Inputs” has been checked.
The source section “Core Model” has been checked.
Inputs, constraints, and acceptance criteria are explicit.
Unverified facts, compatibility, and outcome claims are clearly marked.
Any file, command, network, or data action has been reviewed.
Choose a different workflow
Generate enriched ICP-based lead lists with Exa Agent, including structured scoring and CSV output. Use when generating leads, building prospect lists, finding companies to sell to, outbound research, or ICP-based company discovery. Triggers on leads, lead gen, prospect list, find companies, ICP, outbound list. Distinct from lead-magnet (content asset that captures emails).
A separate implementation from MoizIbnYousaf/marketing-cli; compare its source, maintenance signals, and permission requirements.
Open source detailXとLinkedInでのウォームイントロ発見、ブリッジスコアリング、ネットワークギャップ分析のための重み付きソーシャルグラフランキング。ユーザーがランキングエンジン自体を必要としている場合(より広いプロモーションやネットワーク維持ワークフローではなく)に使用する。
A separate implementation from affaan-m/ECC; compare its source, maintenance signals, and permission requirements.
Open source detail加权社交图谱排名,用于在X和LinkedIn上发现温暖介绍、桥梁评分和网络差距分析。当用户想要可重用的图谱排名引擎本身,而不是其上层更广泛的推广或网络维护工作流时使用。
A separate implementation from affaan-m/ECC; compare its source, maintenance signals, and permission requirements.
Open source detailFAQ
Canonical weighted graph-ranking layer for network-aware outreach.
The catalog detected this source-specific install command: npx skills add https://github.com/affaan-m/ECC --skill "skills/social-graph-ranker". Inspect the command and pinned source before running it.
No dedicated Agent platform is declared in the pinned source record.
Quality breakdown
Based on traceable docs and repository signals; stars are not treated as quality.
Compare before choosing
These links are selected from shared tasks, functions, stacks, platforms, and same-name variants. Compare the source owner, documentation, permissions, and maintenance signals.
Generate enriched ICP-based lead lists with Exa Agent, including structured scoring and CSV output. Use when generating leads, building prospect lists, finding companies to sell to, outbound research, or ICP-based company discovery. Triggers on leads, lead gen, prospect list, find companies, ICP, outbound list. Distinct from lead-magnet (content asset that captures emails).
XとLinkedInでのウォームイントロ発見、ブリッジスコアリング、ネットワークギャップ分析のための重み付きソーシャルグラフランキング。ユーザーがランキングエンジン自体を必要としている場合(より広いプロモーションやネットワーク維持ワークフローではなく)に使用する。
加权社交图谱排名,用于在X和LinkedIn上发现温暖介绍、桥梁评分和网络差距分析。当用户想要可重用的图谱排名引擎本身,而不是其上层更广泛的推广或网络维护工作流时使用。
Use when the user says "review the design", "check the UI", or wants a comprehensive UI/UX review. Uses a 7-phase methodology covering interaction, responsiveness, accessibility, and more.
Distributed computing for larger-than-RAM pandas/NumPy workflows. Use when you need to scale existing pandas/NumPy code beyond memory or across clusters. Best for parallel file processing, distributed ML, integration with existing pandas code. For out-of-core analytics on single machine use vaex; for in-memory speed use polars.
Canonical weighted graph-ranking layer for network-aware outreach.
Use this when the user needs to:
lead-intelligence or connections-optimizerChoose this skill when the user primarily wants the ranking engine:
Do not use this by itself when the user really wants:
lead-intelligenceconnections-optimizerCollect or infer:
Given:
T = weighted target setM = your current mutuals / direct connectionsd(m, t) = shortest hop distance from mutual m to target tw(t) = target weight from signal scoringBase bridge score:
B(m) = Σ_{t ∈ T} w(t) · λ^(d(m,t) - 1)
Where:
λ is the decay factor, usually 0.5Second-order expansion:
B_ext(m) = B(m) + α · Σ_{m' ∈ N(m) \\ M} Σ_{t ∈ T} w(t) · λ^(d(m',t))
Where:
N(m) \\ M is the set of people the mutual knows that you do notα discounts second-order reach, usually 0.3Response-adjusted final ranking:
R(m) = B_ext(m) · (1 + β · engagement(m))
Where:
engagement(m) is normalized responsiveness or relationship strengthβ is the engagement bonus, usually 0.2Interpretation:
R(m) and direct bridge paths -> warm intro asksR(m) and one-hop bridge paths -> conditional intro asksR(m) or no viable bridge -> direct outreach or follow-gap fillWeight targets before graph traversal with whatever matters for the current priority set:
Weight mutuals after traversal with:
R(m).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 gap
lead-intelligence uses this ranking model inside the broader target-discovery and outreach pipelineconnections-optimizer uses the same bridge logic when deciding who to keep, prune, or addbrand-voice should run before drafting any intro request or direct outreachx-api provides X graph access and optional execution paths