When a Coding Agent's execution steps go from 10 to dozens or even hundreds, errors accumulate step by step, and there is no external error-correction signal in the process — that is the real bottleneck of long-horizon programming. Xiaomi's MiMo team's open-source MiMo Code (June 10) does not bet on "a smarter model," but instead splits the entire harness into three separate time-scale optimizations — compute, memory, evolution:

Stage one: compute (single-turn decision quality). MiMo Code introduces two orthogonal test-time compute levers. Max Mode generates N=5 candidate solutions in parallel per turn (temperature=1), then lets the same model serve as judge to pick the best — this gives a 10-20% boost on SWE-Bench Pro over single sampling, at the cost of 4-5× tokens. Goal is an independent termination verifier — when the user writes a natural-language closure condition like "tests all pass and submitted," every time the Agent wants to end, the system automatically calls an independent model to check against context, avoiding the common "pretend done" in auto-runs. Both can be enabled simultaneously.

Stage two: memory (state continuity within a task). The team explicitly points out that relying on "compress history" is a dead end — distant information gets diluted repeatedly, more like Mamba's limitation than Transformer's disadvantage. MiMo Code switches to an explicit store-retrieve structure: what information is worth writing to persistent storage, and when it is recalled, are decided by the harness, giving the model true "look back on demand" capability.

Stage three: evolution (cross-session experience distillation). Failure-repair patterns accumulated in different tasks should flow back into the prompt or tool strategy, not start from scratch every round.

Compared to same-period solutions that pile on GPU clusters, MiMo Code's engineering philosophy is closer to software engineering itself — designing reliability as a process, not relying on the model to get smarter overnight. For the domestic Agent open-source ecosystem, this may be more worth following than a single SOTA on a benchmark.