Code for Machines, Not Just Humans: Quantifying AI-Friendliness with Code Health Metrics
Markus Borg, Nadim Hagatulah, Adam Tornhill, Emma Söderberg
TL;DR
This work defines CodeHealth (CH), a human-oriented maintainability metric, and tests its relation to AI-friendliness in code refactoring by LLMs. Using 5,000 Python solutions from CodeContests and multiple LLMs, the study shows that higher CH ($CH \ge 9$) correlates with lower refactoring break rates and higher semantic preservation, while PPL provides limited predictive value. CH emerges as the strongest single predictor for successful AI-driven refactoring, outperforming SLOC and perplexity across most models, with practical thresholds guiding deployment. The findings support deploying AI-assisted coding more safely by prioritizing or enhancing CH-rich code regions, and they point to broader future work integrating CH with additional structural and multi-agent metrics.
Abstract
We are entering a hybrid era in which human developers and AI coding agents work in the same codebases. While industry practice has long optimized code for human comprehension, it is increasingly important to ensure that LLMs with different capabilities can edit code reliably. In this study, we investigate the concept of ``AI-friendly code'' via LLM-based refactoring on a dataset of 5,000 Python files from competitive programming. We find a meaningful association between CodeHealth, a quality metric calibrated for human comprehension, and semantic preservation after AI refactoring. Our findings confirm that human-friendly code is also more compatible with AI tooling. These results suggest that organizations can use CodeHealth to guide where AI interventions are lower risk and where additional human oversight is warranted. Investing in maintainability not only helps humans; it also prepares for large-scale AI adoption.
