You need to agree to share your contact information to access this dataset

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this dataset content.

S-Bus: Long-Horizon Planning Benchmarks and PH-3 Human Annotations

Companion datasets for the paper Reliable Autonomous Orchestration: A Rust-Based Transactional Middleware for Mitigating Semantic Synchronization Overhead in Multi-Agent Systems (Khan, 2026).

Configs

long_horizon_tasks

Long-horizon planning benchmarks used to evaluate S-Bus against LangGraph, CrewAI, and AutoGen.

Split Tasks Step range Description
lhp_15 15 20-40 Original LHP benchmark across 7 domains: software architecture, security and compliance, data and ML pipelines, codebase refactoring, system design, research synthesis, product and API design.
multidomain_30 30 varies Extended 30-task multi-domain set.
from datasets import load_dataset
ds = load_dataset("sajjadanwar0/sbus-benchmarks", "long_horizon_tasks", split="lhp_15")

ph3_human_annotations

Two independent human annotators labeled 400 (session, candidate-shard) pairs sampled from S-Bus evaluation runs. For each pair the annotator judged whether the agent's action genuinely used the candidate shard, given what the agent itself claimed in its self-report.

The source 400 tasks are available as source_tasks.json in the repository file tree, along with the annotation web tool (annotation_tool/annotator.html) and protocol (annotation_tool/GUIDE.md) so the study can be reproduced or extended by independent annotators.

Schema

Column Type Description
row_idx int Zero-indexed row identifier. Shared across both rater files.
candidate_shard str The S-Bus shard whose use is being judged (e.g., migration_plan, models_state, view_logic, permission_check, action_registry).
human_label str One of yes, no, unclear. The rater's judgment of whether the shard was genuinely used.
agent_said_used_it str yes or no β€” what the agent itself claimed in its output. The cue the rater scored against.

Inter-rater agreement

Cohen's ΞΊ is reported under two regimes because 307 of 400 rows have at least one unclear label, making a 3-class report and a 2-class (committed) report tell different stories.

Regime n Cohen's ΞΊ Landis & Koch Raw agreement
Strict (yes/no only) 93 0.931 almost perfect 96.8%
Lenient (3-class with unclear) 400 0.695 substantial β€”

Strict confusion matrix:

rater 2: yes rater 2: no
rater 1: yes 33 0
rater 1: no 3 57

Interpretation. When raters commit to a definite yes/no, they near-perfectly agree (ΞΊ=0.931). The substantial volume of unclear labels β€” 77% of rows had at least one β€” is itself the headline finding: attributing shard usage from agent traces is genuinely ambiguous even for trained humans. This motivates not relying on agent self-report and is the empirical case for the SCR detection mechanism in S-Bus.

Reproducing these figures

The scoring script is bundled in the repository under scripts/:

python3 scripts/score_annotations.py \
    data/ph3_human_annotations/annotator_1.csv \
    data/ph3_human_annotations/annotator_2.csv

Or using datasets directly:

import pandas as pd
from datasets import load_dataset
from sklearn.metrics import cohen_kappa_score

ds = load_dataset("sajjadanwar0/sbus-benchmarks", "ph3_human_annotations")
a1 = ds["annotator_1"].to_pandas()
a2 = ds["annotator_2"].to_pandas()
m = a1.merge(a2, on=["row_idx", "candidate_shard"], suffixes=("_r1", "_r2"))

# Lenient (3-class with unclear)
print("Lenient kappa:", cohen_kappa_score(m["human_label_r1"], m["human_label_r2"]))

# Strict (yes/no committed only)
strict = m[m["human_label_r1"].isin(["yes", "no"]) &
           m["human_label_r2"].isin(["yes", "no"])]
print("Strict kappa: ", cohen_kappa_score(strict["human_label_r1"], strict["human_label_r2"]))

Agent self-report validity

Comparing each annotator's labels against agent_said_used_it shows the agents systematically over-claim shard usage:

Annotator n Precision Recall Accuracy
Rater 1 96 0.681 0.941 0.823
Rater 2 144 0.514 0.725 0.660

When an agent claims to have used a shard, 32-49% of those claims are disputed by the human raters (precision 0.51-0.68). When raters mark a shard as truly used, agents catch it 73-94% of the time. This precision gap is the empirical motivation for transactional shard tracking rather than trusting agent self-report.

Citation

@article{khan2026sbus,
  title   = {Reliable Autonomous Orchestration: A Rust-Based Transactional
             Middleware for Mitigating Semantic Synchronization Overhead
             in Multi-Agent Systems},
  author  = {Khan, Sajjad},
  journal = {arXiv preprint arXiv:2605.17076},
  year    = {2026}
}

License

CC-BY-4.0 for all data, scripts, and annotation materials in this repository.

Repository structure

sbus-benchmarks/
β”œβ”€β”€ README.md                    # this file
β”œβ”€β”€ LICENSE                      # CC-BY-4.0
β”œβ”€β”€ data/
β”‚   β”œβ”€β”€ long_horizon_tasks/
β”‚   β”‚   β”œβ”€β”€ long_horizon_tasks.json
β”‚   β”‚   └── tasks_30_multidomain.json
β”‚   └── ph3_human_annotations/
β”‚       β”œβ”€β”€ annotator_1.csv      # rater 1 labels (400 rows)
β”‚       β”œβ”€β”€ annotator_2.csv      # rater 2 labels (400 rows)
β”‚       └── source_tasks.json    # the 400 (session, shard) pairs annotated
β”œβ”€β”€ annotation_tool/
β”‚   β”œβ”€β”€ annotator.html           # browser-based annotation UI
β”‚   └── GUIDE.md                 # annotation protocol and rubric
└── scripts/
    └── score_annotations.py     # Cohen's kappa + self-report stats

Contact

Sajjad Khan β€” https://github.com/sajjadanwar0

Downloads last month
78

Paper for sajjadanwar0/sbus-benchmarks