renderfy commited on
Commit
c9d288d
·
verified ·
1 Parent(s): 6dfb012

Runopsy-Bench: 20 labelled traces for failure-onset localization

Browse files
Files changed (2) hide show
  1. README.md +116 -0
  2. runopsy_bench.jsonl +20 -0
README.md ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ task_categories:
4
+ - other
5
+ tags:
6
+ - agents
7
+ - observability
8
+ - failure-analysis
9
+ - root-cause-analysis
10
+ - tracing
11
+ language:
12
+ - en
13
+ pretty_name: Runopsy-Bench
14
+ size_categories:
15
+ - n<1K
16
+ ---
17
+
18
+ # Runopsy-Bench
19
+
20
+ Twenty labelled agent traces for measuring **failure-onset localization**: given a run
21
+ that went wrong, which step did it start going wrong at — not which step it stopped at.
22
+
23
+ Produced for [Runopsy](https://github.com/vahit19/runopsy), an open-source causal failure
24
+ analysis engine for agent runs. `pip install runopsy`.
25
+
26
+ ## Read this first: these traces are synthetic
27
+
28
+ Every case here was **generated, not recorded**. They are single-fault traces written to
29
+ exercise a specific failure mode, with the onset declared by construction rather than
30
+ judged by a person.
31
+
32
+ That makes them useful for one thing and useless for another:
33
+
34
+ - **Useful** for regression testing and for comparing localization strategies on a fixed,
35
+ reproducible set. The same code always produces the same numbers.
36
+ - **Useless** as evidence that a tool saves anyone time on real work. A benchmark whose
37
+ author also wrote the engine measures agreement with its own assumptions.
38
+
39
+ If you want human-labelled traces of real agents, use
40
+ [TRAIL](https://huggingface.co/datasets/PatronusAI/TRAIL) or
41
+ [Who&When](https://huggingface.co/datasets/Kevin355/Who_and_When) instead. Runopsy scores
42
+ **0.0%** on both, and that result is published alongside its 94.4% here — see *Results*
43
+ below.
44
+
45
+ ## Format
46
+
47
+ One JSON object per line in `runopsy_bench.jsonl`:
48
+
49
+ | field | meaning |
50
+ | --- | --- |
51
+ | `name` | case identifier |
52
+ | `category` | failure taxonomy class (`tool_execution`, `state`, `handoff`, …) |
53
+ | `description` | what the case is meant to represent |
54
+ | `onset_step` | **the ground truth**: sequence number where it started going wrong, or `null` for the healthy case |
55
+ | `affected_steps` | steps the onset plausibly reached |
56
+ | `is_healthy` | true for the one case with nothing wrong, used to measure false positives |
57
+ | `deterministically_detectable` | whether structural analysis alone can reach it |
58
+ | `events` | the trace, as OpenInference-compatible typed events |
59
+
60
+ Events carry `run_start`, `tool_call`, `llm_call`, `state_snapshot`, `memory_op`, `claim`,
61
+ `handoff` and `run_end` kinds with hashes rather than payload text.
62
+
63
+ ## Results
64
+
65
+ Measured with `runopsy bench --compare`, reproducible offline:
66
+
67
+ | strategy | top-1 | top-3 | mean step distance |
68
+ | --- | ---: | ---: | ---: |
69
+ | no diagnosis | 0.0% | 0.0% | — |
70
+ | blame the last failing step *(what reading a log achieves)* | 22.2% | 44.4% | 3.50 |
71
+ | blame the earliest failing step | 50.0% | 50.0% | 1.31 |
72
+ | Runopsy deterministic engine | **94.4%** | **100.0%** | **0.11** |
73
+
74
+ False positive rate on the healthy case: 0.0%.
75
+
76
+ **Where the same engine fails**, on labelled traces somebody else annotated:
77
+
78
+ | benchmark | onset top-1 |
79
+ | --- | ---: |
80
+ | TRAIL (expert-labelled SWE-Bench agent traces) | 0.0% |
81
+ | Who&When (expert-labelled multi-agent traces) | 0.0% |
82
+
83
+ On TRAIL, not one of the 30 annotated onsets carries an error status of any kind — they
84
+ are formatting mistakes, instruction non-compliance, a wrong assumption about a file path.
85
+ Runopsy's deterministic layers read exit codes and tool statuses, so they are blind to
86
+ those by construction. The 94.4% above is on traces where the onset *was itself a
87
+ failure*. Both numbers belong on the same page.
88
+
89
+ ## Loading
90
+
91
+ ```python
92
+ import json
93
+
94
+ cases = [json.loads(line) for line in open("runopsy_bench.jsonl", encoding="utf-8")]
95
+ print(cases[0]["onset_step"], len(cases[0]["events"]))
96
+ ```
97
+
98
+ Or with the tool that produced it:
99
+
100
+ ```bash
101
+ pip install runopsy
102
+ runopsy bench --compare # reproduces the table above
103
+ ```
104
+
105
+ ## Licence and citation
106
+
107
+ Apache-2.0.
108
+
109
+ ```bibtex
110
+ @software{feryad_runopsy,
111
+ author = {Feryad, Vahit},
112
+ title = {Runopsy: causal failure analysis for AI agent runs},
113
+ url = {https://github.com/vahit19/runopsy},
114
+ orcid = {0000-0002-3282-339X}
115
+ }
116
+ ```
runopsy_bench.jsonl ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"name": "tool_exit_code", "category": "tool_execution", "description": "a build step fails and the run continues on a broken tree", "onset_step": 5, "is_healthy": false, "deterministically_detectable": true, "affected_steps": [8], "events": [{"schema_version": "0.2", "event_id": "evt_00", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 0, "timestamp": "2026-07-30T09:00:00Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_start", "run": {"task": "synthetic case", "repo": null, "runtime": "synthetic", "provider": null, "model": null, "outcome": "unknown", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}, {"schema_version": "0.2", "event_id": "evt_03", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 3, "timestamp": "2026-07-30T09:00:03Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "make", "arguments_hash": null, "output_hash": null, "exit_code": 0, "duration_ms": 0, "status": "ok", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_05", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 5, "timestamp": "2026-07-30T09:00:05Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "make", "arguments_hash": null, "output_hash": null, "exit_code": 2, "duration_ms": 0, "status": "error", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_08", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 8, "timestamp": "2026-07-30T09:00:08Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "pytest", "arguments_hash": null, "output_hash": null, "exit_code": 1, "duration_ms": 0, "status": "error", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_09", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 9, "timestamp": "2026-07-30T09:00:09Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_end", "run": {"task": "", "repo": null, "runtime": "unknown", "provider": null, "model": null, "outcome": "failure", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}]}
2
+ {"name": "tool_timeout", "category": "tool_execution", "description": "a slow command times out and its output is never produced", "onset_step": 4, "is_healthy": false, "deterministically_detectable": true, "affected_steps": [7], "events": [{"schema_version": "0.2", "event_id": "evt_00", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 0, "timestamp": "2026-07-30T09:00:00Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_start", "run": {"task": "synthetic case", "repo": null, "runtime": "synthetic", "provider": null, "model": null, "outcome": "unknown", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}, {"schema_version": "0.2", "event_id": "evt_04", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 4, "timestamp": "2026-07-30T09:00:04Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "fetch_schema", "arguments_hash": null, "output_hash": null, "exit_code": 0, "duration_ms": 0, "status": "timeout", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_07", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 7, "timestamp": "2026-07-30T09:00:07Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "migrate", "arguments_hash": null, "output_hash": null, "exit_code": 1, "duration_ms": 0, "status": "error", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_08", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 8, "timestamp": "2026-07-30T09:00:08Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_end", "run": {"task": "", "repo": null, "runtime": "unknown", "provider": null, "model": null, "outcome": "failure", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}]}
3
+ {"name": "blocked_action", "category": "safety", "description": "a destructive command is refused by policy and the task cannot finish", "onset_step": 3, "is_healthy": false, "deterministically_detectable": true, "affected_steps": [], "events": [{"schema_version": "0.2", "event_id": "evt_00", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 0, "timestamp": "2026-07-30T09:00:00Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_start", "run": {"task": "synthetic case", "repo": null, "runtime": "synthetic", "provider": null, "model": null, "outcome": "unknown", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}, {"schema_version": "0.2", "event_id": "evt_03", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 3, "timestamp": "2026-07-30T09:00:03Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "rm", "arguments_hash": null, "output_hash": null, "exit_code": 0, "duration_ms": 0, "status": "blocked", "retry_of": null, "error_type": null, "blocked_reason": "destructive"}}, {"schema_version": "0.2", "event_id": "evt_04", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 4, "timestamp": "2026-07-30T09:00:04Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_end", "run": {"task": "", "repo": null, "runtime": "unknown", "provider": null, "model": null, "outcome": "failure", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}]}
4
+ {"name": "model_error", "category": "planning", "description": "the provider rejects a call and the agent proceeds without a plan", "onset_step": 2, "is_healthy": false, "deterministically_detectable": true, "affected_steps": [5, 7], "events": [{"schema_version": "0.2", "event_id": "evt_00", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 0, "timestamp": "2026-07-30T09:00:00Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_start", "run": {"task": "synthetic case", "repo": null, "runtime": "synthetic", "provider": null, "model": null, "outcome": "unknown", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}, {"schema_version": "0.2", "event_id": "evt_02", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 2, "timestamp": "2026-07-30T09:00:02Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "llm_call", "llm": {"model": "local:qwen", "provider": null, "prompt_hash": null, "response_hash": null, "tokens": {"input_tokens": 500, "output_tokens": 125, "cached_input_tokens": 0}, "latency_ms": 0, "status": "error", "finish_reason": null, "cost_usd": null}}, {"schema_version": "0.2", "event_id": "evt_05", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 5, "timestamp": "2026-07-30T09:00:05Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "edit_file", "arguments_hash": null, "output_hash": null, "exit_code": 0, "duration_ms": 0, "status": "ok", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_07", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 7, "timestamp": "2026-07-30T09:00:07Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "pytest", "arguments_hash": null, "output_hash": null, "exit_code": 1, "duration_ms": 0, "status": "error", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_08", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 8, "timestamp": "2026-07-30T09:00:08Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_end", "run": {"task": "", "repo": null, "runtime": "unknown", "provider": null, "model": null, "outcome": "failure", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}]}
5
+ {"name": "truncated_plan", "category": "planning", "description": "a plan is cut off by the length limit and the agent acts on half of it", "onset_step": 2, "is_healthy": false, "deterministically_detectable": true, "affected_steps": [4, 6], "events": [{"schema_version": "0.2", "event_id": "evt_00", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 0, "timestamp": "2026-07-30T09:00:00Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_start", "run": {"task": "synthetic case", "repo": null, "runtime": "synthetic", "provider": null, "model": null, "outcome": "unknown", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}, {"schema_version": "0.2", "event_id": "evt_02", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 2, "timestamp": "2026-07-30T09:00:02Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "llm_call", "llm": {"model": "local:qwen", "provider": null, "prompt_hash": null, "response_hash": null, "tokens": {"input_tokens": 500, "output_tokens": 125, "cached_input_tokens": 0}, "latency_ms": 0, "status": "ok", "finish_reason": "length", "cost_usd": null}}, {"schema_version": "0.2", "event_id": "evt_04", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 4, "timestamp": "2026-07-30T09:00:04Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "edit_file", "arguments_hash": null, "output_hash": null, "exit_code": 0, "duration_ms": 0, "status": "ok", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_06", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 6, "timestamp": "2026-07-30T09:00:06Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "pytest", "arguments_hash": null, "output_hash": null, "exit_code": 1, "duration_ms": 0, "status": "error", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_07", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 7, "timestamp": "2026-07-30T09:00:07Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_end", "run": {"task": "", "repo": null, "runtime": "unknown", "provider": null, "model": null, "outcome": "failure", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}]}
6
+ {"name": "retry_storm", "category": "control_flow", "description": "one failing call is retried four times without changing anything", "onset_step": 2, "is_healthy": false, "deterministically_detectable": true, "affected_steps": [], "events": [{"schema_version": "0.2", "event_id": "evt_00", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 0, "timestamp": "2026-07-30T09:00:00Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_start", "run": {"task": "synthetic case", "repo": null, "runtime": "synthetic", "provider": null, "model": null, "outcome": "unknown", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}, {"schema_version": "0.2", "event_id": "evt_02", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 2, "timestamp": "2026-07-30T09:00:02Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "deploy", "arguments_hash": null, "output_hash": null, "exit_code": 1, "duration_ms": 0, "status": "error", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_03", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 3, "timestamp": "2026-07-30T09:00:03Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "deploy", "arguments_hash": null, "output_hash": null, "exit_code": 1, "duration_ms": 0, "status": "error", "retry_of": "evt_02", "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_04", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 4, "timestamp": "2026-07-30T09:00:04Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "deploy", "arguments_hash": null, "output_hash": null, "exit_code": 1, "duration_ms": 0, "status": "error", "retry_of": "evt_02", "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_05", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 5, "timestamp": "2026-07-30T09:00:05Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "deploy", "arguments_hash": null, "output_hash": null, "exit_code": 1, "duration_ms": 0, "status": "error", "retry_of": "evt_02", "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_06", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 6, "timestamp": "2026-07-30T09:00:06Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "deploy", "arguments_hash": null, "output_hash": null, "exit_code": 1, "duration_ms": 0, "status": "error", "retry_of": "evt_02", "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_07", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 7, "timestamp": "2026-07-30T09:00:07Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_end", "run": {"task": "", "repo": null, "runtime": "unknown", "provider": null, "model": null, "outcome": "failure", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}]}
7
+ {"name": "tool_loop", "category": "control_flow", "description": "the same command with identical arguments runs four times", "onset_step": 2, "is_healthy": false, "deterministically_detectable": true, "affected_steps": [], "events": [{"schema_version": "0.2", "event_id": "evt_00", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 0, "timestamp": "2026-07-30T09:00:00Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_start", "run": {"task": "synthetic case", "repo": null, "runtime": "synthetic", "provider": null, "model": null, "outcome": "unknown", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}, {"schema_version": "0.2", "event_id": "evt_02", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 2, "timestamp": "2026-07-30T09:00:02Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "pytest", "arguments_hash": "sha256:2031dfab99051739f52f63091d480735ee90b200bdea6acdf3b38862f27594e4", "output_hash": null, "exit_code": 0, "duration_ms": 0, "status": "ok", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_03", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 3, "timestamp": "2026-07-30T09:00:03Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "pytest", "arguments_hash": "sha256:2031dfab99051739f52f63091d480735ee90b200bdea6acdf3b38862f27594e4", "output_hash": null, "exit_code": 0, "duration_ms": 0, "status": "ok", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_04", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 4, "timestamp": "2026-07-30T09:00:04Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "pytest", "arguments_hash": "sha256:2031dfab99051739f52f63091d480735ee90b200bdea6acdf3b38862f27594e4", "output_hash": null, "exit_code": 0, "duration_ms": 0, "status": "ok", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_05", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 5, "timestamp": "2026-07-30T09:00:05Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "pytest", "arguments_hash": "sha256:2031dfab99051739f52f63091d480735ee90b200bdea6acdf3b38862f27594e4", "output_hash": null, "exit_code": 0, "duration_ms": 0, "status": "ok", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_06", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 6, "timestamp": "2026-07-30T09:00:06Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_end", "run": {"task": "", "repo": null, "runtime": "unknown", "provider": null, "model": null, "outcome": "failure", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}]}
8
+ {"name": "state_flapping", "category": "state", "description": "two steps disagree about whether the migration ran", "onset_step": 2, "is_healthy": false, "deterministically_detectable": true, "affected_steps": [7], "events": [{"schema_version": "0.2", "event_id": "evt_00", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 0, "timestamp": "2026-07-30T09:00:00Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_start", "run": {"task": "synthetic case", "repo": null, "runtime": "synthetic", "provider": null, "model": null, "outcome": "unknown", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}, {"schema_version": "0.2", "event_id": "evt_02", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 2, "timestamp": "2026-07-30T09:00:02Z", "state_delta": {"migrated": {"before": null, "after": true}}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "migrate", "arguments_hash": null, "output_hash": null, "exit_code": 0, "duration_ms": 0, "status": "ok", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_03", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 3, "timestamp": "2026-07-30T09:00:03Z", "state_delta": {"migrated": {"before": null, "after": false}}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "rollback", "arguments_hash": null, "output_hash": null, "exit_code": 0, "duration_ms": 0, "status": "ok", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_04", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 4, "timestamp": "2026-07-30T09:00:04Z", "state_delta": {"migrated": {"before": null, "after": true}}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "migrate", "arguments_hash": null, "output_hash": null, "exit_code": 0, "duration_ms": 0, "status": "ok", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_05", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 5, "timestamp": "2026-07-30T09:00:05Z", "state_delta": {"migrated": {"before": null, "after": false}}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "rollback", "arguments_hash": null, "output_hash": null, "exit_code": 0, "duration_ms": 0, "status": "ok", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_07", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 7, "timestamp": "2026-07-30T09:00:07Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "pytest", "arguments_hash": null, "output_hash": null, "exit_code": 1, "duration_ms": 0, "status": "error", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_08", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 8, "timestamp": "2026-07-30T09:00:08Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_end", "run": {"task": "", "repo": null, "runtime": "unknown", "provider": null, "model": null, "outcome": "failure", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}]}
9
+ {"name": "stale_memory", "category": "memory", "description": "a deploy target recalled from an old session is no longer valid", "onset_step": 3, "is_healthy": false, "deterministically_detectable": true, "affected_steps": [5], "events": [{"schema_version": "0.2", "event_id": "evt_00", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 0, "timestamp": "2026-07-30T09:00:00Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_start", "run": {"task": "synthetic case", "repo": null, "runtime": "synthetic", "provider": null, "model": null, "outcome": "unknown", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}, {"schema_version": "0.2", "event_id": "evt_03", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 3, "timestamp": "2026-07-30T09:00:03Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "memory_op", "memory": {"operation": "read", "key": "deploy_target", "source": null, "value_hash": null, "age_seconds": 900000.0}}, {"schema_version": "0.2", "event_id": "evt_05", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 5, "timestamp": "2026-07-30T09:00:05Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "deploy", "arguments_hash": null, "output_hash": null, "exit_code": 1, "duration_ms": 0, "status": "error", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_06", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 6, "timestamp": "2026-07-30T09:00:06Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_end", "run": {"task": "", "repo": null, "runtime": "unknown", "provider": null, "model": null, "outcome": "failure", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}]}
10
+ {"name": "incomplete_handoff", "category": "handoff", "description": "a sub-agent is given a task without the branch it should work on", "onset_step": 2, "is_healthy": false, "deterministically_detectable": true, "affected_steps": [], "events": [{"schema_version": "0.2", "event_id": "evt_00", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 0, "timestamp": "2026-07-30T09:00:00Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_start", "run": {"task": "synthetic case", "repo": null, "runtime": "synthetic", "provider": null, "model": null, "outcome": "unknown", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}, {"schema_version": "0.2", "event_id": "evt_02", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 2, "timestamp": "2026-07-30T09:00:02Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "handoff", "handoff": {"from_agent_id": "main", "to_agent_id": "tester", "context_hash": null, "missing_fields": ["branch"]}}, {"schema_version": "0.2", "event_id": "evt_05", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 5, "timestamp": "2026-07-30T09:00:05Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "pytest", "arguments_hash": null, "output_hash": null, "exit_code": 1, "duration_ms": 0, "status": "error", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_06", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 6, "timestamp": "2026-07-30T09:00:06Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_end", "run": {"task": "", "repo": null, "runtime": "unknown", "provider": null, "model": null, "outcome": "failure", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}]}
11
+ {"name": "unsupported_claim", "category": "reasoning", "description": "the agent asserts the fix works with nothing backing it", "onset_step": 4, "is_healthy": false, "deterministically_detectable": true, "affected_steps": [], "events": [{"schema_version": "0.2", "event_id": "evt_00", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 0, "timestamp": "2026-07-30T09:00:00Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_start", "run": {"task": "synthetic case", "repo": null, "runtime": "synthetic", "provider": null, "model": null, "outcome": "unknown", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}, {"schema_version": "0.2", "event_id": "evt_04", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 4, "timestamp": "2026-07-30T09:00:04Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "claim", "claim": {"claim_id": "c1", "text_hash": "sha256:6ced661cfe181701bcee05e8b29871de53b4b12a57ee68a8b70cee4bcecb661b", "support_status": "unsupported"}}, {"schema_version": "0.2", "event_id": "evt_06", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 6, "timestamp": "2026-07-30T09:00:06Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "pytest", "arguments_hash": null, "output_hash": null, "exit_code": 1, "duration_ms": 0, "status": "error", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_07", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 7, "timestamp": "2026-07-30T09:00:07Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_end", "run": {"task": "", "repo": null, "runtime": "unknown", "provider": null, "model": null, "outcome": "failure", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}]}
12
+ {"name": "contradicted_claim", "category": "reasoning", "description": "the agent asserts success while the evidence says otherwise", "onset_step": 3, "is_healthy": false, "deterministically_detectable": true, "affected_steps": [], "events": [{"schema_version": "0.2", "event_id": "evt_00", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 0, "timestamp": "2026-07-30T09:00:00Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_start", "run": {"task": "synthetic case", "repo": null, "runtime": "synthetic", "provider": null, "model": null, "outcome": "unknown", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}, {"schema_version": "0.2", "event_id": "evt_03", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 3, "timestamp": "2026-07-30T09:00:03Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "claim", "claim": {"claim_id": "c1", "text_hash": "sha256:cf0908166d40ff05ace922e78378ebe983ac989ae07437bbc00cb2f38d4c7afe", "support_status": "contradicted"}}, {"schema_version": "0.2", "event_id": "evt_05", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 5, "timestamp": "2026-07-30T09:00:05Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "pytest", "arguments_hash": null, "output_hash": null, "exit_code": 1, "duration_ms": 0, "status": "error", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_06", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 6, "timestamp": "2026-07-30T09:00:06Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_end", "run": {"task": "", "repo": null, "runtime": "unknown", "provider": null, "model": null, "outcome": "failure", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}]}
13
+ {"name": "outcome_mismatch", "category": "outcome", "description": "the run reports success while a step plainly failed", "onset_step": 3, "is_healthy": false, "deterministically_detectable": true, "affected_steps": [], "events": [{"schema_version": "0.2", "event_id": "evt_00", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 0, "timestamp": "2026-07-30T09:00:00Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_start", "run": {"task": "synthetic case", "repo": null, "runtime": "synthetic", "provider": null, "model": null, "outcome": "unknown", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}, {"schema_version": "0.2", "event_id": "evt_03", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 3, "timestamp": "2026-07-30T09:00:03Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "pytest", "arguments_hash": null, "output_hash": null, "exit_code": 1, "duration_ms": 0, "status": "error", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_05", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 5, "timestamp": "2026-07-30T09:00:05Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_end", "run": {"task": "", "repo": null, "runtime": "unknown", "provider": null, "model": null, "outcome": "success", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}]}
14
+ {"name": "interrupted_run", "category": "outcome", "description": "the process is killed before it can report an outcome", "onset_step": 6, "is_healthy": false, "deterministically_detectable": true, "affected_steps": [], "events": [{"schema_version": "0.2", "event_id": "evt_00", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 0, "timestamp": "2026-07-30T09:00:00Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_start", "run": {"task": "synthetic case", "repo": null, "runtime": "synthetic", "provider": null, "model": null, "outcome": "unknown", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}, {"schema_version": "0.2", "event_id": "evt_03", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 3, "timestamp": "2026-07-30T09:00:03Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "build", "arguments_hash": null, "output_hash": null, "exit_code": 0, "duration_ms": 0, "status": "ok", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_06", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 6, "timestamp": "2026-07-30T09:00:06Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "pytest", "arguments_hash": null, "output_hash": null, "exit_code": 1, "duration_ms": 0, "status": "error", "retry_of": null, "error_type": null, "blocked_reason": null}}]}
15
+ {"name": "missing_run_start", "category": "goal_input", "description": "the stream begins mid-run, so the task is unknown", "onset_step": 6, "is_healthy": false, "deterministically_detectable": true, "affected_steps": [], "events": [{"schema_version": "0.2", "event_id": "evt_04", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 4, "timestamp": "2026-07-30T09:00:04Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "edit_file", "arguments_hash": null, "output_hash": null, "exit_code": 0, "duration_ms": 0, "status": "ok", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_06", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 6, "timestamp": "2026-07-30T09:00:06Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "pytest", "arguments_hash": null, "output_hash": null, "exit_code": 1, "duration_ms": 0, "status": "error", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_07", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 7, "timestamp": "2026-07-30T09:00:07Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_end", "run": {"task": "", "repo": null, "runtime": "unknown", "provider": null, "model": null, "outcome": "failure", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}]}
16
+ {"name": "trace_gap", "category": "validation", "description": "events are missing, so any conclusion is drawn over a hole", "onset_step": 9, "is_healthy": false, "deterministically_detectable": true, "affected_steps": [], "events": [{"schema_version": "0.2", "event_id": "evt_00", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 0, "timestamp": "2026-07-30T09:00:00Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_start", "run": {"task": "synthetic case", "repo": null, "runtime": "synthetic", "provider": null, "model": null, "outcome": "unknown", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}, {"schema_version": "0.2", "event_id": "evt_02", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 2, "timestamp": "2026-07-30T09:00:02Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "build", "arguments_hash": null, "output_hash": null, "exit_code": 0, "duration_ms": 0, "status": "ok", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_09", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 9, "timestamp": "2026-07-30T09:00:09Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "pytest", "arguments_hash": null, "output_hash": null, "exit_code": 1, "duration_ms": 0, "status": "error", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_10", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 10, "timestamp": "2026-07-30T09:00:10Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_end", "run": {"task": "", "repo": null, "runtime": "unknown", "provider": null, "model": null, "outcome": "failure", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}]}
17
+ {"name": "early_failure_late_symptom", "category": "tool_execution", "description": "the run breaks at step 4 but nothing visible happens until step 20", "onset_step": 4, "is_healthy": false, "deterministically_detectable": true, "affected_steps": [20], "events": [{"schema_version": "0.2", "event_id": "evt_00", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 0, "timestamp": "2026-07-30T09:00:00Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_start", "run": {"task": "synthetic case", "repo": null, "runtime": "synthetic", "provider": null, "model": null, "outcome": "unknown", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}, {"schema_version": "0.2", "event_id": "evt_04", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 4, "timestamp": "2026-07-30T09:00:04Z", "state_delta": {"endpoint": {"before": null, "after": "staging"}}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "write_config", "arguments_hash": null, "output_hash": null, "exit_code": 1, "duration_ms": 0, "status": "error", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_06", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 6, "timestamp": "2026-07-30T09:00:06Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "edit_file", "arguments_hash": null, "output_hash": null, "exit_code": 0, "duration_ms": 0, "status": "ok", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_08", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 8, "timestamp": "2026-07-30T09:00:08Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "edit_file", "arguments_hash": null, "output_hash": null, "exit_code": 0, "duration_ms": 0, "status": "ok", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_10", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 10, "timestamp": "2026-07-30T09:00:10Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "edit_file", "arguments_hash": null, "output_hash": null, "exit_code": 0, "duration_ms": 0, "status": "ok", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_12", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 12, "timestamp": "2026-07-30T09:00:12Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "edit_file", "arguments_hash": null, "output_hash": null, "exit_code": 0, "duration_ms": 0, "status": "ok", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_14", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 14, "timestamp": "2026-07-30T09:00:14Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "edit_file", "arguments_hash": null, "output_hash": null, "exit_code": 0, "duration_ms": 0, "status": "ok", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_16", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 16, "timestamp": "2026-07-30T09:00:16Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "edit_file", "arguments_hash": null, "output_hash": null, "exit_code": 0, "duration_ms": 0, "status": "ok", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_18", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 18, "timestamp": "2026-07-30T09:00:18Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "edit_file", "arguments_hash": null, "output_hash": null, "exit_code": 0, "duration_ms": 0, "status": "ok", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_20", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 20, "timestamp": "2026-07-30T09:00:20Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "pytest", "arguments_hash": null, "output_hash": null, "exit_code": 1, "duration_ms": 0, "status": "error", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_21", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 21, "timestamp": "2026-07-30T09:00:21Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_end", "run": {"task": "", "repo": null, "runtime": "unknown", "provider": null, "model": null, "outcome": "failure", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}]}
18
+ {"name": "two_failures_earliest_wins", "category": "tool_execution", "description": "two steps fail; the earlier one is where the run went wrong", "onset_step": 5, "is_healthy": false, "deterministically_detectable": true, "affected_steps": [9, 12], "events": [{"schema_version": "0.2", "event_id": "evt_00", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 0, "timestamp": "2026-07-30T09:00:00Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_start", "run": {"task": "synthetic case", "repo": null, "runtime": "synthetic", "provider": null, "model": null, "outcome": "unknown", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}, {"schema_version": "0.2", "event_id": "evt_05", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 5, "timestamp": "2026-07-30T09:00:05Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "fetch_deps", "arguments_hash": null, "output_hash": null, "exit_code": 1, "duration_ms": 0, "status": "error", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_09", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 9, "timestamp": "2026-07-30T09:00:09Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "build", "arguments_hash": null, "output_hash": null, "exit_code": 1, "duration_ms": 0, "status": "error", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_12", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 12, "timestamp": "2026-07-30T09:00:12Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "pytest", "arguments_hash": null, "output_hash": null, "exit_code": 1, "duration_ms": 0, "status": "error", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_13", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 13, "timestamp": "2026-07-30T09:00:13Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_end", "run": {"task": "", "repo": null, "runtime": "unknown", "provider": null, "model": null, "outcome": "failure", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}]}
19
+ {"name": "silent_wrong_config", "category": "tool_selection", "description": "a write succeeds but stores the wrong environment; nothing looks anomalous", "onset_step": 4, "is_healthy": false, "deterministically_detectable": false, "affected_steps": [14], "events": [{"schema_version": "0.2", "event_id": "evt_00", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 0, "timestamp": "2026-07-30T09:00:00Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_start", "run": {"task": "synthetic case", "repo": null, "runtime": "synthetic", "provider": null, "model": null, "outcome": "unknown", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}, {"schema_version": "0.2", "event_id": "evt_04", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 4, "timestamp": "2026-07-30T09:00:04Z", "state_delta": {"endpoint": {"before": null, "after": "staging"}}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "write_config", "arguments_hash": null, "output_hash": null, "exit_code": 0, "duration_ms": 0, "status": "ok", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_06", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 6, "timestamp": "2026-07-30T09:00:06Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "edit_file", "arguments_hash": null, "output_hash": null, "exit_code": 0, "duration_ms": 0, "status": "ok", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_08", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 8, "timestamp": "2026-07-30T09:00:08Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "edit_file", "arguments_hash": null, "output_hash": null, "exit_code": 0, "duration_ms": 0, "status": "ok", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_10", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 10, "timestamp": "2026-07-30T09:00:10Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "edit_file", "arguments_hash": null, "output_hash": null, "exit_code": 0, "duration_ms": 0, "status": "ok", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_14", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 14, "timestamp": "2026-07-30T09:00:14Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "pytest", "arguments_hash": null, "output_hash": null, "exit_code": 1, "duration_ms": 0, "status": "error", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_15", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 15, "timestamp": "2026-07-30T09:00:15Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_end", "run": {"task": "", "repo": null, "runtime": "unknown", "provider": null, "model": null, "outcome": "failure", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}]}
20
+ {"name": "healthy_run", "category": "outcome", "description": "a clean run that must produce no finding at all", "onset_step": null, "is_healthy": true, "deterministically_detectable": true, "affected_steps": [], "events": [{"schema_version": "0.2", "event_id": "evt_00", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 0, "timestamp": "2026-07-30T09:00:00Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_start", "run": {"task": "add a changelog entry", "repo": null, "runtime": "synthetic", "provider": null, "model": null, "outcome": "unknown", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}, {"schema_version": "0.2", "event_id": "evt_01", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 1, "timestamp": "2026-07-30T09:00:01Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "llm_call", "llm": {"model": "local:qwen", "provider": null, "prompt_hash": null, "response_hash": null, "tokens": {"input_tokens": 500, "output_tokens": 125, "cached_input_tokens": 0}, "latency_ms": 0, "status": "ok", "finish_reason": null, "cost_usd": null}}, {"schema_version": "0.2", "event_id": "evt_02", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 2, "timestamp": "2026-07-30T09:00:02Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "edit_file", "arguments_hash": null, "output_hash": null, "exit_code": 0, "duration_ms": 0, "status": "ok", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_03", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 3, "timestamp": "2026-07-30T09:00:03Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "tool_call", "tool": {"name": "pytest", "arguments_hash": null, "output_hash": null, "exit_code": 0, "duration_ms": 0, "status": "ok", "retry_of": null, "error_type": null, "blocked_reason": null}}, {"schema_version": "0.2", "event_id": "evt_04", "run_id": "run_case", "agent_id": "main", "parent_id": null, "sequence": 4, "timestamp": "2026-07-30T09:00:04Z", "state_delta": {}, "security": {"redacted": false, "contains_secret": false}, "kind": "run_end", "run": {"task": "", "repo": null, "runtime": "unknown", "provider": null, "model": null, "outcome": "success", "summary": null, "parent_run_id": null, "intervention_kind": null, "intervention_target": null}}]}