x-data-signals

x-data-signals is a skill for Claude Code from ElemontCapital/x-algorithm-skills. It costs 46 tokens per session (881 once invoked), scanned A, original, Apache-2.0.

A guide to the data signals used by X's recommendation system. X is the social platform formerly known as Twitter; these signals help find and assess posts for a user's feed.

In plain words
What is it for?
It is for analyzing audience similarity, interaction likelihood, user reputation, community membership, and other inputs used before posts are ranked.
Why use it?
It explains how the system uses communities, relationships, reputation, and connections between users and posts to select potentially relevant content.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the x-algorithm plugin — 8 skills shipped together

Good fit It is for analyzing audience similarity, interaction likelihood, user reputation, community membership, and other inputs used before posts are ranked.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/elemontcapital/x-algorithm-skills/x-data-signals
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add ElemontCapital/x-algorithm-skills --skill x-data-signals
Clone the repo
git clone --depth 1 https://github.com/ElemontCapital/x-algorithm-skills

Made for: Claude Code.

Or install x-algorithm, the plugin that ships this one along with the rest of its 8 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for x-data-signals

README.md
[![agentmods](https://agentmods.dev/badge/skills/elemontcapital/x-algorithm-skills/x-data-signals/github.svg)](https://agentmods.dev/skills/elemontcapital/x-algorithm-skills/x-data-signals)
Your own site
<a href="https://agentmods.dev/skills/elemontcapital/x-algorithm-skills/x-data-signals"><img src="https://agentmods.dev/badge/skills/elemontcapital/x-algorithm-skills/x-data-signals/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for x-data-signals

Your own site · 80×15
<a href="https://agentmods.dev/skills/elemontcapital/x-algorithm-skills/x-data-signals"><img src="https://agentmods.dev/badge/skills/elemontcapital/x-algorithm-skills/x-data-signals.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 881 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00046 $0.00881
Opus 5 $0.00023 $0.00441
Sonnet 5 $0.00009 $0.00176
Haiku 4.5 $0.00005 $0.00088

Measured 9d ago against content hash 9bf71515d8cf, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

x-data-signals scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/x-algorithm/skills/x-data-signals/SKILL.md · 57 lines

How it starts

The opening of the file, as written. The whole thing — 57 lines — stays where its author put it; the contents beside it link to each section on GitHub.

X Data Signals

Deep dive into the X recommendation engine's core signal libraries: SimClusters (Community Embeddings), RealGraph (Interaction Probabilities), TweepCred (Reputation), and TwHIN (Knowledge Graph).

Context

The engine relies on four primary signal pillars:

  1. SimClusters (v2): A Matrix Factorization framework that anchors users and tweets into ~145k community vectors. It is the primary driver for "Embedding-Based Candidate Generation" (EBCG).
  2. RealGraph: A weighted, directed graph of user interactions, predicting the probability P(u -> v) of engagement. It powers the "In-Network" feed.
  3. TweepCred: A continuous PageRank score (0-100) determining user authority.
  4. TwHIN: (Twitter Heterogeneous Information Network) Dense knowledge-graph embeddings that capture multi-modal relationships (Users, Tweets, Ads, Topics) in a shared vector space.

For detailed logic, see:

What it does

  • Identifies "Lookalike" Audiences: Uses SimClusters to find content popular in communities you implicitly belong to, even if you don't follow the authors.
  • Quantifies Relationship Strength: Uses RealGraph to assign a floating-point weight to every user-user connection, prioritizing close friends over acquaintances.
  • Filters Low-Quality Nodes: Uses TweepCred to prune candidate pools during the retrieval stage, saving compute by ignoring low-authority accounts.
  • Calculates Embedding Similarity: Computes dot-product scores between User embeddings and Tweet embeddings to predict relevance in the "Earlybird" (Light Ranker) stage.

Guidelines

  • SimClusters v2 Implementation: The source code distinguishes between "Known-For" (what a Creator talks about) and "Interested-In" (what a Consumer likes). A tweet is recommended if the Creator's "Known-For" vector aligns with the Consumer's "Interested-In" vector.
  • GraphJet vs. RealGraph:
    • RealGraph: The offline/batch-calculated interaction model (the "map").
    • GraphJet: The real-time, in-memory graph processing engine that serves the RealGraph data to the HomeMixer.
  • TwHIN vs. SimClusters:
    • SimClusters is sparse and interpretable (e.g., "Cluster 123 = JavaScript").
    • TwHIN is dense and uninterpretable (64-dim float vectors). TwHIN is often used for "TwHIN-Collab" filtering in the candidate generation phase.
  • Signal Decay: RealGraph weights decay over time. A "Like" from 2018 is worth significantly less than a "Like" from today. The UserInteractionSignal service handles this time-decay logic.
  • Code Locations:
    • src/scala/com/twitter/simclusters_v2: Core logic for community embeddings.
    • src/scala/com/twitter/graph/batch/job/twhin: Knowledge graph embedding generation.
    • src/java/com/twitter/search/earlybird: Where real-time signals meet search indices.

Read the full file on GitHub · 57 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 57 lines · 46 tokens per session scan A 9bf71515d8cf

Subscribe to this mod's changes

x-data-signals is a skill published in the GitHub repository ElemontCapital/x-algorithm-skills (2 stars, last pushed 2mo ago), licensed Apache-2.0. It adds 46 tokens to every session and 881 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

data-analyzer

Guidance for analyzing structured data, generating statistics and producing data-driven insights. Use when the user asks to analyze data, compute statistics, find patterns, or generate analytical reports.

vixues/LeAgent · 39 tokens

ai-enterprise-ai-usecase-priority-assessment

A business-diagnosis helper for deciding which enterprise AI use cases deserve attention first. It turns supplied information into a summary, findings, recommended actions, and reusable deliverables.

skillsaiagent/aiskills · 79 tokens

spark-environment-setup

Set up a working ML training/inference environment on NVIDIA DGX Spark (GB10, aarch64, CUDA 13). Use when installing PyTorch/Unsloth/TRL/vLLM on DGX Spark, hitting libcudart or wheel-ABI errors on aarch64, or choosing between NGC containers and bare pip installs.

wshobson/agents · 76 tokens

spark-training-gotchas

Preflight and diagnose the ten known failure modes for ML training on NVIDIA DGX Spark. Use when a training run on DGX Spark fails to start, OOMs below the 128GB limit, slows down mid-run, or before any multi-hour training job on GB10.

wshobson/agents · 63 tokens

foundry-config-setup

Resolve missing setup caused by a hardcoded Foundry project endpoint or model in a sample. Use when a sample fails because it uses a placeholder/hardcoded projectendpoint (for example "https://your-project.services.ai.azure.com") or a hardcoded model instead of reading them from the environment.

microsoft/agent-framework · 65 tokens

mem0-integration

Mem0 memory layer integration for AI agents. Implement persistent, semantic memory for long-term context retention and personalization.

a5c-ai/babysitter · 27 tokens