Archive X threads as Markdown
EN PT ID

Bluesky App Decline 2026: The Protocol Pivot Changes Archiving

August 14, 2026 · 8 min read · Guide

In November 2024, Bluesky was one of the biggest winners of the exodus from Elon Musk's X. Nearly two years later, the numbers tell a different story. TechCrunch reported on August 11, 2026 that Bluesky's mobile app had about 10.4 million monthly active users worldwide in June 2026, down 27.2% year-over-year, according to data from Similarweb. Mobile daily active users also kept falling, dropping 25.6% year-over-year in July to roughly 3 million.

That decline is part of a bigger shift. Bluesky's new CEO, Toni Schneider, has been clear that the company is not entirely focused on making the Bluesky app succeed. Its goal is to make the underlying AT Protocol (atproto) power a growing number of social apps, services, and communities. As the app becomes a smaller, more deliberate part of the network, the public threads that remain on it become more valuable — and more worth archiving as Markdown while they are still public.

Quick take: Bluesky's app lost more than half its monthly active users from its late-2024 high (about 22.1 million down to 10.7 million by Q2 2026, a decline of roughly 52%). Meanwhile the company is pivoting toward the AT Protocol, third-party apps like BlackSky, Skylight, and Eurosky, and private data. For anyone who treats social content as a record, the durable move is to grab the public Bluesky threads you care about now, as Markdown, before the conversation shifts to places you can no longer reach.

The Numbers: A Peak That Didn't Hold

Similarweb's data, as cited by TechCrunch, tells a clear story of decline after the 2024 surge:

Bluesky's own public stats say the company now has nearly 46 million registered users, so more people keep creating accounts. But it does not share specific daily or monthly active usage numbers. Similarweb's figures suggest that many who joined because they were unhappy with X have not stuck around long-term.

Those who did stay are engaged. Bluesky's stickiness rate — the ratio of daily to monthly active users — was about 29% in June, roughly the same as Threads. It is not an app abandoned by everyone; it is an app where the remaining community is comparatively committed.

Note: the article was verified from the TechCrunch source article (Aug 11, 2026), which uses Similarweb data. Independent coverage of the same trend appeared the next day (Aug 12, 2026) from outlets including GIGAZINE (monthly usage down 27% year-on-year), financial aggregators noting monthly active users halved from the peak, and Global Dating Insights on Bluesky's mobile usage falling as the platform broadens its focus.

Beyond the App: The AT Protocol Pivot

The reason the app numbers matter less to Bluesky's leadership is that the app is not the whole product. Toni Schneider has said the company is working to make the AT Protocol the foundation for many social apps and services, not just the Bluesky client. Several AT Proto projects illustrate that direction:

The company is also working on adding support for private data to Bluesky. That is aimed at a different kind of user — people less interested in the public square and more interested in private networking and communities. You can read about the open protocol and its data model on the official AT Protocol site and in the open-source repository.

What the Pivot Means for Public Content

The protocol pivot changes what "Bluesky" means as a place. When a company's center of gravity moves from a public app to a protocol plus private data, the public app becomes one surface among many — and a shrinking one. Public threads are still URLs you can open and save today, but the network's direction is toward private networking and third-party surfaces that are harder to reach and search.

This mirrors a broader pattern across social platforms: public, indexable, grabbable spaces are getting smaller while private and semi-private ones grow. For a researcher, a creator, or anyone who treats social content as a record, the practical implication is the same — save the public threads that matter while they are still public.

Why Markdown Is the Durable Archive Format

When you archive a Bluesky thread, the format matters as much as the act of saving. A platform-specific export (a JSON dump, a screenshot, a proprietary backup) tends to go stale: the app changes, the export tool breaks, or the file becomes unreadable outside one program. Markdown avoids that because it is plain text.

A Markdown archive keeps:

A Simple Save-and-Archive Workflow

You can build a minimal archive with standard tools. First, fetch a public thread and save the text to a dated file, then commit it to git so the record is durable and versioned:

mkdir -p bluesky-archive/2026-08/
curl -L "https://public.api.bsky.app/xrpc/app.bsky.feed.getPosts?uris=at://did%3Aplc%3A_EXAMPLE/app.bsky.feed.post/3lkb7_example" \
  -o bluesky-archive/2026-08/thread.json
python3 -m json.tool bluesky-archive/2026-08/thread.json > /dev/null
git add bluesky-archive/2026-08/thread.json
git commit -m "archive Bluesky thread 2026-08-14"

That keeps the raw record. For a cleaner reading copy, convert the thread to Markdown and keep a small directory layout per language so you can find anything later:

bluesky-archive/
  en/
    2026-08-14-bluesky-app-decline.md
  pt-br/
    2026-08-14-declinio-bluesky.md
  id/
    2026-08-14-penurunan-bluesky.md

A dedicated tool makes this faster and keeps the output consistent. ThreadGrab converts the thread or post into a clean Markdown file with the media downloaded locally, and keeps the original language and provenance beside the text, so the archived record is complete and easy to re-read.

The Bigger Picture: Private Grows, Public Shrinks

Bluesky's pivot is one more signal in a year defined by the shift from public to private social. X retired public Communities and pushed conversation into its XChat messaging app. LinkedIn keeps tuning long-form feeds while pushing more into algorithmic timelines. And now Bluesky — once the flagship of the open, public social web — is telling investors and users that its future is a protocol plus private data, not just a public app.

The common thread: the public content you can grab today is more finite than it looks. A feature turns off, a community closes, an app changes direction. The posts that remain are the ones you can still turn into a durable, searchable, personal record. Doing that while they are public is the only way to keep them.

Keep the public threads that matter before the conversation shifts. ThreadGrab converts Bluesky, X, and long-form social posts 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 an app decision or a shrinking public feed.

Try ThreadGrab

FAQ

Is Bluesky losing users in 2026?

Bluesky's mobile app had about 10.4 million monthly active users worldwide in June 2026, down 27.2% year-over-year, and mobile daily active users fell 25.6% in July to roughly 3 million, according to Similarweb data reported by TechCrunch. From its late-2024 high of about 22.1 million quarterly monthly active users, the app has lost more than half of its usage, while Bluesky still reports about 46 million registered accounts.

Why is Bluesky's app shrinking while its focus grows?

CEO Toni Schneider has said the company is not entirely focused on making the Bluesky app succeed, but on making the underlying AT Protocol power a growing number of social apps, services, and communities. Projects like BlackSky and Eurosky are growing, the video-focused AT Proto app Skylight has found early traction, and the company is adding support for private data. Those who stuck around remain engaged, with a stickiness rate of about 29% in June, similar to Threads.

What does Bluesky's protocol pivot mean for archiving threads?

As Bluesky puts more energy into the AT Protocol, third-party apps, and private data rather than the main public app, the public threads that remain on the app become a smaller, more deliberate part of the network. The durable move is to archive the public threads you care about as Markdown now, while they are still public and grabbable, so the record survives no matter how the app or the network evolves.

Did Bluesky users return to X?

Similarweb's data does not suggest that Bluesky users returned to X. X's worldwide monthly active users on mobile were down about 3% year-over-year in June, and mobile daily active users dropped 7% in July to 123.7 million. The app that is clearly growing is Threads, whose daily active users rose 21.3% year-over-year to 147 million in July 2026.

How do I save Bluesky threads as Markdown?

Fetch each public thread and convert it to a clean Markdown file with the media downloaded locally. A tool like ThreadGrab turns a Bluesky thread or post into plain-text Markdown you can keep in git, index, search, and re-read even if the account, the post, or the platform changes. Save the source URL and the original date beside the text so provenance stays intact.