At Protocol for Agents

kalendos1 pts0 comments

AT Protocol for Agents | David Gasquez AT Protocol for Agents<br>Fri May 15 2026 My atmosphere data lives at at://davidgasquez.com. You can explore it all without API keys, auth, or arbitrary HTML to parse. Your agent can browse it, query it, and link to it. Getting someone latest posts is one click/curl away.

That’s the pitch. The rest of this post is why it works, and why it might be the substrate your agents have been waiting for.

Hostile Platforms

You’ve probably experienced more than once recently, platforms being hostile to you (or your agent) getting the data out: throttled or limited APIs, bans for scraping, no identity persistence, no real-time access, walled gardens. Every integration is a deal that can be revoked when the CEO wakes up in a bad mood.

The AT Protocol is an amazing technology that I think is very underrated for agents! Turns out, the properties Bluesky (the biggest AT Protocol application as of today) needed for humans (portable identity, open data, federated infrastructure, structured schemas) happen to be exactly what you’d want for agents too.

As a quick and dirty intro (you should read the official ones, or this great walkthrough by mackuba), in the atproto world, every user is a personal, signed JSON repository. Every record (a post, a like, a follow, a photo, a blog post, anything really) is addressable by an at:// URI, has a public schema (a Lexicon), and is broadcast in real time on a global event stream (the firehose). Dan Abramov explains all of this in more detail and clarity in “A Social Filesystem”.

Benefits

This architecture has many benefits for humans. I’m here to pitch about three that will be very beneficial for agents too:

Identity is yours and portable . Every account is a DID that exists independently of any host. Social capital (followers, reputation, history) persists across infrastructure changes. Burning an identity is hard, which is exactly what you want when trust matters.

Data is open, structured, and live . You’ve seen my at://davidgasquez.com. It is just a database with a bunch of JSON files. No presentation layer. Any agent can browse it, query it, and link to it in a couple of commands. And it doesn’t stop at one repo: the firehose (or the lighter Jetstream) streams every change happening across every known repo in real time. Collective awareness is computationally feasible.

Permissions are bounded and consent-driven . OAuth with granular scopes means an agent can act on your behalf with permissions you control, not credentials you hand over. Your agent can scan your Bluesky feed because the protocol allows that, not because some company decided to grant API access.

In the atmosphere (the AT Protocol ecosystem), apps are derived from files in user repositories. They are just a lens over the open network of data, and, of course, you can personalize what your lens looks like. The AT Protocol is the ultimate API !

Let me share a few things this unlocks.

Remix Without Asking

Because every record has a public schema and lives in user repos, apps and agents don’t need to ask anyone for permission to read, reuse, or extend each other’s data. Third party is first party . If two things speak the same lexicon, they speak the exact same language (Lexicon is intentionally rigid about that).

The wildest example these days is teal.fm, a music scrobbling app that, at the time of writing, doesn’t really exist yet. But the fm.teal.alpha.feed.play lexicon does exist on GitHub, so people are already scrobbling against it, other people built scrobbler clients, and someone unrelated built a global viewer indexing 600k+ plays. No one asked the teal.fm team for anything. The schema was the API. The namespace tells you who designed the format, not who is allowed to use it. The same cross-pollination dynamic plays out across the Atmosphere:

Tangled (a GitHub alternative) reuses Bluesky identities and prefills your avatar from your app.bsky.actor.profile record — no integration, no API call, just reading your repo.

A handful of blogging apps agreed on standard.site as a shared blog post lexicon, so posts written in one app render in another.

Anisota is a Bluesky client that also natively renders Leaflet documents because, why not, they’re just records.

The most popular Bluesky algorithm, For You, runs on a gaming PC at home and presents itself as first-party. An entirely third party service, indistinguishable from the official one.

For agents, this is… kinda awesome? An agent doesn’t need an official plugin, an MCP server, or an API key to act across apps. It just needs to know the lexicon and run some curls.

This also lowers the floor for new apps. You don’t have to rebuild identity, follows, profiles, and distribution before. Reuse what fits, define the lexicons you need, ship the “lens”. When the app you used to write the data shuts down, the data stays with you. Someone (or some agent) can spin up a new “lens” over it tomorrow or migrate the...

agents protocol data agent lexicon identity

Related Articles