INQUIRING LINE

Can LLM-synthesized behavioral heuristics compete with learned policy improvements?

This explores whether the rules and skills an LLM writes for itself — stored in memory, expressed as reward-shaping functions, or injected as text — can match the performance gains you'd otherwise get from updating the model's weights through reinforcement learning.


This explores whether LLM-authored heuristics (skills, memory entries, self-designed rewards) can rival gradient-based policy learning. The most direct "yes" in the corpus is AgentFly, which treats agent learning as memory operations rather than weight updates and still reaches 87.88% on GAIA without touching a single parameter Can agents learn continuously from experience without updating weights?. That result is striking precisely because it skips the thing RL is supposed to provide — internalized policy improvement — and recovers most of the benefit through structured recall and credit assignment in memory.

But the sharper finding is that the dichotomy may be softer than it looks. When researchers actually inspected what RL changes inside a model, they found it touches only 5–30% of parameters, and those updates land in nearly identical, structured subnetworks across random seeds Does reinforcement learning update only a small fraction of parameters?. So "learned policy improvement" is itself a surprisingly localized, almost surgical edit — which makes it more plausible that a well-aimed heuristic could approximate it. LLMs can even generate the learning signal: MEDIC shows a model writing its own reward-shaping functions by first solving a simplified, deterministic version of the problem Can LLMs design reward functions for reinforcement learning?, and TRELAWNEY embeds future-information "lookahead" tokens directly into training data to teach planning with no architectural change at all Can embedding future information in training data improve planning?.

The most honest answer the corpus offers is that it's not a competition — it's a division of labor across timescales. MetaClaw demonstrates that deployed agents need both: rapid skill injection from failures (seconds, zero downtime) and slower gradient optimization during idle windows, and crucially the two reinforce each other — better policies produce more informative failures, and richer heuristics enable higher-reward trajectories Can agents adapt without pausing service to users?. Heuristics win on speed and reversibility; learned updates win on durability. The interesting claim is that you lose more by choosing than by combining.

There's also a structural cousin to heuristics worth pulling in: wrapping LLM calls in explicit algorithmic control flow, where the algorithm — not the model — decides what context each step sees Can algorithms control LLM reasoning better than LLMs alone?. This is heuristic engineering at the orchestration layer rather than the weight layer, and it sidesteps capability ceilings the same way memory does. Related self-improvement loops that avoid human labels — MCTS-derived process rewards Can tree search replace human feedback in LLM training? and majority-vote test-time RL Can models improve themselves using only majority voting? — blur the line further, since they're learned updates bootstrapped from signals the model synthesizes about itself.

The caveat: both camps hit the same wall on genuinely hard problems. On constrained optimization, LLMs plateau around 55–60% satisfaction regardless of scale, architecture, or training regime Do larger language models solve constrained optimization better?. When the ceiling is in the model's reasoning rather than its policy, neither a clever heuristic nor a gradient step moves it — which is the quiet lesson here: heuristics can compete with learned policy improvements wherever the bottleneck is knowing what to do, and neither competes where the bottleneck is being able to do it.


Sources 9 notes

Can agents learn continuously from experience without updating weights?

AgentFly formalizes agent learning as a Memory-augmented MDP with three memory modules (case, subtask, tool) that enable credit assignment and policy improvement entirely through memory operations. The approach achieved 87.88% on GAIA validation without modifying LLM parameters.

Does reinforcement learning update only a small fraction of parameters?

Across seven RL algorithms and ten LLM families, RL induces intrinsic parameter sparsity of 5–30% without explicit regularization. Critically, these sparse updates are nearly full-rank and nearly identical across random seeds, indicating structural rather than arbitrary parameter selection.

Can LLMs design reward functions for reinforcement learning?

MEDIC shows that LLMs can generate effective reward shaping functions by first solving a deterministic, simplified version of the RL problem, then converting the resulting plan into shaping rewards for the original stochastic task. A model-based critic validates LLM outputs before deployment.

Can embedding future information in training data improve planning?

TRELAWNEY augments training data with special tokens encapsulating future information, allowing models to learn goal-conditioned generation using standard infrastructure. Results show improved planning, algorithmic reasoning, and story generation without modifying architecture or training procedures.

Can agents adapt without pausing service to users?

MetaClaw demonstrates that deployed agents require both rapid skill injection from failures (seconds, zero downtime) and slower gradient-based optimization during idle windows (minutes to hours). The two mechanisms reinforce each other, with better policies producing more informative failures and richer skills enabling higher-reward trajectories.

Can algorithms control LLM reasoning better than LLMs alone?

LLM Programs embed LLMs within explicit algorithms that manage control flow and state, presenting only step-specific context to each LLM call. This information hiding addresses capability and context window limits while treating complex reasoning as modular, debuggable sub-tasks.

Can tree search replace human feedback in LLM training?

AlphaLLM uses tree search outcomes and three critic models to derive dense reward signals equivalent to human-labeled feedback. Tree structure naturally ranks solution paths by success, replacing the annotation oracle that standard RLHF requires.

Can models improve themselves using only majority voting?

Test-Time RL generates reward signals by majority voting across repeated samples, enabling policy improvement without ground-truth labels or trained reward models. This approach works surprisingly well because consensus answers tend to be correct, creating a bootstrapping loop where test-time compute enables training that improves the model.

Do larger language models solve constrained optimization better?

Across constrained-optimization tasks, LLMs converge to ~55–60% constraint satisfaction independent of architecture, parameter count, or training regime. Reasoning models do not systematically outperform standard models, suggesting a fundamental ceiling rather than a scaling gap.

Research prompt for your LLMexpand ↓

Copy into ChatGPT or Claude to take this line of inquiry further — it asks the model to find newer work and re-test which earlier constraints still hold.

You are an AI researcher auditing claims about LLM-synthesized heuristics vs. learned policy improvements. The question remains: can heuristics compete with gradient-based policy learning?

What a curated library found — and when (dated claims, not current truth):
Findings span Feb 2024–May 2026. Key constraints the corpus identified:
• Memory-based adaptation (AgentFly, ~2026) reached 87.88% on GAIA without parameter updates, suggesting heuristics can approximate learned improvements via structured recall.
• RL updates in large models touch only 5–30% of parameters in sparse, seed-invariant subnetworks (~2025), implying learned changes are surgical and potentially replicable by heuristics.
• LLMs plateau at 55–60% constraint satisfaction regardless of scale or training (~2026); neither heuristics nor gradient updates overcome reasoning bottlenecks.
• Two-timescale learning (MetaClaw, ~2026) shows heuristics excel at rapid skill injection (seconds); learned updates excel at durability—combining both outperforms either alone.
• Self-improvement via test-time RL and majority-vote reward estimation (~2025) blurs the heuristic/learned boundary by bootstrapping signals without human labels.

Anchor papers (verify; mind their dates):
• arXiv:2505.11711 (2025-05): RL Finetunes Small Subnetworks
• arXiv:2603.17187 (2026-03): MetaClaw—two-timescale agent adaptation
• arXiv:2603.23004 (2026-03): LLM reasoning under constraints
• arXiv:2504.16084 (2025-04): Test-Time Reinforcement Learning

Your task:
(1) RE-TEST each constraint. For the 87.88% memory result, 5–30% parameter sparsity, and 55–60% constraint ceiling: have newer models, inference-time techniques (e.g., scaling test-time compute, chain-of-thought variants), or hybrid architectures since relaxed or overturned these bounds? Separate the durable question (does the dichotomy dissolve?) from perishable limits (these specific numbers).
(2) Surface work from the last ~6 months that contradicts or supersedes the "two-timescale" framing or the constraint-satisfaction ceiling. Does any recent paper show heuristics or learned policies breaking through the 55–60% plateau?
(3) Propose 2 research questions assuming the regime may have shifted: (a) Does scaling orchestration—not weights—finally decouple policy capability from model scale? (b) Can synthesized heuristics now compete on *durability* via continual memory consolidation?

Cite arXiv IDs; flag anything you cannot ground in a real paper.

Next inquiring lines