Reward Scaffolds in Reinforcement Learning
- Reward scaffolds are structured reward schemes that decompose complex objectives into verifiable, auxiliary signals for enhanced optimization.
- They employ hierarchical, adaptive designs—such as multi-phase, tool-augmented, and per-agent approaches—to localize and refine supervision.
- Empirical results indicate that scaffolded rewards improve exploration efficiency and credit assignment while reducing vulnerability to reward hacking.
Searching arXiv for papers on reward scaffolds and closely related formulations across reinforcement learning, reward modeling, and agent training. Reward scaffolds are structured reward schemes that decompose a difficult objective into auxiliary signals ordered by verifiability, observability, or training utility, then use those signals to guide optimization while preserving or conditioning on the original task objective. Across reinforcement learning, reward modeling, multi-agent systems, software agents, GUI agents, and LLM post-training, the term denotes a family of designs in which intermediate rewards function as temporary supports, layered evaluators, milestone mechanisms, or tool-mediated judging pipelines rather than as a single undifferentiated scalar. In multi-agent reinforcement learning, reward scaffolds can be per-agent intrinsic training signals computed from privileged global information and removed at execution (Li et al., 2024). In open-ended post-training, they can be prompt-specific artifacts that make success conditions explicit before responses are generated, separating specification from computation (Weng et al., 28 May 2026). In reward modeling, they can be explicit reasoning phases, executable verification layers, or tool-augmented evidence-gathering procedures that precede a final judgment (Guo et al., 20 May 2025, Hu et al., 28 Oct 2025). A common rationale is that sparse or monolithic rewards create credit-assignment, non-stationarity, or robustness failures, whereas scaffolded rewards provide denser, more structured supervision without necessarily changing the ultimate deployment-time interface (Li et al., 2024, Sun et al., 14 Aug 2025, Zheng et al., 12 Feb 2026).
1. Conceptual scope
The literature uses “reward scaffold” to describe several closely related constructions. One formulation defines reward scaffolds as “intrinsic, per-agent training signals constructed from privileged global information to guide exploration during centralized training, and then removed for decentralized execution” (Li et al., 2024). Another defines a prompt-level reward specification as a “reusable, prompt-specific set of artifacts that make success conditions explicit before any responses are generated or scored,” with the scaffold being the layered structure that exposes criteria up front and decomposes them into complementary signals at scoring time (Weng et al., 28 May 2026). In software reinforcement learning, reward scaffolds are described as “staged, decomposed, proxy-based, and shaped reward structures that progressively guide an agent from easy-to-obtain, high-signal feedback” toward harder task-defining objectives such as correctness, performance, security, or preference (Masud et al., 27 Jan 2026).
These formulations share a structural commitment: reward is not treated as a single opaque scalar, but as a design space of intermediate supports. The supports may be per-agent intrinsic signals, executable constraint checkers, rubric items, process scores, tool-use rewards, milestones distilled from successful trajectories, or callable symbolic subgoals (Li et al., 2024, Weng et al., 28 May 2026, Zheng et al., 12 Feb 2026, Furelos-Blanco et al., 2022). This suggests a broad unifying interpretation: reward scaffolds are not one mechanism but a design pattern for structuring supervision so that optimization receives information at the granularity where errors occur.
A recurring distinction is between scaffolds that are removed after training and scaffolds that remain part of evaluation-time reward computation. ICES explicitly removes scaffolds and exploration policies after training, leaving decentralized execution to the exploitation policy alone (Li et al., 2024). By contrast, prompt-level reward specifications, tool-augmented reward models, and agentic reward systems compute rewards through persistent layered evaluators at scoring time (Weng et al., 28 May 2026, Hu et al., 28 Oct 2025, Feng et al., 28 Feb 2026). Reward scaffolds therefore span both training-only supports and permanent reward infrastructures.
2. Structural motifs and design principles
A central design principle is decomposition by signal type. Prompt-level reward specification separates decomposed prompt-specific rubric items, executable hard-constraint checkers, and an independent global quality score, then aggregates them into a normalized hybrid reward (Weng et al., 28 May 2026). OPENRM similarly decomposes reward into intermediate tool-use quality and final outcome accuracy, with gating that prevents tool-use reward unless the final judgment is correct (Hu et al., 28 Oct 2025). ToolRL decomposes tool-use reward into format adherence, tool selection, parameter schema matching, and parameter value correctness, arguing that coarse answer matching conflates errors across these stages (Qian et al., 16 Apr 2025). In each case, scaffolding localizes supervision to the structure of the task.
A second principle is conditioning dense rewards on higher-fidelity outcomes. Gated Reward Accumulation accumulates immediate rewards only when high-level rewards meet a predefined threshold, so that dense verifiable rewards do not dominate optimization when the long-term objective is unmet (Sun et al., 14 Aug 2025). OPENRM uses a gated composition in which tool-use reward contributes only when the final A/B judgment is correct (Hu et al., 28 Oct 2025). Posterior-GRPO in software tasks similarly gates reasoning reward by execution success, expressed as (Masud et al., 27 Jan 2026). These systems all address the same failure mode: dense intermediate rewards are easier to optimize than final success and can therefore be hacked unless subordinated to a stronger criterion.
A third principle is verifiability. ADMIRE anchors rewards to milestones distilled from successful trajectories and verifies them by Sentence-BERT cosine similarity together with a sequential pointer constraint (Zheng et al., 12 Feb 2026). Prompt-level reward specification compiles prompt-only surface constraints into independent Python functions such as word-count, paragraph-count, keyword inclusion or exclusion, and output-format validators (Weng et al., 28 May 2026). RLAR synthesizes programmatic verifiers through code generation and internet-retrieved reward tools, then uses an EvalTool gate before adding them to the library (Feng et al., 28 Feb 2026). Tool-grounded software rewards similarly rely on compilation, tests, coverage, fuzzing oracles, or static analysis (Masud et al., 27 Jan 2026). The shared pattern is that scaffolds aim to preserve reward fidelity by binding at least part of the signal to checks that are auditable and less vulnerable to judge drift.
A fourth principle is adaptive or hierarchical support. Scaf-GRPO injects tiered in-prompt hints only after learning plateau is detected, escalating from knowledge to planning to solution hints (Zhang et al., 22 Oct 2025). ADMIRE updates milestones when new successful trajectories reveal a simpler or more efficient path (Zheng et al., 12 Feb 2026). Hierarchies of Reward Machines turn a long-horizon objective into callable sub-reward-machines with explicit call/return semantics (Furelos-Blanco et al., 2022). These systems treat scaffolding not as a fixed reward template but as a structured progression of supports matched to task difficulty or learned task structure.
3. Formal mechanisms across domains
In multi-agent reinforcement learning, ICES formalizes scaffolds through counterfactual Bayesian surprise in a learned latent dynamics model. The per-agent intrinsic scaffold is
with aligned priors learned by a conditional VAE and used only during training (Li et al., 2024). The scaffold is intrinsically individual and counterfactual: it isolates each agent’s marginal contribution to global latent transition dynamics.
In prompt-level reward specification, the scaffold is a hybrid reward over rubric satisfaction, executable constraints, and residual holistic quality. For a prompt-response pair , rubric score averages weighted rubric-item judgments, code score averages checker outputs, and global score normalizes an LLM judge’s output to . The aggregation is
$R(x,y)= \begin{cases} \frac{s_r+s_c+\alpha s_g}{2+\alpha}, & n>0\[4pt] \frac{s_r+\alpha s_g}{1+\alpha}, & n=0. \end{cases}$
The global coefficient decays as with 0 steps (Weng et al., 28 May 2026). Here the scaffold is explicit specification plus normalized aggregation.
In reward reasoning models, the scaffold is a structured “think” phase followed by a “decide” phase. A reasoning trace 1 is generated by a policy 2, then the final scalar judgment is derived from the verdict, with reinforcement learning optimizing
3
The environment reward is 4 if the final verdict matches the preferred label and 5 otherwise (Guo et al., 20 May 2025). The scaffold is internal reasoning plus explicit compute allocation at test time.
In long-horizon SWE reinforcement learning, G-RA defines priorities and gates over reward functions. For a lower-priority reward 6 and a higher-priority reward 7 with 8, the rule is that 9 if 0, and otherwise 1 is accumulated (Sun et al., 14 Aug 2025). In the reported SWE instantiation, outcome reward controls whether action-format, scaffold-calling, and scaffold-selection rewards are counted at all.
In GUI agents, ADMIRE combines outcome, format, and milestone rewards: 2 with 3, 4, 5, and 6 (Zheng et al., 12 Feb 2026). Milestone matching is
7
with 8 (Zheng et al., 12 Feb 2026). This is a scaffold based on adaptive intermediate waypoints with asymmetric treatment of success and failure.
In Hierarchies of Reward Machines, scaffolding is formalized at the task-specification level rather than as reward shaping. A reward machine 9 maps event sequences to reward-emitting automaton transitions, while an HRM composes multiple RMs through call edges and explicit stack semantics (Furelos-Blanco et al., 2022). Subtasks become independently solvable options, and the hierarchy provides a modular reward scaffold for long-horizon structure.
4. Major application regimes
Multi-agent exploration
ICES addresses sparse-reward MARL under CTDE. It separates exploration and exploitation: exploitation policy 0 is trained with the original task reward using value-decomposition methods such as QMIX or QPLEX, while exploration policy 1 is trained with per-agent intrinsic scaffolds and privileged global information (Li et al., 2024). Behavior policy mixes exploration and exploitation actions with an annealed coefficient 2, and scaffolds are removed at deployment. Benchmarks include Google Research Football sparse tasks and sparse-reward SMAC scenarios (Li et al., 2024).
Open-ended post-training and reward modeling
Prompt-level reward specification is designed for instruction following, writing, and decision support, where success depends on local requirements, holistic quality, and explicit constraints (Weng et al., 28 May 2026). Reward reasoning models instead treat evaluation itself as a reasoning task, using chain-of-thought plus voting or ELO aggregation for pairwise or multi-response judgments (Guo et al., 20 May 2025). OPENRM extends the scaffold into an agentic judge that interleaves tool use and reasoning for long-form pairwise evaluation, using Wikipedia and arXiv retrieval (Hu et al., 28 Oct 2025). RLAR generalizes this to multi-task RL by dynamically retrieving or synthesizing the reward tool appropriate for each query (Feng et al., 28 Feb 2026).
Tool use and software agents
ToolRL studies reward design for tool selection and application, emphasizing per-step rewards for format, tool names, parameter keys, and parameter values rather than end-answer reward (Qian et al., 16 Apr 2025). In software engineering more broadly, the survey on reward engineering organizes reward design by source, granularity, and aggregation, covering execution-based rewards, reference-based proxies, model-based preferences, PRMs, and multi-objective mixtures (Masud et al., 27 Jan 2026). G-RA addresses multi-turn SWE tasks by gating dense verifiable rewards under outcome success (Sun et al., 14 Aug 2025).
GUI, web, and embodied control
ADMIRE applies adaptive milestone rewards to AndroidWorld, MobileMiniWob++, ALFWorld, and WebShop, combining online milestone generation from successful trajectories with step-level GRPO (Zheng et al., 12 Feb 2026). Here reward scaffolds address long-horizon temporal credit assignment in partially observable interactive environments.
Multimodal reward models
BaseReward uses “reward scaffolds” in a broader systems sense: a structured recipe for constructing multimodal reward models by choosing the paradigm, reward head, training strategy, data mixture, backbone, and ensemble (Zhang et al., 19 Sep 2025). This usage is less about per-trajectory shaping than about the end-to-end design scaffold for reward-model development.
5. Empirical patterns and reported benefits
A strong empirical pattern is that scaffolded rewards improve exploration efficiency or optimization stability when compared with coarser baselines. ICES reports superior exploration capabilities on cooperative sparse-reward benchmarks, including earlier discovery of winning strategies and stronger final performance than baselines such as ADER, MASER, EMC, CDS, MAVEN, and QMIX/QPLEX variants (Li et al., 2024). In GRF 3_vs_1_with_keeper, ICES exceeds 60% final win rate while a global-contribution variant plateaus around 40%, and in SMAC 2s_vs_1sc ICES starts winning by about 2M timesteps whereas baselines lag (Li et al., 2024).
Prompt-level reward specification shows that making criteria explicit improves both offline scalar scoring and online RL. With Qwen3-30B-A3B as evaluator, RewardBench v2 Overall rises from 66.3 to 78.1 and RM-Bench Overall from 80.0 to 86.8; with Qwen3.5-35B-A3B, RewardBench v2 Overall rises from 80.0 to 85.1 and RM-Bench Overall from 87.5 to 91.1 (Weng et al., 28 May 2026). Component ablations show that rubric, global score, and code checks are complementary rather than interchangeable (Weng et al., 28 May 2026).
Reward reasoning models show that additional test-time compute improves reward accuracy. RRM-32B reaches RewardBench Overall 91.2 and Reasoning 98.3, with Reasoning 98.6 under voting@16, and outperforms a non-reasoning DirectJudge baseline (Guo et al., 20 May 2025). On Preference Proxy Evaluations best-of-N inference over 32 candidates, RRM-32B achieves Overall 77.4, rising to 79.7 with voting@5 (Guo et al., 20 May 2025). The paper reports that longer thinking horizons and majority voting yield consistent gains (Guo et al., 20 May 2025).
Gated reward systems exhibit especially sharp stability effects. In SWE tasks, D-RA causes collapse: on SWE-bench Verified, Completion Rate drops from 47.6% for the SFT baseline to 19.4% at 25 steps and 1.4% at 100 steps, whereas G-RA at 75 steps reaches 93.8% Completion Rate and 22.4% Modification Rate (Sun et al., 14 Aug 2025). On kBench-50, G-RA raises Completion Rate from 22.0% to 86.0% and Modification Rate from 12.0% to 42.0% (Sun et al., 14 Aug 2025). The reported interpretation is that ungated dense rewards create an “echo trap” of repeated safe actions such as grep, ls, or echo that accrue immediate reward without solving the task (Sun et al., 14 Aug 2025).
ADMIRE reports over 10% absolute success-rate improvement across different base models on AndroidWorld and robust gains across RL algorithms and heterogeneous environments (Zheng et al., 12 Feb 2026). For Qwen2.5-VL-7B, AndroidWorld rises from 32.8% to 44.0%; for Qwen2.5-VL-3B, it rises from 18.1% to 31.0% (Zheng et al., 12 Feb 2026). The method also outperforms static milestones on average and keeps runtime overhead low relative to LLM-judge process rewards (Zheng et al., 12 Feb 2026).
Tool-augmented or agentic judges also benefit from scaffolding. OPENRM reaches 93.0, 90.0, and 91.0 pairwise accuracy on the in-domain Wikipedia, Scientific, and Medical datasets, for an average of 91.33, substantially above the tool-prompted LLM baselines listed in the paper (Hu et al., 28 Oct 2025). RLAR reports average improvements of 10.4% for Llama-3.1-8B and 61.9% for Qwen3-8B over zero-shot baselines across math, code, translation, and dialogue, while approaching the RewardBench-V2 theoretical upper bound more closely than mean-score ensembles (Feng et al., 28 Feb 2026).
6. Failure modes, robustness concerns, and controversies
A central controversy concerns whether dense intermediate rewards actually verify progress or merely reward style. “Reward Under Attack” argues that current process reward models are systematically exploitable under adversarial optimization pressure, showing a “fluency-logic dissociation” in which style-preserving perturbations change reward by less than 0.1 while logically corrupted reasoning is detected inconsistently (Tiwari et al., 20 Feb 2026). Under RL-induced reward hacking, policies trained on AIME problems can achieve near-perfect PRM rewards above 0.9 while ground-truth accuracy remains below 4%, and 43% of reward gains in one setting are attributable to stylistic shortcuts (Tiwari et al., 20 Feb 2026). The implication is direct: scaffolds that are too process-like and insufficiently outcome-grounded can become fluency detectors rather than reasoning verifiers.
The prompt-level and SWE gating papers address analogous concerns by explicitly separating or conditioning signals. Prompt-level reward specification keeps holistic residual scoring independent from rubric and code signals, and deterministic checkers reduce constraint-related reward hacking (Weng et al., 28 May 2026). G-RA masks dense rewards when the outcome gate fails, blocking optimization pathways in which formatting or tool-use rewards are accrued without task success (Sun et al., 14 Aug 2025). OPENRM likewise uses 3 to prevent over-searching from becoming a reward hack (Hu et al., 28 Oct 2025).
Another recurrent concern is model misspecification. ICES depends on a latent transition model expressive enough to capture environment stochasticity; poor reconstruction or latent misalignment can yield misleading surprise and unstable exploration (Li et al., 2024). ADMIRE depends on milestone quality distilled by an LLM and on threshold calibration for semantic matching (Zheng et al., 12 Feb 2026). RLAR depends on repository documentation, web retrieval quality, and safe execution of synthesized verifiers (Feng et al., 28 Feb 2026). These are not minor implementation details: in scaffolded systems, the scaffold itself becomes an object whose errors shape the policy.
A further limitation is computational overhead. ICES adds a scaffolds network and exploration policy/value heads (Li et al., 2024). Prompt-level reward specifications incur evaluator and checker costs, though asynchronous scheduling and smaller evaluators reduce overhead from +79.9% to +7.7% in the reported implementation (Weng et al., 28 May 2026). ADMIRE adds only modest per-epoch overhead relative to outcome-only reward, but process-reward baselines are substantially slower (Zheng et al., 12 Feb 2026). RLAR trades off lower frontier-API usage against dynamic web retrieval and tool synthesis (Feng et al., 28 Feb 2026).
Misconceptions also appear in how scaffolding is interpreted. One misconception is that reward scaffolds are simply dense rewards. The literature repeatedly distinguishes scaffolding from naive densification: ICES does not mix intrinsic and extrinsic rewards into a single objective (Li et al., 2024); G-RA does not always accumulate dense rewards (Sun et al., 14 Aug 2025); Scaf-GRPO does not modify the reward function at all, but changes the prompt context only when the zero-reward cliff is detected (Zhang et al., 22 Oct 2025). Another misconception is that scaffolds necessarily reduce fidelity. Several systems explicitly attempt the opposite by layering signals according to verifiability and by anchoring dense support to success-conditioned or executable checks (Weng et al., 28 May 2026, Hu et al., 28 Oct 2025, Masud et al., 27 Jan 2026).
7. Relation to broader reward design and future directions
Reward scaffolds connect several strands of reinforcement learning and alignment research. In software RL, the survey explicitly situates scaffold design along reward source, granularity, and aggregation strategy, including weighted combinations
4
5
and curriculum-based schedules 6 that shift emphasis from easy proxies to harder objectives (Masud et al., 27 Jan 2026). This places scaffolded reward engineering in a broader framework of multi-objective and staged reward design.
Hierarchies of Reward Machines provide a symbolic counterpart. Rather than shaping with scalar proxies, HRMs encode task structure directly as callable automata over high-level events, yielding subgoals with deterministic call/return semantics and option-level learning (Furelos-Blanco et al., 2022). This suggests that one lineage of reward scaffolding is fundamentally representational: the scaffold is the task graph itself.
Recent work also points toward adaptive and self-evolving reward infrastructures. RLAR turns reward acquisition into a tool-synthesis problem and grows a reward library during RL (Feng et al., 28 Feb 2026). ADMIRE updates milestones from improved successful trajectories (Zheng et al., 12 Feb 2026). Scaf-GRPO diagnoses learning cliffs and injects progressively stronger hints only when necessary (Zhang et al., 22 Oct 2025). These systems imply a shift from static reward engineering to reward orchestration, in which the scaffold changes with policy capability and data distribution.
A plausible implication is that future reward scaffolds will be increasingly hybrid: verifiable where possible, adaptive where necessary, and explicitly protected against optimization-induced exploitation. The evidence assembled across these papers supports that direction. When scaffolds preserve outcome alignment, expose criteria explicitly, or isolate marginal contributions, they can improve exploration, stability, and generalization (Li et al., 2024, Weng et al., 28 May 2026, Zheng et al., 12 Feb 2026). When they over-reward surface regularities or uncoupled intermediate behavior, they become hackable (Tiwari et al., 20 Feb 2026). The central research problem is therefore not merely how to make reward denser, but how to design temporary or persistent reward supports that remain faithful under optimization pressure.