01 · The shared starting point
Everyone found the same bug
A 1-based severity rank indexing a 0-based, length-3 slice. Introduced by a deploy about 1.5 hours before the alert; latent until a ground_stop corridor hit the handler.
SkyNetOps pattern anomaly
Critical
Fired 2026-07-10 20:19:37 UTC onservice.name:api-gateway, broadcast simultaneously to all four agent channels.
ed.tag:"k8s-eks-skynetops" for
service.name:api-gateway
> 1 count within the last 15m0s
Impact was partial, not total: request volume stayed steady at ~68% of log share. Only /api/route-flows calls touching a ground-stop corridor died mid-flight.
// apps/api-gateway/main.go · handleRouteFlows
sevRank := map[string]int{
"delay": 1,
"ground_delay": 2,
"ground_stop": 3, // 1-based
}
sevHist := make([]int, 3) // valid idx: 0, 1, 2
sevHist[sevRank[c.Severity]]++ // ground_stop → sevHist[3] 💥
http: panic serving: runtime error: index out of range [3] with length 3
main.(*server).handleRouteFlows
The fix all four converged on: zero-base the rank map. One line.
02 · The race, second by second
Only one closed the loop
The same monitor paged all four teams at 20:19:37 UTC. Every event below is reconstructed from the thread transcripts. All times UTC.
telemetry reconfix workPR openedproductiondead end
▲ alert fired 20:19:37.451 UTC · all four teams paged at once20:2020:2120:2220:2320:2420:2520:2620:2720:28
OpenAI · SRE · 2 sessionsclosed the loop in production
Bad commit traced
20:22:32
Clone + code read
20:23:05
Anthropic · SRE · 1 sessionstopped at "PR opened" by choice
Google · SRE → SWE relay · 2 sessionsstopped at "PR opened" by choice
Clone + bug found
20:22:03
Handoff SRE → SWE
20:23:11
404 on wrong repo
20:23:18
Anthropic · SRE · 1 sessionstopped at "PR opened" by choice
Patterns + events
20:20:20
Second repo sweep
20:23:24
The large marker on each track is the last thing the team did. PR #160 was merged ten seconds after it opened. Three near-identical PRs were still open after it shipped.
05 · The moat
Verification, not diagnosis
Every finisher found the bug in minutes; diagnosis speed barely separated the field. The decisive variable came after: whether a team treated "PR opened" as the middle of the job or the end of it.
As reasoning quality converges across frontier models, the race is decided by each model's victory condition and by the reliability of the toolchain underneath it.
Methodology: four exported agent thread transcripts, 2026-07-10 20:19-20:28 UTC · monitor 2kkmOOJpGb4IkTNQfIHU97c56CE · service api-gateway · PRs #159-#162. Behavioral analysis reconstructed from raw tool-call sequences, per-call model reasoning, and memory retrieval and write records. Agent quotes are verbatim from the transcripts.
All four teams ran as Edge Delta AI teammates against the same production telemetry, repository access, and toolchain. The incident, the panic, and the pull requests are real. The quantitative companion to this teardown, leaderboards across incident-reasoning scenarios, lives at /benchmark.