CodeMidas: Scaling Agentic Coding RL Environments from Code Itself
CodeMidas turns existing codebases into 5,545 executable RL coding tasks; GRPO-trained MiMo-V2.5 gains up to 17% on ProgramBench.
CodeMidas is an agentic pipeline that converts implemented functionality in existing codebases into executable RL environments using only source code as task-specific input, with agents formulating behavioral specifications, constructing execution-grounded tests, and filtering candidates via rollouts. The resulting dataset contains 5,545 training tasks from 3,185 open-source codebases spanning 23 programming languages and 15 technical domains. Training MiMo-V2.5 with GRPO improves all five benchmarks, including DeepSWE +11.7%, ProgramBench +17%, and Terminal-Bench v2.1 +8.5%, with trajectory analysis showing more codebase exploration and self-verification.
- 5,545 RL tasks from 3,185 codebases, 23 languages, 15 domains
- Uses only source code, avoiding reliance on issues and commits
- MiMo-V2.5 gains up to +17% (ProgramBench) after GRPO training
- Trained agents explore codebases more and self-verify more diversely
Full article214 words · extracted from huggingface.co · click to collapse
Training capable coding agents via reinforcement learning (RL) requires diverse tasks with reliable verifiers. Open-source codebases offer a rich source of such tasks, while existing methods typically rely on development artifacts such as issues and commits, limiting the range of tasks that can be extracted. To better scale RL environments, we present CodeMidas, an agentic pipeline that turns implemented functionality in existing codebases into executable RL environments using source code as its only task-specific input. CodeMidas allocates agentic compute to every stage of environment construction: agents explore implemented functionality to formulate behavioral specifications, construct tests grounded in execution of the original code, and validate and filter candidate tasks through execution checks and repeated solution rollouts. The resulting dataset has 5,545 training tasks from 3,185 open-source codebases spanning 23 programming languages and 15 technical domains. Training MiMo-V2.5 on these tasks with GRPO improves performance on all five diverse benchmarks, covering issue repair (DeepSWE + 11.7%), whole-program construction (ProgramBench +17%), and terminal work (Terminal-Bench v2.1 +8.5%). Ablations show that increasing the number of high-quality training tasks improves performance. Trajectory analysis shows the RL-trained agent demonstrates better behaviors like increasing codebase exploration and more diverse self-verification. These results establish source code as a scalable foundation for constructing RL environments that improve coding agents across diverse software tasks.
Text extracted automatically; images, tables and formatting may be missing. Original: https://huggingface.co/papers/2609.22068