Archive X threads as Markdown
EN PT ID

X Communities Shutdown 2026: XChat Replaces Public Groups

August 13, 2026 · 9 min read · Guide

On April 23, 2026, TechCrunch reported that X was shutting down Communities, its public, topic-based groups. The reason was blunt: Communities were used by a tiny fraction of members, and most of that activity was spam. On May 6, 2026 the feature went away, and X pointed users toward group chats and its new stand-alone messaging app, XChat, which launched publicly on iOS the same week.

This is not just a product change. It is a signal about where X is taking the conversation — away from public, searchable, grabbable spaces and toward private messaging. For anyone who cares about keeping the threads that matter, that shift matters a lot.

Quick take: X killed its public Communities because almost nobody used them and almost all of that use was spam. The replacement, XChat, is a private messaging app with group chats, disappearing messages, and its own business ambitions. As X pushes conversation behind the messaging layer, the public threads you can still save and archive become proportionally more valuable — so the durable move is to grab them now, while they are still public.

Why X Shut Down Communities

X's head of product, Nikita Bier, explained the decision on X on April 23, 2026. His message, as reported by TechCrunch, was direct: “We're going to be investing heavily in XChat. Communities had a great vision, but they were used by less than 0.4% of users—yet contributed to 80% of spam reports, financial scams, and malware on X. It occupied half the team's time some weeks, while the rest of the app suffered.”

Two numbers stand out:

Bier also noted that of the few Communities that succeeded, most were “user-acquisition channels for Kick or compensated clipper communities” rather than genuine interest spaces. In other words, Communities generated a disproportionate share of the platform's abuse and very little of its value, so X decided the feature was not worth maintaining.

Note: the shutdown was announced April 23, 2026 with an effective date of May 6, 2026. X later extended the migration deadline to May 30, 2026 so Community admins could move their members to the group chat experience. If you relied on a Community that has since closed, its public archive may already be gone from the timeline.

XChat: The Private Replacement

The week Communities went away, X launched XChat, a stand-alone messaging app, publicly on iOS. TechCrunch reported that the app offers messaging, file sharing, audio and video calls, and group chats, and that it also includes private chats and disappearing messages.

A few details make XChat's role clear:

The transition matters because the two products sit on opposite sides of a boundary: Communities were public — anyone could find them, search them, and link to them. XChat is private — it is a messaging app, and what happens inside it is not part of the public web that search engines and archive tools can reach.

Public vs. Private: Why the Shift Matters for Creators

For a creator, researcher, or anyone who treats social content as a record, the difference between public and private is the difference between saving and not being able to save at all.

A public thread is a URL. You can open it, link to it, cite it, and save it. A private message or a disappearing chat is none of those things. Once X moves a conversation behind the messaging layer, that conversation is effectively closed to you — even if you were part of it, the platform decides how long it lasts and whether you can export it.

The pattern across the industry is the same direction:

SpacePublic & grabbablePrivate & hard to save
X posts & threadsTimeline, search, linksAccount-level controls
X CommunitiesWere public, now shut down
X DMs / XChatPrivate chats, disappearing messages
Bluesky / LinkedInPublic posts, feedsPrivate DMs, group chats

As the tables turn toward the private column, the public content that remains is the only part of the record you can actually own. That is why a grab-and-archive workflow matters now more than ever.

How to Save Public Threads Before They Disappear

Here is a repeatable workflow for keeping the public threads that matter to you, while the rest of the platform moves behind private chats:

  1. Decide what is worth keeping. Quotes, research findings, public debates, and posts you may cite are the highest-value targets.
  2. Grab the original while it is public. Save the thread as Markdown from the current public version, not from a screenshot or a private share.
  3. Store the provenance. Keep the source URL, account, and date beside the text so you can reconstruct where it came from and when.
  4. Version it. Plain-text Markdown lives happily in git, so you get a history of changes and a backup for free.

A small Python call using X's public API pulls a thread's text into Markdown before the platform changes anything about how it is exposed:

import json, urllib.request, urllib.parse

def grab_tweet(tweet_id):
    url = ("https://api.x.com/2/tweets/" + tweet_id
           + "?tweet.fields=lang,text,created_at")
    req = urllib.request.Request(url,
        headers={"Authorization": "Bearer YOUR_TOKEN"})
    data = json.load(urllib.request.urlopen(req))
    tw = data["data"]
    print("## language:", tw.get("lang", "unknown"))
    print(tw.get("text", "") + "\n")

grab_tweet("1791234567890123456")

For a full conversation, add pagination with the pagination_token field and dedupe by tweet ID so no reply is skipped. The API returns the current public text with its language tag — the exact copy you want before private chats replace public spaces.

Build Your Own Markdown Archive

Because you are saving plain text, you control the structure. Keep each language version in its own folder, name files by date and slug, and store the provenance in a small header. Everything remains readable without an X account and feeds into any AI, publishing, or cross-posting workflow you add later.

x-archive/
  pt-br/
    2026-08-13-encerramento-comunidades.md
  id/
    2026-08-13-penutupan-komunitas.md
  en/
    2026-08-13-communities-shutdown.md

Name each file by the post's date and slug, keep the original language in the file body, and add your notes or translation below a clear divider. Because it is all files, the archive survives account deletions, platform changes, and UI redesigns — the things that regularly take public content away.

Comparison With Other Platforms

X is not alone in steering the live conversation toward messaging. The lesson generalizes across the social web:

Every platform wants to move the durable conversation into its owned messaging layer. The one constant is that you are the only one who reliably keeps the public side of the record.

Rule of thumb: save the moment you care about something. A thread you could link to last week can be inside a private chat next month. Grab it while it is public, and you keep the copy forever.

The Bottom Line

The Communities shutdown was framed as a cleanup of an underused, spam-heavy feature, and that is true. It is also a directional statement: X is investing in XChat, in private group chats, and in stand-alone messaging, while removing a public, searchable surface. More of the conversation on the platform is moving somewhere you cannot reach with a link.

The practical response is not to fight the shift, but to act on what it means. The public threads that remain are the part of the record you can still own. Grab them as Markdown while they are accessible, keep the source and date, and archive the language version you need. That way, whether X burns down the next public feature or a disappearing chat swallows the conversation, the record you cared about lives on your disk — not behind a private app.

Keep the public threads that matter before the conversation goes private. ThreadGrab converts X threads and long-form articles into clean Markdown, downloads the media to your own disk, and keeps the original language and provenance beside the text — so the record you care about is never trapped behind a private chat or a platform decision.

Try ThreadGrab

FAQ

Why did X shut down Communities?

X shut down Communities on May 6, 2026 because very few members used them and most of that activity was spam. X's head of product Nikita Bier said the feature was used by less than 0.4% of users yet produced about 80% of spam reports, financial scams, and malware on the platform, and that it consumed half the team's time in some weeks.

What replaced X Communities?

X moved conversation into group chats inside the app and into XChat, a stand-alone messaging app that launched publicly on iOS in April 2026. Community admins were told to migrate their members to the revamped group chat experience, and XChat supports joinable group-chat links that can be shared on the timeline, pinned, and scaled to hundreds of members.

Is XChat different from regular direct messages?

Yes. XChat is a separate app for messaging, file sharing, audio and video calls, group chats, private chats, and disappearing messages. It is a key part of X's plan to become an everything app, with messaging and payments intended as independent services built around the social network. X's lead designer called it just the beginning of what the company is building for messaging.

What does the Communities shutdown mean for public content?

It signals a shift away from public, searchable spaces toward private and semi-private chats. Public Communities were indexable and easy to search; group chats and standalone messaging are not. As more of the conversation moves behind the messaging layer, the public posts and threads that remain are the part you can still grab, archive, and keep on your own disk.

How do I save public X threads before they disappear?

Grab each thread as Markdown while it is still public. A tool like ThreadGrab converts an X thread or long-form article into a clean Markdown file with media downloaded locally. Because Markdown is plain text, you can keep it in git, index it, search it, and re-read it even if the account, the post, or the platform changes. Save the source URL and date beside the text.