File size: 2,754 Bytes
b374b66
 
 
 
 
 
 
 
89f1d71
b374b66
 
 
 
 
 
 
 
 
 
 
 
 
89f1d71
b374b66
 
 
89f1d71
b374b66
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
89f1d71
b374b66
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
---
language:
- en
license: mit
task_categories:
- text-generation
tags:
- agents
- evaluation-methodology
- tool-calling
- resilience
- disruption
- fault-injection
- LLM
- evaluation
pretty_name: AgentDisruptBench
size_categories:
- n<1K
---

# AgentDisruptBench

An evaluation methodology for measuring AI agent resilience under runtime tool-call disruptions.

## Overview

AgentDisruptBench provides a systematic methodology, backed by **100 base tasks and variants** across **4 domains**, a systematic **20-type disruption taxonomy**, and **9 disruption severity profiles**, to study and measure how well LLM-based agents handle real-world tool failures.

## Task Statistics

| Domain   | Standard | Adversarial | Impossible | Handover | Total |
|----------|:--------:|:-----------:|:----------:|:--------:|:-----:|
| Retail   | 20       | 2           | 2          | 1        | 25    |
| Travel   | 20       | 2           | 2          | 1        | 25    |
| Finance  | 20       | 2           | 2          | 1        | 25    |
| DevOps   | 20       | 2           | 2          | 1        | 25    |
| **Total**| **80**   | **8**       | **8**      | **4**    | **100** |

## Disruption Taxonomy (20 Types)

| Category | Types |
|----------|-------|
| Timing | timeout, latency |
| HTTP Status | http_429, http_401, http_403, http_500, http_502, http_503 |
| Response Content | malformed_json, truncated, null_response, missing_fields, type_mismatch, schema_drift, wrong_data |
| Behavioral | intermittent, flapping, quota_exhausted, auth_expiry, cascading |

## Key Metric: R(k, ε, λ) Reliability Surface

- **k-consistency**: Pass rate across repeated seeds (same task, same profile)
- **ε-robustness**: Pass rate across task-wording variants
- **λ-fault-tolerance**: Pass rate across disruption profiles

## Files

- `tasks/retail.yaml` — 20 retail domain tasks
- `tasks/travel.yaml` — 20 travel domain tasks
- `tasks/finance.yaml` — 20 finance domain tasks
- `tasks/devops.yaml` — 20 DevOps domain tasks
- `tasks/adversarial.yaml` — 8 adversarial trap tasks
- `tasks/impossible.yaml` — 8 impossible tasks
- `tasks/handover.yaml` — 4 handover tasks
- `tasks/variants.yaml` — 18 ε-robustness task variants
- `profiles/` — 9 disruption profile definitions

## Usage

```python
pip install agentdisruptbench

from agentdisruptbench import TaskRegistry, DisruptionEngine
registry = TaskRegistry.from_builtin()
tasks = registry.filter(domain="retail", max_difficulty=3)
```

## Citation

```bibtex
@inproceedings{agentdisruptbench2026,
  title={AgentDisruptBench: An Evaluation Methodology for AI Agent Resilience Under Runtime Tool-Call Disruptions},
  author={AgentDisruptBench Contributors},
  year={2026}
}
```

## License

MIT