Ranking vs Filtering 4 min read August 2026

Why can followers see my post but For You strangers can’t?

Direct Answer

Because X’s Visibility Filtering service explicitly differentiates between in-network (followers) and out-of-network (non-followers). Safety rules like SpamHighRecall, DoNotAmplify, and NsfwAvatarOrBanner are programmed to return DROP exclusively for out-of-network recommendation contexts. As a result, your followers continue seeing your tweets in their Following feed, while the For You algorithm drops you completely.

What People Get Wrong

Myth: "If a follower likes your tweet, it automatically gets shown to strangers."
Reality: Even with follower engagement, if the post or author carries an out-of-network drop label, the visibility filter removes it before feed assembly.
Myth: "Strangers cannot see your post because your score is simply too low."
Reality: A score of 0 ranks low; a VfAction::Drop means the post is entirely excluded from the recommendation candidate batch.

What the Code & Rules Actually Say

visibility-filtering/rules/user_label_drops.rs
Referenced Rules & Signals:
• SPAM_HIGH_RECALL_USER_DROP
• DO_NOT_AMPLIFY_NON_FOLLOWER_USER_DROP
• VfAction::Drop vs VfAction::Allow

The evaluate() fn in user_label_drops.rs checks whether the viewer follows the author. For out-of-network discovery candidates, active account labels return VfAction::Drop; for direct followers, the engine returns VfAction::Allow.

Surgical Action Plan

1 Verify if your impressions are coming almost 100% from existing followers.
2 Check if your profile carries account-level suppression labels via under_the_hood or XPurge audit.
3 Surgically delete spam tweets that keep your account in the suppression state.
Where this shows up in XPurge

Audit your discovery pipeline and diagnose whether your reach bottleneck is a scoring issue or a visibility drop gate.

Run Reach Diagnosis →
Interactive System Blueprint Gamified Course

Want the visual mental model? Explore the full 15-module interactive architecture in Algo Map to earn XP and master how this rule operates in production.

Open Algo Map →

Related Questions