Under The Hood X Report Analyzer
Signals Architecture Guide

Positive vs Negative Signals on X

X's For You recommendation system does not treat every user action as a positive engagement. The current open-source algorithm explicitly models both positive engagement—such as likes, replies, reposts, shares and follows—and negative feedback such as Not Interested, block, mute and report. These predictions are combined during ranking. (GitHub)

Understanding this distinction is important because engagement is not simply “good” or “bad.” The recommendation system is trying to predict whether showing a particular post to a particular user will produce a useful experience.

Signal Direction Reference

Signal Direction Modeled by Phoenix?
LikePositiveYes
ReplyPositiveYes
RepostPositiveYes
QuotePositiveYes
ClickPositiveYes
Profile clickPositiveYes
Photo expansionPositiveYes
Video-quality viewPositiveYes
SharePositiveYes
DM sharePositiveYes
Copy linkPositiveYes
DwellPositiveYes
Follow authorPositiveYes
Not InterestedNegativeYes
Block authorNegativeYes
Mute authorNegativeYes
ReportNegativeYes

This list is based on the current Phoenix action outputs and ranking scorer. (GitHub)

How Positive and Negative Signals Combine

Positive Score vs Negative Score: The ranking scorer calculates positive components (likes, replies, reposts, dwell) and subtracts or penalizes negative components (Not Interested, blocks, mutes, reports) using configurable weights. (GitHub)

Zero Engagement Is Not Negative: A user simply scrolling past a post is distinct from explicit negative feedback ("Not Interested", "Mute", "Block").

Creator Takeaways: Optimize for content that earns meaningful engagement while minimizing friction that triggers negative user actions.

Official Open-Source References