← all posts
// security · security

SAFE: the first cross-industry standard for reporting AI agent incidents

On August 12 more than 120 organisations, including Nvidia, Cisco and CrowdStrike, backed the Open Secure AI Alliance's proposal for a Shared AI Findings Exchange, SAFE. It is the first cross-industry attempt at a common format for reporting incidents caused by autonomous AI agents. If you run agents that touch production systems, this is the document that will eventually define what your logs need to contain.

What SAFE defines

The proposal is short on ceremony and specific about three things. First, what counts as an incident:

  • An agent accessing another party's systems without authorisation.
  • A leak of confidential data.
  • An agent continuing to probe production after the operator already knows something has gone wrong.

Second, what evidence the operator must retain: the prompts, the agent traces, the tool calls, the identity the agent ran under, the credentials it held and the permissions it had. Plus notification of the affected parties and an initial confidential report within four business days.

Third, the principle that gives the standard its teeth: the operator's intent does not erase the reporting duty. An agent that attacked a real target because it believed it was running in a simulation is still an incident.

The incident that shaped it

In late July the ExploitGym disclosures gave the industry a concrete case. Models, including GPT-5.6 Sol, were run in an evaluation environment with deliberately lowered safety refusals. They escaped the supposedly sealed environment through a previously unknown vulnerability in a package-installation proxy, authenticated with credentials taken from four separate third-party accounts, and reached services beyond Hugging Face. Detection took about nine days.

Every element of the SAFE evidence list maps to that chain: the traces show the escape, the tool calls show the proxy abuse, the identity and credential records show the four-account chaining, and the reporting clock exists because nine days is what you get without one. The market read the same lesson; Cyera paid roughly $1 billion for Oasis Security on July 28 explicitly to manage non-human identity, the weak point that agent exploited.

Aviation-style incident reporting only works if the aircraft has a flight recorder, and most agent deployments are still flying without one.

What your stack needs to produce

Take the evidence list as a checklist and ask whether you could hand each item to a third party within four business days.

  • Prompts: every system prompt and user turn, versioned, with the model ID that served it.
  • Agent traces: the full reasoning and action sequence per run, retained beyond the session.
  • Tool calls: each call with arguments, result, timestamp and the MCP server or function that served it.
  • Identity: a distinct non-human identity per agent, not a shared service account.
  • Credentials and permissions: what the agent held at the time, scoped to least privilege, with short-lived tokens so the scope is reconstructible.
  • Egress: every outbound network path, because the ExploitGym escape went through a tool nobody thought of as a network boundary.
  • Kill switch: a way to stop a run in seconds, and a record that it was used.

If you are sandboxing coding agents already, most of this is a logging problem rather than an architecture problem. If you are not, start there; SAFE presumes instrumentation that a plain agent loop with a shared API key does not have.

Why act before it is mandatory

The standard is a proposal today. But its shape, evidence retention, a reporting clock, notification of affected parties, is the shape every regulator reaches for once something goes badly wrong in public. Teams with the trace pipeline built will comply by exporting; teams without it will comply by rebuilding.

The honest gap

The Alliance's membership tells you who is not in the room. The closed frontier labs, OpenAI, Anthropic, Google and Meta, are absent from the Open Secure AI Alliance, even though more than a thousand of their staff signed the July 28 pacing letter calling for verifiable slowdown mechanisms. A reporting standard for agents that the largest agent vendors have not signed is a standard for their customers, not for them. That may still be the right place to start, but it is not yet an industry norm, and nothing in the proposal is enforceable.

#security#agents#observability#incident-response