Catalog
affaan-m/social-graph-ranker

affaan-m

social-graph-ranker

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.

global
origin:ECC
New~1.0k
v1.2Saved Jul 14, 2026

Social 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 lead-intelligence or 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

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

Core Model

Given:

  • T = weighted target set
  • M = your current mutuals / direct connections
  • d(m, t) = shortest hop distance from mutual m to target t
  • w(t) = target weight from signal scoring

Base bridge score:

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:

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.3

Response-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.2

Interpretation:

  • Tier 1: high R(m) and direct bridge paths -> warm intro asks
  • Tier 2: medium R(m) and one-hop bridge paths -> conditional intro asks
  • Tier 3: low R(m) or no viable bridge -> direct outreach or follow-gap fill

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

  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 where no warm path exists

Output Shape

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 pipeline
  • connections-optimizer uses the same bridge logic when deciding who to keep, prune, or add
  • brand-voice should run before drafting any intro request or direct outreach
  • x-api provides X graph access and optional execution paths
Files1
1 files · 1.0 KB

Select a file to preview

Overall Score

88/100

Grade

A

Excellent

Safety

92

Quality

87

Clarity

89

Completeness

83

Summary

This skill provides a weighted graph-ranking algorithm for discovering warm introduction paths in social networks (X and LinkedIn). It teaches an agent to score mutual connections by their ability to bridge to target contacts, using decay factors and engagement adjustments to rank warm intro opportunities.

Detected Capabilities

graph traversalscoring algorithmnetwork analysisweighted rankingpath distance calculation

Trigger Keywords

Phrases that MCP clients use to match this skill to user intent.

rank warm introductionsbridge scoringnetwork path discoverysocial graph rankingmutual outreach prioritizationgraph gap analysiswarm intro mapping

Use Cases

  • Identify best mutuals to request warm introductions
  • Map shortest paths from your network to target contacts
  • Compare warm intro viability vs. direct outreach
  • Measure bridge value across multi-hop connections
  • Analyze network gaps where no warm path exists

Quality Notes

  • Excellent mathematical clarity: formulas are well-formatted and parameterized with clear notation (λ decay, α extension discount, β engagement bonus)
  • Strong scope boundaries: explicitly states what this skill is NOT (full lead gen, network maintenance) and refers users to related skills for broader workflows
  • Output shape is concrete and actionable with explicit sections (Priority Set, Top Bridges, Conditional Paths, No Warm Path recommendations)
  • Workflow steps are logical and sequential, making it easy for an agent to follow the process step-by-step
  • Scoring signals section appropriately separates target weighting (company fit, activity, influence) from mutual weighting (path directness, responsiveness)
  • Edge cases well-covered: addresses Tier 1/2/3 interpretation and explicitly handles 'no viable bridge' scenario with fallback to direct outreach or gap-fill
  • Documentation is concise without sacrificing completeness; avoids over-explanation while staying practical
Model: claude-haiku-4-5-20251001Analyzed: Jul 14, 2026

Reviews

Add this skill to your library to leave a review.

No reviews yet

Be the first to share your experience.

Version History

v1.2

Content updated

2026-07-14

Latest
v1.1

Content updated

2026-04-20

v1.0

No changelog

2026-04-12

Use affaan-m/social-graph-ranker in your dev environment

Command Palette

Search for a command to run...