Reinforcement LearningAgentic RL

RL for Code: Unit Tests as Reward, Replication Training, and SWE-Agent Post-Training

Why code is the ideal RLVR domain — the verifier already exists and it's called the test suite

TL;DR

This guide develops RL for Code: Unit Tests as Reward, Replication Training, and SWE-Agent Post-Training from its central engineering problem to practical design choices and limitations. It synthesizes the roadmap topics without claiming new experimental results. Reported findings belong to the cited sources.

Target searches: “RL for code generation”, “training coding agents”

Why This Topic Matters

Modern LLM and agent training turns familiar reinforcement-learning ideas into systems problems: actions may be tool calls, rewards may come from fallible graders, and trajectories may span many partially observed steps. The classical foundation is POMDPs and belief states; this article focuses on what changes in the newer setting.

The Core Ideas

1. Why code is the ideal RLVR domain — the verifier already exists and it’s called the test suite

2. Reward design: pass rate, partial credit for compilation, penalties for test modification

3. Replication training (Mechanize’s thesis) — have the agent recreate a known implementation from spec; the reference gives a dense, cheap reward signal

4. The SWE-bench-style setup: repo, issue, patch, test

6. Long-horizon issue: real fixes span many files and many steps

Practical Checklist

Limitations

This area changes quickly. Framework support and benchmark leaderboards are time-sensitive, while many recent methods are preprints rather than settled practice. The article describes mechanisms and reported evidence; it does not present an original training run.

Key Learnings

  1. Why code is the ideal RLVR domain — the verifier already exists and it’s called the test suite
  2. Reward design: pass rate, partial credit for compilation, penalties for test modification
  3. Replication training (Mechanize’s thesis) — have the agent recreate a known implementation from spec; the reference gives a dense, cheap reward signal

References

  1. The Landscape of Agentic Reinforcement Learning for LLMs.
  2. Rethinking Agentic Reinforcement Learning in LLMs.