Search papers, labs, and topics across Lattice.
The paper introduces RepoMod-Bench, a benchmark for evaluating AI agents on repository-level code modernization via automated translation, addressing the limitations of existing benchmarks that suffer from ambiguous metrics and test-driven overfitting. RepoMod-Bench comprises 21 real-world repositories across 8 programming languages with standardized interfaces, totaling 1.6M LOC and 11,616 tests. Evaluating four state-of-the-art agents on RepoMod-Bench reveals a significant performance drop as repository size increases, highlighting the challenge of scaling autonomous modernization.
AI coding agents that ace small code modernization tasks fall apart on larger repositories, with pass rates plummeting from 91% to 15% when scaling from 10K to 50K lines of code.
The evolution of AI coding agents has shifted the frontier from simple snippet completion to autonomous repository-level engineering. However, evaluating these agents remains ill-posed in general code repository generation, where the lack of deterministic ground truth leads to ambiguous metrics. Code modernization via automated translation offers a more rigorous alternative by providing a fixed ground truth -- the source repository; yet existing benchmarks are limited to small-scale repositories and rely on language-specific unit tests visible to the agent, allowing test-driven overfitting. We address these limitations by introducing a benchmarking framework for repository-level code modernization built on an implementation-agnostic evaluation paradigm. This framework is instantiated through RepoMod-Bench: a benchmark of 21 real-world repositories with standardized interfaces, spanning 8 programming languages. The benchmark contains 1.6M lines of code (LOC) and 11,616 tests, with repository sizes ranging from 14 to 211K LOC. By targeting repositories with standardized interfaces, we utilize an implementation-agnostic test suite to verify functional equivalence between source and target implementations. This black-box approach ensures verification remains consistent across languages, and our environment hides all test suites from agents to prevent test-driven shortcuts. Evaluating four state-of-the-art agent configurations reveals a sharp scaling collapse: average pass rates drop from 91.3% on projects under 10K LOC to 15.3% on projects exceeding 50K LOC. These results demonstrate that autonomous modernization at scale remains a significant open challenge. Our benchmark and code are available at https://github.com/Modelcode-ai/mcode-benchmark.