 | The life cycle of software development has become very fragmented. We have integrated traditional CI/CD systems, including build, test, and deploy processes, alongside new IDEs and autonomous agentic engineering solutions. Traditional DevOps remains central, but we believe it will undergo significant innovation in the coming year. Currently, CI/CD pipelines operate with human developers submitting one or two diffs while writing code. These pull requests (PRs) require considerable time for colleagues to review. After that, developers run build, test, and deploy steps through GitHub Actions, addressing any failed test cases and iterating on the diffs. This process typically results in just one or two PRs per week. In contrast, when considering agent scale, agents utilize the same systems but can generate numerous PRs across multiple repositories. The verification process remains similar in duration unless review bots are employed, which complicates matters further. Agents also need to correct failed cases as in the previous scenario. With human developers, the process is relatively predictable, aided by local caches that are often warm. However, for agents, the situation becomes complex due to the presence of thousands of short-lived branches, all pulling the same codebase in different directions. This leads to challenges in merging the various versions, making it increasingly difficult to manage. |