Improving Agent Optimizer Reliability Over Time
Listen to the summary
Uses a voice available on your device
Audio options
On this page 4 sections
Related concepts 3 concepts
Key Takeaways
- RELAI-VCL outperformed standard baselines by achieving a 76.4% lifelong average pass rate.
- Standard optimizers like Meta Harness suffer from performance regression when they fail to retain optimizations for previous tasks.
- The research uses Terminal-Bench 2.0 to evaluate agentic harness improvements.
- RELAI-VCL enforces a no-regression constraint, which rejects candidate edits that harm performance on previously solved tasks.
Summary & Methodology Analysis
The researchers investigate whether agent harness optimizers (like prompt and code editors) can compound improvements over time without suffering from overfitting. They baseline against a fixed agent using GPT-5.5 on the Harbor framework and compare it against GEPA, which uses evolutionary search to mutate prompts, and Meta Harness, which uses Codex to edit harness code. The evaluation uses a phased protocol where agents are first optimized on a set of tasks (T1) and then tested on a union of those and new tasks (T1 U T2). The study finds that Meta Harness, while functional in Phase 1, experiences a performance drop to 59.1% in Phase 2 because it lacks a mechanism to preserve prior gains while adapting to new requirements. To address this, the authors propose RELAI-VCL, which acts as a regression-aware continual-learning optimizer. It integrates a constraint within the search loop that explicitly rejects any candidate harness edits that improve performance on new tasks if they result in performance loss on previously solved tasks. This approach successfully maintains higher overall pass rates, reaching 76.4% compared to 66.0% for GEPA and 64.6% for Meta Harness. The study is limited by the fact that Terminal-Bench 2.0 tasks are largely independent, which simplifies the challenge compared to real-world production environments where failures are often correlated. Additionally, the evaluation assumes the availability of reliable verifiers for repeated task execution, a constraint that may not exist in every production deployment setting. The paper does not specify the computational overhead or latency introduced by the RELAI-VCL constraint loop.
Interactive System Flowchart
Cross-Examination & FAQs
A deeper dive clarifying mechanics, constraints, and baseline evaluations.
Q1. What is the main goal of this research?
The research aims to determine if agent optimization gains can compound over time or if they are just ephemeral benefits prone to overfitting.
Q2. What is RELAI-VCL?
RELAI-VCL is a regression-aware continual-learning optimizer that prevents performance drops on old tasks when an agent learns to solve new tasks.
Q3. Did the new method perform better than existing tools?
Yes, RELAI-VCL achieved a 76.4% lifelong average pass rate, outperforming GEPA at 66.0% and Meta Harness at 64.6%.
Q4. What is the significance of the Phase 2 evaluation?
Phase 2 evaluates whether the optimizer can retain performance on initial tasks (T1) while simultaneously optimizing for new tasks (T2).
Q5. Why did Meta Harness see a performance decrease?
Meta Harness saw a decrease because it could not build on its previous optimizations when introduced to new tasks, leading to regression.
Q6. How does the no-regression constraint work?
It functions by rejecting candidate harness edits that improve performance on new tasks if those same edits cause regressions on previously solved tasks.
Q7. What are the limitations of the Terminal-Bench 2.0 benchmark?
The tasks are mostly independent, which simplifies the challenge compared to real-world production settings where failures are often correlated.
Q8. Does this method work in all production environments?
The paper does not guarantee this, as the evaluation assumes that tasks can be executed repeatedly with reliable verifiers, which is not always possible.
Q9. What models were used in the evaluation?
The models and tools included GPT-5.5, Codex, GEPA, Meta Harness, and RELAI-VCL.