Harbor Adapters and Harbor-Index: Infrastructure and a Curated Meta-Dataset for Large-Scale Agentic Evaluation
Abstract: Evaluating agents on the growing number of agentic benchmarks is challenging because they often require complex environments and agent integrations. We introduce Harbor Adapters, a unified evaluation infrastructure for agentic benchmarks. Our work makes three contributions. First, we develop benchmark adapters that port more than 80 benchmarks to evaluate arbitrary agents, and validate them through rigorous code review and parity experiments. Second, we conduct a large-scale evaluation of 8 models spanning capability tiers across 54 benchmarks; every model is run with Terminus-2 and with one of 3 native harnesses. This enables a broader analysis of agent capabilities and failure modes than was previously possible. Third, we introduce Harbor-Index, a curated set of 82 difficult, diverse, and high-quality tasks spanning 29 benchmarks, refined from the adapted suite through difficulty filtering, AI and human audit, and an audit-and-fix loop. Harbor-Index preserves the challenge and breadth of large-scale agentic evaluations while being affordable to run; no evaluated model-harness configuration exceeds 30% pass rate, and the strongest (GPT-5.5 with Codex) reaches 28.0%. We release the adapters, evaluation results, in-depth analysis, and Harbor-Index as open-source artifacts to support more reliable and comprehensive evaluation of language-model agents.
First 10 authors:
Paper Prompts
Sign up for free to create and run prompts on this paper.
Top Community Prompts
Explain it Like I'm 14
1. What is this paper about?
This paper introduces Harbor Adapters, a system for testing AI agents on many different tasks in a more organized and reliable way. It also introduces Harbor-Index, a smaller collection of especially challenging and carefully checked tasks.
An AI agent is a computer program powered by a LLM that can do more than answer questions. It might:
- write and test computer code,
- search the web,
- use tools,
- operate a computer,
- solve long, complicated problems,
- or complete tasks in a simulated environment.
The researchers wanted to make it easier to compare these agents fairly. They also wanted to discover whether agents fail because they are not smart enough, because their tools are poorly designed, or because the tasks themselves contain mistakes.
2. What questions did the researchers ask?
The paper focuses on four main questions:
- Which tests are actually useful? Do we need hundreds of different benchmarks, or do many of them measure the same abilities?
- What matters more: the AI model or the agent system around it? A model is the LLM doing the thinking. A harness is the software that gives the model tools, instructions, and a way to interact with its environment.
- Are more powerful models worth their higher cost? Do stronger models solve tasks more efficiently, and when is it worth paying extra for them?
- Why do agents fail? Are they making reasoning mistakes, using tools incorrectly, misunderstanding instructions, or being judged by broken tests?
3. How was the research done?
Building a common system
Different benchmarks usually have different formats. One might ask an agent to fix a software bug, while another might ask it to search the internet or analyze financial information. Running all of them can be difficult because each benchmark has its own rules and software.
The researchers created Harbor Adapters to solve this problem. An adapter acts like a translator: it converts each benchmark into the same basic format, including:
- an instruction,
- an environment where the agent works,
- tests for checking the answer,
- and a possible solution.
This is similar to using one universal plug adapter when traveling. Instead of making every device work with every kind of outlet separately, the adapter lets many devices use the same system.
Without this approach, connecting many benchmarks to many agents could require a separate connection for every pair. With Harbor, each benchmark only needs one adapter, and each agent only needs one Harbor connection. This makes large-scale testing much easier.
The researchers adapted more than 80 benchmarks and checked their work through:
- code reviews,
- experiments comparing the adapted versions with the original versions,
- and several rounds of human and automated quality checks.
Testing models and agent systems
The main experiment tested:
- 8 LLMs from Google, OpenAI, and Anthropic,
- 54 benchmarks,
- 4 different harness systems,
- and three repeated trials for each setting.
Repeating trials is important because AI agents can behave differently each time, even when given the same task. It is like asking a student to take the same type of test several times to get a more reliable result.
The researchers collected hundreds of thousands of agent attempts. This required a large amount of computer time and cost more than $300,000.
Studying failures
The researchers also examined thousands of failed attempts. Human experts first labeled some failures, and then an AI judge helped analyze many more. They looked for problems such as:
- wrong facts,
- bugs in computer programs,
- missing files or answers,
- syntax mistakes,
- poor tool use,
- and failures caused by unclear or broken tasks.
Creating Harbor-Index
The researchers wanted a smaller test set that would be cheaper to run but still difficult and useful. They began with many tasks and gradually removed tasks that were:
- too easy,
- repetitive,
- unclear,
- poorly graded,
- or broken in some way.
Human reviewers and AI systems checked the remaining tasks. The final Harbor-Index contains 82 difficult tasks from 29 benchmarks.
4. What did the researchers find?
The model usually matters more than the harness
The LLM itself had a larger effect on performance than the harness surrounding it. In other words, giving an agent better tools can help, but a much stronger “brain” usually helps more.
However, the harness still matters. Some harnesses let agents repeatedly check and improve their work, while others make them follow a more rigid sequence. Agents often did better when they could freely revise their answers.
Many benchmarks measure similar abilities
The researchers found that many benchmarks produce similar rankings of models. If one model performs well on one benchmark, it often performs well on many others.
This means that testing hundreds of benchmarks may not always provide hundreds of different pieces of information. A smaller set of carefully chosen benchmarks could sometimes show nearly the same differences between models.
However, the researchers warn that benchmarks should not be chosen only because they are difficult. Some easier tests are valuable because they measure special abilities, such as financial reasoning or scientific work, that other tests do not measure.
Stronger models often use fewer tokens
A token is a small piece of text processed by a LLM. Using more tokens usually means using more computing power and money.
The stronger models generally used fewer tokens than weaker models, especially on easier tasks. Weaker models often:
- misunderstood instructions,
- repeated tool calls,
- gave unnecessarily long explanations,
- or checked the same thing many times.
Even so, stronger models were still more expensive overall because their individual tokens cost more.
The biggest advantage of stronger models appeared on tasks of medium difficulty. On very easy tasks, almost every model could succeed. On extremely hard tasks, even the strongest models often failed. Medium-to-hard tasks were where paying for a stronger model helped most.
Many failures came from the tasks themselves
One of the most important findings was that some tasks were not genuinely difficult—they were simply badly designed.
For example:
- a task might tell the agent to create something, but the grader might look for something different;
- a simulation might fail to start correctly;
- a test might require exact file names or messages that were never mentioned in the instructions;
- or a correct solution might be rejected because it did not copy the example solution closely enough.
The researchers found that about one third of the hardest candidate tasks examined by human reviewers were rejected because they were broken or unfair.
This matters because a low score does not always mean that an AI is incapable. Sometimes the test itself is the problem.
Agents still struggle with important reasoning
Among genuine failures, the most common problems included:
- incorrect factual answers,
- algorithmic mistakes,
- hidden-test failures in software,
- and misunderstanding what the task required.
Different models also had different habits:
- Some models tried to solve tasks quickly but gave up more often on very difficult problems.
- Some models followed a consistent procedure.
- Some relied heavily on web searches and sometimes replaced a correct idea with confusing or incorrect information from online sources.
Harbor-Index remains difficult
The strongest evaluated system scored only 28% on Harbor-Index. No model-and-harness combination scored above 30%.
This shows that the new test set is still challenging and leaves plenty of room for future improvement. At the same time, it is much smaller and cheaper to run than the full collection of benchmarks.
5. Why is this research important?
This paper could improve how AI systems are tested.
Without a common testing system, researchers may compare models using different tools, task versions, or grading rules. That can make results confusing or unfair. Harbor Adapters offer a shared framework that could make comparisons more consistent.
Harbor-Index is also useful because it tries to avoid a major problem in AI testing: confusing “the AI failed” with “the test was broken.” Carefully checking tasks can make test results more trustworthy.
The findings suggest several lessons:
- Researchers should test models across different kinds of abilities, not just use many similar benchmarks.
- Stronger models are not always worth their cost, especially on very easy or impossibly hard tasks.
- Agent tools and software design matter, even though the underlying model is usually more important.
- Benchmarks should be regularly checked and repaired as AI systems improve.
- A small, diverse, high-quality test set may be more useful than a huge collection of repetitive tests.
Overall, the paper presents Harbor as a way to make AI-agent evaluation more organized, affordable, fair, and reliable. It does not prove that one testing method is perfect, but it provides tools and evidence that could help researchers better understand what AI agents can—and cannot—do.
Knowledge Gaps
Knowledge gaps, limitations, and open questions
- Incomplete benchmark coverage: Although more than 80 adapters are reported, the large-scale analysis includes only 54 benchmarks, leaving the generality of the findings across the broader agentic-benchmark ecosystem unresolved.
- Limited model and harness diversity: The evaluation covers eight models in the large-scale study and nine in Harbor-Index, with only four distinct harness implementations. It does not establish whether the observed model–harness relationships hold for other model families, open-weight checkpoints, agent architectures, scaffolds, or custom tool-use systems.
- Confounding between model, harness, and provider: Native harnesses are tied to particular model families, while most OpenRouter models in Harbor-Index use Claude Code. This prevents a fully crossed comparison in which every model is evaluated with every harness under identical serving and tool-access conditions.
- Insufficient evidence for universal model dominance: The conclusion that base-model capability matters more than harness design is based on a relatively small, selected set of models and harnesses. More diverse harnesses and controlled interventions are needed to determine when scaffold design can outweigh model differences.
- Unclear causal mechanisms behind harness effects: The study attributes performance differences partly to features such as iterative correction, action-space design, and native image or web tools, but does not isolate their individual causal contributions through component-level ablations.
- Limited replication across model versions: The experiments use specific model releases and harness versions. It remains unknown whether the reported rankings, failure patterns, and cost–performance tradeoffs persist after model updates, changed system prompts, revised tool implementations, or altered inference policies.
- Small number of trials for stochastic evaluation: Most configuration–benchmark settings are repeated only three times. This may be insufficient to estimate variance reliably for highly stochastic, long-horizon tasks or to distinguish small performance differences between models and harnesses.
- Uncertainty in benchmark-level rankings: The paper reports correlations and mixed-model effects, but the statistical uncertainty of many individual benchmark rankings and pairwise model comparisons is not fully characterized, especially after accounting for multiple comparisons and task-level dependence.
- Difficulty is configuration-dependent: Empirical task difficulty is computed from the evaluated models and harnesses, so it may change as stronger systems are introduced. The resulting difficulty buckets do not necessarily measure intrinsic task difficulty and may be distorted by verifier errors, tool limitations, or harness-specific behavior.
- No validated method for online difficulty estimation: The proposed cost-aware routing intuition depends on identifying task difficulty before or during execution, but the paper does not provide a practical, validated predictor that can estimate difficulty cheaply at request time without already solving the task.
- Incomplete cost accounting: Reported costs rely on official or OpenRouter pricing and may omit factors such as long-context charges, cache-write costs, infrastructure overhead, human review, environment provisioning, retries, and tool-service fees. The claimed cost–performance frontier may therefore not generalize to other deployment settings.
- Cost comparisons are not fully normalized: Models may differ in context limits, caching behavior, reasoning-token accounting, rate limits, and serving infrastructure. These differences complicate direct comparisons of per-run cost and token efficiency.
- Token efficiency is not necessarily causal: The finding that stronger models use fewer tokens does not determine whether shorter trajectories cause better performance, result from better early decisions, or reflect differences in hidden reasoning and output-token accounting.
- Limited analysis of adaptive inference policies: The study evaluates fixed model–harness configurations rather than dynamic strategies such as model routing, selective escalation, early stopping, verifier-guided retries, or allocating additional computation only to uncertain tasks.
- Low-rank benchmark structure may be sample-specific: PCA and correlation analyses are conducted on a small matrix of model–harness configurations. The reported low dimensionality may change with a larger and more diverse population of agents, models, or task distributions.
- Redundancy estimates may be unstable: Claims that three representative tasks recover benchmark rankings are based on the evaluated systems and selected sampling procedures. They do not establish that the same small subsets preserve rankings for future, stronger, specialized, or adversarial agents.
- Correlation does not establish construct equivalence: High correlations between benchmark scores show similar ranking behavior but do not demonstrate that benchmarks measure the same underlying capability or that replacing one with another preserves important rare abilities.
- Specialized capabilities remain underrepresented: The analysis identifies benchmarks such as FinanceAgent and LabBench as relatively unique, but the study does not systematically determine which capabilities are missing from the suite or how well the benchmark collection covers real-world agent requirements.
- Limited multimodal and embodied evaluation: The benchmark suite contains little evidence about vision, audio, GUI interaction, robotics, physical environments, or multimodal tool use. Conclusions may therefore apply primarily to text-and-terminal agents.
- External-service and environment variability is unresolved: The paper does not fully quantify how changes in network access, package versions, APIs, data freshness, sandbox providers, hardware, or environment resets affect adapter parity and benchmark reproducibility.
- Adapter parity is not exhaustively demonstrated: Code review and parity experiments provide evidence of faithful adaptation, but the paper does not specify coverage, statistical power, or failure rates for parity tests across all adapters and task types. Semantic equivalence may remain uncertain for complex interactive benchmarks.
- Potential adaptation-induced changes in task semantics: Converting non-agentic benchmarks into tool-using environments may alter the construct being measured. The validity of treating such adapted tasks as comparable to their original, non-agentic versions remains unestablished.
- Verifier validity is still an open problem: The audit identifies instruction–verifier mismatches, false positives, false negatives, and exploitable loopholes, but there is no systematic estimate of verifier accuracy for the full 54-benchmark suite or for all Harbor-Index tasks.
- Human audit reliability is limited and uneven: Human reviewers show moderate agreement in the trajectory analysis, and the AI judge has lower agreement with the human gold labels. The reliability of the broader multi-stage audit process, including task acceptance and repair decisions, is not fully quantified.
- AI-assisted auditing may reproduce model biases: Harbor-Index relies substantially on Gemini-based auditing and judging. It remains unclear whether this introduces systematic preferences for particular solution styles, models, tools, or task formulations.
- Harbor-Index selection is potentially circular: Tasks are selected using performance from leading models and then evaluated on related model families and harnesses. This may favor tasks that are difficult for the selection systems rather than tasks with stable, model-independent validity.
- Harbor-Index difficulty may not persist: The claim that no evaluated configuration exceeds a 30% pass rate is time-sensitive. Stronger models, specialized prompting, test-time compute, or benchmark-specific optimization may quickly saturate the fixed 82-task set.
- Task repair may change benchmark comparability: Repairing or modifying tasks can improve validity but may also alter their original difficulty, intended construct, or relationship to the source benchmark. The paper does not report systematic pre/post repair statistics sufficient to assess this tradeoff.
- Limited evidence for real-world validity: It remains unknown whether performance on Harbor-Index predicts success in production agent deployments, expert workflows, user satisfaction, safety-critical settings, or long-term autonomous operation.
- Pass/fail scoring discards useful information: Continuous outcomes, partial progress, quality of intermediate artifacts, efficiency, and degrees of correctness are reduced to binary outcomes for several tasks. This may obscure meaningful differences between near-miss solutions and make optimization sensitive to arbitrary thresholds.
- SOTA-threshold metrics may become obsolete or biased: Converting AlgoTune and GSO outcomes into pass/fail using current state-of-the-art thresholds rewards surpassing a moving frontier but may penalize strong incremental improvements and become unstable as reference systems change.
- LLM-as-a-judge validity remains uncertain: Free-form tasks depend on model-based judging, but judge calibration, robustness to persuasive incorrect answers, sensitivity to verbosity, and consistency across domains are not comprehensively evaluated.
- Failure-mode taxonomy is incomplete: The analysis covers 12 failure modes and collapses several low-agreement categories into “Others,” leaving potentially important causes—such as tool unreliability, prompt injection, strategic deception, memory failures, and distribution shift—underexplored.
- Failure annotations focus mainly on frontier-model failures: The detailed trajectory audit emphasizes failed hard-task runs from frontier models. Failure mechanisms for weaker models, successful trajectories, and cases involving strategic adaptation are less thoroughly characterized.
- Failure-mode prevalence may depend on the annotation sample: The 200 human-annotated trajectories and subsequent judge-labeled sample may not represent the full task, model, and harness distribution. Sampling procedures and class imbalance could affect reported prevalence.
- No systematic analysis of recovery and self-correction: The study notes that iterative refinement matters, but it does not quantify which types of errors agents can detect and repair, how many retries are required, or whether additional verification disproportionately benefits particular models.
- Security and gaming risks remain unresolved: The paper acknowledges that future agents may exploit benchmark artifacts, but it does not provide adversarial evaluations of reward hacking, verifier manipulation, data leakage, prompt injection, sandbox escape, or benchmark-specific overfitting.
- Contamination and memorization are not fully assessed: The study does not establish whether evaluated models were exposed to benchmark tasks, solutions, repositories, adapter code, or Harbor-Index artifacts during training or post-training.
- Reproducibility may be threatened by live dependencies: Online services, vendor APIs, changing model endpoints, package updates, and evolving benchmark data may make exact replication difficult despite releasing adapters and trajectories.
- No principled update protocol for the live Harbor-Index is specified: The paper proposes maintaining the index as models improve but does not define rules for task retirement, replacement, versioning, contamination monitoring, score comparability, or preventing benchmark churn.
- The relationship between benchmark breadth and practical evaluation value is unresolved: The study shows that many benchmarks are statistically redundant, but it does not determine how to balance ranking efficiency against coverage of rare, safety-critical, or operationally important capabilities.
- Generalization beyond pass-rate leaderboards is unclear: The conclusions focus primarily on aggregate pass rates, rankings, token use, and costs. They do not establish how the infrastructure supports richer objectives such as reliability, calibration, latency, interpretability, safety, maintainability, or human–agent collaboration.
- No evaluation of long-term autonomous behavior: Tasks are generally bounded by benchmark-specific execution limits. The paper does not examine degradation, compounding errors, memory management, goal drift, or resource allocation over substantially longer autonomous horizons.
- Human-level and expert baselines are largely absent: Without systematic human or expert performance and cost baselines, it is difficult to interpret whether low model pass rates reflect genuinely challenging tasks, poor task design, or performance far below practical competence.
- The integration-cost claim is not empirically validated: The shift from to describes the adapter architecture, but the paper does not quantify actual engineering time, maintenance burden, debugging effort, or total cost before and after adopting Harbor Adapters.
Practical Applications
Immediate Applications
- Standardized agent-evaluation pipelines for AI developers and research teams (software/AI infrastructure)
- Potential tools: continuous-evaluation services, model-release dashboards, regression-testing systems, and internal agent scorecards.
- Actionable workflow: add a new agent integration once, select a set of compatible adapters, execute evaluations in sandboxes, and compare results using shared metrics.
- Dependencies: adapter correctness, access to benchmark environments, compatible sandbox backends, and sufficient compute or API budget.
- Pre-release testing and regression monitoring for coding agents (software engineering)
- This can reveal failures involving algorithmic bugs, hidden-test regressions, syntax errors, incomplete deliverables, and incorrect task interpretation.
- Potential products: pull-request agent certification, model-upgrade regression gates, automated coding-agent acceptance tests, and enterprise agent reliability reports.
- Dependencies: benchmark tasks must remain representative of the organization’s codebase; passing benchmark tasks does not establish production safety or correctness.
- Cost-aware model and harness selection (cloud AI operations and enterprise software)
- Frontier models may be reserved for medium-to-hard tasks where their performance advantage is most valuable, while less expensive models can handle simpler workloads.
- Lower-cost open-weight configurations may be appropriate when a moderate pass rate is acceptable.
- Potential tools: model routers, workload-specific routing policies, budget-aware orchestration, and Pareto-frontier dashboards.
- Dependencies: task difficulty must be estimated reliably; pricing, caching, context length, latency, and tool access can differ substantially from the paper’s setup.
- Benchmark-quality auditing and verifier validation (academia, software, and evaluation governance)
- Actionable workflow: run representative trajectories, compare human judgments with automated grading, inspect failures, repair task definitions, and repeat the evaluation.
- Potential tools: verifier test suites, trajectory-review interfaces, audit checklists, and automated inconsistency detectors.
- Dependencies: domain expertise, independent reviewers, reliable test environments, and careful versioning of repaired tasks.
- Compact internal evaluation suites for companies and laboratories (industry and academia)
- Actionable workflow: use correlation, PCA, or greedy selection to identify tasks covering different capability axes; retain specialized domains such as finance, laboratory science, and research assistance even when they are not the hardest.
- Potential products: 20–100 task smoke tests for every model release, domain-specific “mini-indexes,” and rapid evaluation suites for daily development.
- Dependencies: redundancy estimates may change as models improve; small subsets require uncertainty estimates and periodic revalidation.
- Failure-mode diagnostics for deployed agents (healthcare administration, finance, research, and enterprise automation)
- For example, an agent handling financial research could be tested for information drift after web search; a healthcare workflow agent could be tested for unsupported factual claims and incomplete actions.
- Potential tools: failure-taxonomy dashboards, automatic trajectory triage, human escalation queues, and post-deployment incident reports.
- Dependencies: failure labels must be validated for the relevant domain; LLM-based judges may introduce classification errors and should not be the sole safety mechanism.
- More reproducible academic comparisons of agents (academic research)
- Potential outputs: reproducible experiment manifests, trajectory repositories, benchmark parity reports, and standardized leaderboards.
- Dependencies: access to the same model versions and APIs, stable benchmark environments, and disclosure of proprietary harness details.
- Human-in-the-loop escalation policies (daily life and enterprise productivity)
- automatically accept only outputs passing deterministic tests;
- route near-misses to human review;
- terminate repeated tool loops or timeouts;
- require additional verification for high-impact actions.
- Potential applications: coding assistants, spreadsheet agents, research assistants, customer-service automation, and personal productivity tools.
- Dependencies: reliable pass/fail tests, clear escalation thresholds, and human reviewers with adequate domain knowledge.
Long-Term Applications
- A general-purpose evaluation marketplace and compatibility layer for agents (AI infrastructure and software ecosystems)
- Potential products: hosted evaluation APIs, benchmark registries, enterprise certification services, and plug-in marketplaces.
- Benefits: lower integration costs, faster replication of results, and broader cross-domain comparisons.
- Dependencies: stable interface specifications, maintenance of environments and dependencies, security isolation, licensing agreements, and governance against benchmark contamination.
- Adaptive evaluation that selects tasks in real time (AI research and model deployment)
- Potential workflow: estimate a model’s capability profile, select tasks with the highest expected information gain, and stop when ranking confidence reaches a target level.
- Applications: rapid model procurement, personalized agent certification, and continuous monitoring after model updates.
- Dependencies: robust uncertainty estimates, prevention of overfitting to the adaptive test, calibration on future stronger models, and preservation of rare capability axes.
- Dynamic model routing based on predicted task difficulty (cloud computing and enterprise automation)
- Potential products: difficulty predictors, token-budget controllers, cost-aware multi-agent systems, and confidence-triggered escalation.
- Applications: customer support, software maintenance, document analysis, research assistance, and data workflows.
- Dependencies: cheap and accurate difficulty prediction; reliable confidence estimates; changing model prices; latency requirements; and safeguards against routing difficult safety-critical tasks to weak models.
- Continuous, self-renewing benchmarks for frontier agents (academia, policy, and AI safety)
- Potential mechanisms: versioned releases, hidden test sets, rotating tasks, independent audits, contamination checks, and public trajectory metadata.
- Applications: frontier-model evaluations, procurement standards, safety cases, and regulatory reporting.
- Dependencies: sustained curation, funding for human review, secure task pools, transparent governance, and careful comparability across benchmark versions.
- Agent certification standards for regulated or high-impact sectors (healthcare, finance, education, public administration, and cybersecurity)
- Examples: a healthcare agent could be tested on evidence retrieval and structured workflow completion; a financial agent on domain-specific analysis and tool execution; an education agent on grounded feedback and safe interaction.
- Potential outputs: procurement checklists, minimum pass-rate thresholds, standardized incident taxonomies, and audit trails.
- Dependencies: sector-specific task design, privacy-preserving environments, legally valid evaluation criteria, and thresholds determined by risk rather than aggregate benchmark scores alone.
- Training and fine-tuning agents using failure trajectories (AI research and developer tooling)
- Potential methods: supervised trajectory refinement, preference optimization, verifier-aware training, tool-use curriculum learning, and self-correction policies.
- Applications: coding agents, scientific assistants, web researchers, and autonomous workflow systems.
- Dependencies: high-quality labels, protection against learning benchmark-specific shortcuts, careful treatment of private or copyrighted trajectories, and evidence that improvements transfer beyond the evaluation suite.
- Standardized simulation infrastructure for robotics and embodied systems (robotics and autonomous systems)
- Potential tools: interchangeable simulator adapters, robot-policy regression testing, hardware-in-the-loop evaluation, and cross-platform task suites.
- Dependencies: realistic simulators, sensor and actuator interfaces, safety validation, sim-to-real transfer, and evaluation metrics that capture physical robustness rather than only task completion.
- Policy and public-sector monitoring of agent capability claims (public policy and standards)
- Potential applications: evidence requirements for AI procurement, reporting standards for model releases, sector-specific benchmark registries, and monitoring of capability progress.
- Dependencies: neutrality of benchmark maintainers, protection against gaming, transparent methodology, model-access agreements, and recognition that benchmark scores are configuration-dependent rather than universal measures of intelligence.
- Personalized daily-life assistants with bounded autonomy (consumer software and accessibility)
- Potential workflow: evaluate a task on a low-cost model, verify the result with deterministic checks or a second agent, and request user confirmation for irreversible actions.
- Dependencies: privacy-preserving local or sandboxed execution, reliable permission systems, robust handling of ambiguous instructions, and strong safeguards for financial, medical, and legal activities.
Glossary
- Agentic benchmark: A benchmark designed to evaluate AI systems that act autonomously through tools, environments, and multi-step interactions. “The benchmark landscape has grown in response: SWE-bench~\citep{jimenez2023swebench}, Terminal-Bench~\citep{terminalbench}, FinanceAgent~\citep{valsai2024financeagent}, and many other agentic, tool-using, long-horizon suites”
- Agent scaffold: The software structure or control framework that organizes an agent’s reasoning, tool use, and execution. “Most variation is explained by a single shared capability factor; adding agent scaffolds introduces one additional direction”
- API: An application programming interface that allows software components or services to communicate programmatically. “GPT-5.5, Claude Opus 4.8, and Gemini 3.1 Pro are served by first-party APIs”
- Adapter: A software component that converts one benchmark’s data and execution requirements into a standardized interface. “each benchmark needs one adapter exposing its tasks, environments, and scoring logic through Harbor”
- Annotation protocol: A prescribed procedure for labeling or categorizing data, often used to ensure consistent human judgments. “Full taxonomy, annotation protocol, and per-rubric reliability are in Appendix~\ref{app:qual-method}”
- Benchmark saturation: A condition in which models achieve such high scores on a benchmark that it no longer meaningfully differentiates capabilities. “Of the \NumIncludedBenchmarks{} benchmarks we evaluate, \NumSaturatedBenchmarks{} are largely saturated”
- Capability factor: A latent dimension representing a general ability that explains performance across multiple tasks or benchmarks. “Most variation is explained by a single shared capability factor”
- Capability gap: A persistent difference between the abilities required by a task and the abilities an evaluated model possesses. “indicating a persistent ``capability gap'' in task comprehension, domain knowledge, and the reasoning needed to produce substantially correct solutions”
- Closed-weight model: A model whose learned parameters are not publicly released. “four closed-weight models, whose weights are not publicly released”
- Configuration-dependent proxy: A measured quantity that approximates a property but depends on the particular experimental setup used to obtain it. “this is a configuration-dependent proxy for intrinsic task difficulty”
- Contamination: The presence of benchmark data or related information in a model’s training data, potentially inflating evaluation results. “contamination erodes held-out validity”
- Cross-family harness: An agent execution framework designed to operate across models from different model providers or families. “the cross-family Terminus-2”
- False negative: An incorrect failure judgment in which a valid solution is classified as unsuccessful. “false-positive/false-negative analysis”
- False positive: An incorrect success judgment in which an invalid solution is classified as successful. “false-positive/false-negative analysis”
- Frontier model: A highly capable model near the current leading edge of performance. “Frontier models are more capable but more expensive.”
- Generalized linear mixed model (GLMM): A statistical model combining fixed effects and random effects, typically for non-normally distributed outcomes. “we control for it with a linear mixed model using benchmark as a random intercept”
- Harness: Software that manages an agent’s interaction with a model, tools, environment, and task. “Each model runs under exactly two harnesses”
- Hidden-test regression: A failure in which a change passes visible tests but breaks functionality checked by undisclosed tests. “wrong factual answers, algorithmic bugs, and hidden-test regressions dominate across all frontier models”
- Holdout hygiene: Practices that preserve the independence and integrity of evaluation data not used during model development. “interface, scaffold, cost budget, and holdout hygiene all move reported numbers”
- Instruction–verification alignment: The degree to which a task’s stated requirements correspond to what its evaluator actually checks. “a quality rubric based on instruction--verification alignment”
- Inter-rater reliability: The degree to which independent evaluators agree when labeling or scoring the same items. “two domain-experienced human annotators independently label 200 trajectories across 12 failure modes”
- Intraclass correlation coefficient (ICC): A statistic measuring the proportion of outcome variance attributable to differences between groups or subjects. “Benchmark difficulty accounts for most score variance (ICC $=\GLMMIcc{}$)”
- LLM-as-a-judge: The use of a LLM to evaluate another model’s output against a rubric or criterion. “the adapter infrastructure supports GPU interaction, LLM-as-a-judge verifiers”
- Long-horizon task: A task requiring an agent to perform many dependent actions over an extended sequence. “software engineering, web research, finance, and terminal-based problem solving”
- Low-rank: Having substantially fewer underlying dimensions than the apparent number of measured variables. “the space remains low-rank”
- Marginal benefit: The additional performance or value gained from an incremental change, such as using a stronger model. “The absolute performance gain of frontier models is bell-shaped: is marginal on the simplest and hardest tasks”
- Meta-dataset: A curated dataset assembled from tasks or data originating in multiple component datasets or benchmarks. “we introduce Harbor-Index, a curated meta-dataset of 82 tasks”
- Mixed model: A statistical model containing both population-level effects and group-specific effects. “we control for it with a linear mixed model using benchmark as a random intercept”
- Open-weight model: A model whose learned parameters are publicly available, even if its training data or full development process is not. “five open-weight models”
- Pareto frontier: The set of options for which no alternative is simultaneously better on all evaluated objectives, such as cost and performance. “Colored points and the dashed line mark the cost--performance Pareto frontier”
- Parity experiment: An experiment that compares two implementations under matched conditions to determine whether they produce equivalent results. “we run multi-trial parity experiments matching agent, model, and execution configuration”
- Principal Component Analysis (PCA): A dimensionality-reduction method that transforms correlated variables into a smaller set of orthogonal components capturing variance. “we apply Principal Component Analysis (PCA) to the $\AppNumSystems{} \times \NumIncludedBenchmarks{}$ score matrix”
- Random intercept: A group-specific baseline term in a statistical model that allows each group to have its own average outcome. “using benchmark as a random intercept”
- Reward hack: An unintended strategy that exploits weaknesses in an evaluation or reward mechanism rather than accomplishing the intended task. “currently unexploitable reward hacks and unreliable evaluation”
- Sandbox environment: An isolated computational setting in which an agent can execute actions without unrestricted access to the host system. “Harbor, a Python library~\citep{Harbor_Framework} originally developed for Terminal-Bench that defines tasks and runs agents in sandbox environments”
- SOTA threshold: A threshold based on the current state-of-the-art result that a solution must exceed to count as successful. “we ``SOTA-threshold'' outcomes into pass/fail”
- Spearman rank correlation: A nonparametric statistic measuring the association between the rankings of two variables. “Greedy selection on absolute Spearman rank correlations agrees”
- Stochasticity: Variability in results caused by randomness in models, sampling, or execution. “reporting mean sample standard error of the mean (SEM) to account for stochasticity”
- Task brittleness: Sensitivity of a task or evaluator to minor changes, implementation details, or edge cases. “as it may be distorted by task brittleness (false positives/negatives)”
- Trajectory: The ordered sequence of actions, observations, tool calls, and outputs produced during an agent’s attempt. “Each rubric shows six bars grouped by model”
- Verifier loophole: An unintended weakness in an evaluator that allows an agent to pass without satisfying the task’s intended requirements. “free of exploitable verifier loopholes”
- Verifier overreach: An evaluator’s enforcement of requirements that were not specified by the task. “A SWE-bench Pro \cite{deng2025swebenchproaiagents} task shows verifier overreach”
- Zero-shot: An evaluation setting in which the model receives no task-specific examples before attempting the task. “Free-form answer tasks (e.g., HLE, GAIA, GPQA Diamond) use LLM-as-a-judge evaluation”






