SALT-NLP/agent-collusion
Emergent Collusion in Long-Horizon LLM Agent Interaction Xinrui Shi*, Yanzhe Zhang*, Diyi Yang π Paper | π» Code | π€ Data | π Data Viewer *Equal contribution. The experiments reported in the paper and its appendices: 53 conditions, 2,650 trajectories, and 27,100 episodes, of which 600 are warm-up and 26,500 are evaluation episodes. Every condition runs the same 50 fixed task sequences. Contents Config / directory Unit Count episodes One two-agentβ¦ See the full description on the dataset page: https://huggingface.co/datasets/SALT-NLP/agent-collusion.
Emergent Collusion in Long-Horizon LLM Agent Interaction
*Xinrui Shi\, Yanzhe Zhang\, Diyi Yang*
π Paper | π» Code | π€ Data | π Data Viewer
\*Equal contribution.
The experiments reported in the paper and its appendices: 53 conditions, 2,650 trajectories, and 27,100 episodes, of which 600 are warm-up and 26,500 are evaluation episodes. Every condition runs the same 50 fixed task sequences.
Contents
Load
from datasets import load_dataset
episodes = load_dataset("SALT-NLP/agent-collusion", "episodes", split="test")
agreement = load_dataset("SALT-NLP/agent-collusion", "agreement", split="test")Read a full trajectory through its trace_file field:
import gzip, json
from huggingface_hub import hf_hub_download
path = hf_hub_download(
"SALT-NLP/agent-collusion", episodes[0]["trace_file"], repo_type="dataset"
)
with gzip.open(path, "rt", encoding="utf-8") as f:
trajectory = json.load(f)See SCHEMA.md for field definitions and joins, and EXPERIMENTS.md for the condition inventory.
Experimental scope
Judges
Prompts: `analysis/` in the code repository.
Human validation, 100 samples per judge, two independent annotators, seed 20260913. Agreement with gold:
License and citation
Released under the MIT License.
@misc{shi2026emergentcollusionlonghorizonllm,
title={Emergent Collusion in Long-Horizon LLM Agent Interaction},
author={Xinrui Shi and Yanzhe Zhang and Diyi Yang},
year={2026},
eprint={2609.24967},
archivePrefix={arXiv},
primaryClass={cs.AI},
url={https://arxiv.org/abs/2609.24967},
}