news

Block Buzz: AI Agents Get a Cryptographic Identity (2026)

July 23, 2026

Block Buzz: AI Agents Get a Cryptographic Identity (2026)

On July 21, 2026, Jack Dorsey's Block released Buzz, a free, open-source workspace where people and AI agents share the same channels, code, and workflows.12 The pitch that separates it from every "add a bot to Slack" integration is small but structural: in Buzz, each agent gets its own cryptographic identity.

Instead of running under a shared service account or a borrowed API key, an agent holds its own keypair — plus a second signature that ties it back to the human who authorized it.3 Every action it takes is signed and traceable. Block is betting that this one primitive is what the agent era actually needs.

In one line: Block released Buzz, a free, open-source workspace where humans and AI agents collaborate as equals. Its defining idea is that every agent gets its own cryptographic identity plus a signature linking it to the human who authorized it — creating a tamper-evident chain of custody that API-key integrations can't provide.13

TL;DR

  • What launched: Buzz, an open-source (Apache-2.0) collaboration workspace from Block, built on the Nostr protocol. It shipped July 21, 2026 as an early, pre-1.0 desktop release for macOS, Windows, and Linux; mobile apps are still pending.13
  • The core idea: Every participant — human or agent — holds a secp256k1 keypair. Agents get their own identity plus a second signature binding them to a human owner, so every message, commit, and workflow step is a signed, tamper-evident event.3
  • Why it matters now: About 57% of organizations already run agents in production, per LangChain's 2026 survey, yet 68% say they can't reliably tell an AI agent's actions apart from a human's, per a Cloud Security Alliance study.45
  • What runs in it: Model- and agent-agnostic. Ships with harnesses for Claude Code, OpenAI Codex, and goose, plus a built-in Git forge so teams can host repositories without GitHub.16
  • The catch: It's early software with no announced business model, entering a market where Slack and Microsoft Teams are deeply entrenched — and Block itself is mid-restructuring after a Q1 net loss.37

What You'll Learn

  • What Buzz is and exactly what shipped on July 21
  • How Buzz gives each AI agent a cryptographic identity and a chain of custody
  • Why service accounts and API keys can't answer "who authorized this agent?"
  • What running on Nostr does — and doesn't — mean (it isn't peer-to-peer)
  • Which agents run inside Buzz, and how Block already uses them at scale
  • Whether replacing Slack and GitHub is realistic, and what's still missing

What Block Buzz actually is

Buzz is a collaboration workspace that looks familiar on the surface. It has channels, threads, direct messages, voice, media sharing, code repositories, and automated workflows — the shape of any modern team chat tool.1

The difference is who counts as a participant. In Buzz, AI agents aren't assistants that answer when tagged. They hold their own identities and permissions, and they post, review code, run approved automations, and join conversations alongside humans.1

Dorsey framed the launch bluntly on X: "a new groupchat platform for teams of people and agents of all sizes, built to reduce our dependency on slack and github. Model-agnostic, decentralized, self-sovereign, and open source."3

Block published Buzz under an Apache-2.0 license at github.com/block/buzz. Teams can self-host their own instance, or sign up for Block-hosted infrastructure at buzz.xyz.18

"Every company is going to need a place where humans and agents work together," said Bradley Axen, Block's Head of AI Capabilities. "The question is whether that place is proprietary or open. We built Buzz because we believe it should be open."1

How Buzz gives every AI agent a cryptographic identity

Here's the mechanism. Every participant in Buzz — person or agent — holds a secp256k1 keypair, the same elliptic-curve cryptography that underpins Bitcoin.3

Humans get one keypair. An agent gets its own keypair, plus a second cryptographic signature that ties it back to its human owner.3

That pairing creates a verifiable chain of custody. Block's engineering team describes the design plainly: "The agent's owner signs a narrowly scoped authorization. The agent then signs its own work with its own identity."9 So when an agent merges a pull request or triggers a workflow, the signed record shows two things at once: that the agent acted, and which human authorized it to act.9

This matters because the identity belongs to the agent, not to the platform. It isn't a vendor-managed API key or a login tied to one company's account. It's portable and verifiable, and it can travel with the agent across any Nostr-compatible system.1

The audit trail falls out of the design rather than being bolted on. Every action — a message, a reaction, a commit, a CI result, a review comment, a merge approval — is stored as a signed event, so the log is unified, searchable, and tamper-evident.3

Why an API key was never enough

The question Buzz is really answering is a governance one: which human authorized this agent to do this, and when?

Today, most enterprise agents run under a service account, a user's API key, or session credentials that expire and regenerate. When something goes wrong — a bad commit, an unauthorized call, a workflow that spends money it shouldn't — tracing responsibility back through those layers is a forensic exercise.3

The scale of that gap is measurable. A 2026 Cloud Security Alliance study, commissioned by Aembit, found that 68% of organizations cannot clearly distinguish AI agent activity from human activity in their systems.5

And this isn't a fringe problem. LangChain's 2026 State of Agent Engineering report found roughly 57% of surveyed organizations already run agents in production.4 The agents are doing real work with real access; the accountability layer just hasn't caught up.

A signed keypair changes the default. Unlike an API key — a bearer token that works for anyone holding it — a cryptographic identity proves the specific agent acted, and the owner-signature says who stood behind it.

Typical Slack bot / API-key agentAgent in Buzz
IdentityShared service account or bearer API keyIts own secp256k1 keypair
Human linkImplicit, reconstructed from logs after the factExplicit second signature to the owner
Audit trailSplit across chat logs and code hostOne signed, tamper-evident event log
PortabilityTied to the vendor's platformTravels across any Nostr-compatible system
RevocationDisable the account or rotate the keyIdentity-level, tied to the signed record

Table: How agent identity and accountability differ between a conventional API-key integration and an agent in Buzz. Source: NerdLevelTech analysis of Block's Buzz announcement, engineering blog, and repository docs, July 2026.

Built on Nostr: what "decentralized" really means here

Buzz runs on Nostr — short for "Notes and Other Stuff Transmitted by Relays" — an open protocol created in 2020 and best known for censorship-resistant social apps. Dorsey has backed Nostr financially for years.3

In Nostr, every event is a small, signed JSON object — it carries an id (a hash of the content), the sender's public key, an event kind, arbitrary tags, and a Schnorr signature. In Buzz, those events cover every action in the workspace.3

One architectural nuance matters if you're evaluating it. Buzz is not peer-to-peer. Each deployment runs on a single authoritative relay.3

So "decentralized" here means any organization can run its own relay and keep full control of its data, configuration, and agents — not that there's no central server within a given deployment.3 Block also runs a hosted relay, free during the beta.1

Self-hosting is real but not trivial. The quick-start path needs Docker and Hermit — or a manual toolchain of Rust 1.88+, Node 24+, pnpm 10+, and the just task runner.10 Notably, Block says it specified Buzz's Git-on-object-storage protocol in TLA+ and model-checked it for durability, reconstruction, and concurrent pushes — an unusual level of formal rigor for such early software.9

The agents (and the Git forge) inside Buzz

Buzz is model-agnostic and agent-agnostic. It ships with harnesses for three coding agents: Anthropic's Claude Code, OpenAI's Codex, and goose — the terminal-first coding agent Block open-sourced in January 2025 and later contributed to the Linux Foundation's Agentic AI Foundation.111

Those harnesses connect through the Agent Client Protocol (ACP) — Block says any agent that "speaks the Agent Client Protocol" can work in Buzz.9 ACP is the open standard Zed Industries introduced in August 2025 to wire agents into developer tools the way LSP standardized language servers for editors.12

Buzz also includes a built-in Git forge, so teams can host repositories inside the workspace rather than on a separate host. Feature branches become channels, and patches, CI results, and review comments land as signed Nostr events beside the discussion that produced them.9 Block notes the Git hosting backend is still being wired up.1

Block is its own first customer: the team says it built Buzz inside Buzz, even drafting the launch write-up "in a Buzz channel with our team and our agents."9

Block already runs agents at scale, too. Its internal BuilderBot system logs 200,000 operations a day, merges about 1,500 pull requests a week, and accounts for roughly 15% of the company's production code, per figures Block posted on X.13

There's an irony worth noting: BuilderBot is orchestrated from Slack today, with engineers tagging it in a thread.13 Buzz is Block eating its own dogfood to move that work off Slack and into a workspace it controls.

Replace Slack, or live inside it?

Buzz reflects one side of a genuine strategic fork in how AI agents enter the workplace. Block's bet is to replace the incumbent tools — a Nostr-native workspace built for agents from the protocol layer up.

The other side is to upgrade the incumbent. In May 2026, Paradigm and Tempo open-sourced Centaur, a "multiplayer, self-hosted, secure" agent that lives inside Slack or runs via an API.14 Paradigm's Georgios Konstantopoulos has argued that the near-term opportunity is embedding capable agents in the tools teams already use, not asking them to switch wholesale.3

The incumbents are formidable. Slack and Microsoft Teams together dominate enterprise messaging — Teams counts hundreds of millions of monthly active users, and Slack reaches a large majority of the Fortune 100 by third-party estimates.3 Distribution like that isn't overcome by a better identity model overnight.

Block also isn't launching from a position of financial strength. The company reported a Q1 2026 net loss of about $308.7 million, reversing a roughly $190 million profit a year earlier, amid AI-driven restructuring and a workforce reduction of more than 40%.7 Buzz enters as a free, Apache-licensed product with no announced commercial trajectory.

What Buzz can't do yet

This early in its life, Buzz is infrastructure Block has published openly, not a polished product. Mobile apps are unfinished, push notifications are pending, and some workflow features lack complete execution paths.10

The self-hosted path takes engineering time — standing up a Nostr relay, managing Rust and Node versions, and wiring in existing databases and codebases before the first channel exists.3

That narrows the immediate audience to software teams already coordinating AI agents across a codebase and willing to run their own infrastructure. Solo operators and non-technical teams aren't the target, and Buzz doesn't pretend otherwise.3

The open-source model also defers the question every open-core enterprise tool eventually faces: what pays for it? Block says the hosted relay is free during beta. It hasn't said what comes after.3

The Bottom Line

Strip away the Slack-versus-GitHub headline and Buzz is an argument about a single missing primitive: identity. As agents move from experiments to production — roughly 57% of organizations already run them4 — the tooling built for human-only teams has no clean way to answer who authorized an agent to do something.

Buzz's answer is to give every agent its own keypair and bind it to a human with a second signature, so accountability is legible by default instead of reconstructed after an incident. That's a genuinely novel foundation, and Block is already running its own agents against it.9

Whether it dislodges anyone is a different question. Buzz is early, unmonetized, and up against a Slack–Teams duopoly, from a company mid-restructuring.7 The identity idea may well outlast the app — the more durable claim here isn't that Buzz replaces Slack, but that "which human authorized this agent, and when" is about to become a requirement, not a nice-to-have.


Working with AI agents that take real actions? Related reading: treating AI agents as insider threats, Microsoft's Agent 365 control plane, and agent-to-agent identity in the A2A protocol.

Footnotes

  1. Block, "Introducing Buzz: where humans and agents work together" (July 21, 2026). https://block.xyz/inside/introducing-buzz-where-humans-and-agents-work-together 2 3 4 5 6 7 8 9 10 11 12 13 14 15

  2. TechCrunch, "Jack Dorsey is taking on Slack with Buzz, a group chat platform for teams and their AI agents" (July 21, 2026). https://techcrunch.com/2026/07/21/jack-dorsey-is-taking-on-slack-with-buzz-a-group-chat-platform-for-teams-and-their-ai-agents/

  3. Brandon Fisher, "Block Launches Buzz: Open-Source Workspace Where AI Agents Sign Their Own Work," Tech Times (July 22, 2026). https://www.techtimes.com/articles/321242/20260722/block-launches-buzz-open-source-workspace-where-ai-agents-sign-their-own-work.htm 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23

  4. LangChain, "State of Agent Engineering" (2026). https://www.langchain.com/state-of-agent-engineering 2 3

  5. Cloud Security Alliance and Aembit, "Identity and Access Gaps in the Age of Autonomous AI" (survey; press release March 24, 2026). https://www.businesswire.com/news/home/20260324161665/en/More-Than-Two-Thirds-of-Organizations-Cannot-Clearly-Distinguish-AI-Agent-from-Human-Actions 2 3

  6. The New Stack, "Block built a Slack for AI agents — and gave each one its own passport" (July 2026). https://thenewstack.io/block-buzz-agent-workspace/

  7. Block, Inc. Q1 2026 Form 10-Q (net loss of $308.68 million vs. net income of $189.87 million a year earlier; workforce reduced more than 40%). https://www.stocktitan.net/sec-filings/XYZ/10-q-block-inc-quarterly-earnings-report-e5533e74dbf0.html 2 3

  8. Buzz, official site. https://buzz.xyz/

  9. Tyler Longwell, "Buzz! 🐝," Block Engineering Blog (July 21, 2026). https://engineering.block.xyz/blog/buzz 2 3 4 5 6 7

  10. Block, "block/buzz" repository README (GitHub, accessed July 2026). https://github.com/block/buzz 2

  11. goose, Linux Foundation Agentic AI Foundation. https://github.com/aaif-goose/goose

  12. Zed Industries, "Agent Client Protocol." https://zed.dev/acp 2

  13. Block (@blocks) on X, BuilderBot metrics (200,000 operations/day, 1,500 PRs/week, ~15% of production code). https://x.com/blocks/status/2067284573482815979 — see also Block, "Block rolls out Builderbot." https://block.xyz/inside/block-rolls-out-builderbot-a-new-suite-of-ai-native-tools-that-changes-the-way-we-ship 2

  14. Paradigm, "Open Sourcing Centaur: Multiplayer, self-hosted, secure agents" (May 2026). https://www.paradigm.xyz/2026/05/open-sourcing-centaur-multiplayer-self-hosted-secure-agents

Frequently Asked Questions

Buzz is a free, open-source collaboration workspace from Block, released July 21, 2026, where humans and AI agents work together in shared channels with chat, voice, code repositories, and workflows. It's built on the Nostr protocol and licensed under Apache-2.0, and its distinguishing feature is that every agent holds its own cryptographic identity. 1