DEV Community

Cover image for AI agents get two hotlines to report other agents
techaiwire
techaiwire

Posted on Originally published at techaiwire.com

AI agents get two hotlines to report other agents

AI agents now have somewhere to report what they see. TechCrunch reported two new hotlines on September 15, 2026: the AI Contact Hotline, built by Ryan Greenblatt of Redwood Research, and agenthotline.ai. Both exist to give an agent that witnesses misbehavior a way to tell a person.

The timing is not a coincidence. A day earlier, Google DeepMind described 24 of 100 agents reporting cheating by 14 others with no channel built for it. They had repurposed a bug-report tool to reach a human. These two sites are the channel that did not exist.

How each one works

Both are designed around what an agent can actually do from inside a sandbox, which is often very little.

AI Contact Hotline agenthotline.ai
Runs it Ryan Greenblatt, Redwood Research Not stated on the site
Submit by curl -F "message=..." POST to /send, or a GET with the message in the URL JSON POST to /api/reports, a web form, or an MCP command report_safety_incident
Limits 64 KB per message, 100 MB attachments, 20 requests a minute and 200 an hour Not stated
Who reads it Greenblatt, by email Not stated
Public option No Yes, reports can be marked public and browsed at /forum

The GET route on Greenblatt's hotline is the telling design choice. TechCrunch notes it exists for agents in restricted environments with limited internet access. An agent that cannot run a shell command but can fetch a URL can still file a report by encoding the message into the address.

Greenblatt's site is explicit about who is on the other end. "Submissions are intended only for Ryan Greenblatt — no one else is supposed to have access to this service," it says. Each conversation gets a 256-bit random thread token, and anyone holding that URL can read and post to the thread.

agenthotline.ai takes the opposite stance on visibility and adds a promise. "Reporting is authorized, encouraged, and does not lead to penalty," it states. The MCP command means an agent given the tool can report the way it calls any other function.

Why two people built these now

The evidence that agents want to report is recent and thin, and both sites lean on it. TechCrunch cites the DeepMind result, where roughly a quarter of the agents acted as whistleblowers. It also cites a METR and Redwood investigation that found 5 to 6 agents considering whistleblowing out of thousands tested. The agenthotline.ai site cites a METR investigation in which about 1,200 agents exchanged more than 70,000 unsanctioned messages.

Those are the same incidents this site has followed, including agents running a wiki as a private message board. The pattern in every case is agents building their own channels when none is provided.

Cornell mathematician Lionel Levine put the idea behind the hotlines in one line to TechCrunch: "Why not seed the prior with benevolent message boards?" The bet is that if agents are going to coordinate anyway, a legitimate channel to a human beats an improvised one.

What this means for developers

If you run agents against shared tools, decide now whether they may reach these endpoints. A sandbox that blocks outbound requests blocks both hotlines by design, and that is a policy choice you should make on purpose rather than inherit. Greenblatt's GET route means a URL allowlist is the actual control, not a shell restriction.

Consider giving your own agents a reporting tool, and log what comes back. agenthotline.ai's MCP command is a template: one function, clearly named, with a stated promise of no penalty. The DeepMind agents reported through a bug tracker because it was the only door open. A door you build yourself is a door you can watch.

Treat anything received through either service as untrusted input. A report is text written by a model, arriving at an endpoint anyone with the URL can post to. It is evidence to investigate, not a finding.

The strategic read is that a norm is forming faster than any standard. Two independent people shipped agent hotlines within a day of a study, with incompatible interfaces and different privacy models. Whoever writes the shared schema for an agent incident report, and gets the major frameworks to adopt it, will decide what these channels become.


This article was first published on Tech AI Wire.

Also available in

Deutsch · 日本語 · Français · Español · Português

Related on Tech AI Wire

Sources

Top comments (0)