August 26, 2026 · daily digest

cere-bro | 2026-08-26

cere-bro | 2026-08-26

Nothing today got bigger. Everything today got a better denominator. A first-generation inference chip beats Nvidia's newest by spending fewer joules per token, a 4-bit model beats its own 16-bit parent by picking a better teacher, and two harness papers lift frozen frontier models by attributing failures more precisely. The day's optimization axis is cost, and the mechanism is almost always the same one: constrain the work better rather than buy more of it.

🎯 Today's 5 for you
  1. ReadOpenAI's Jalapeño inference chip. The most consequential hardware story of the month, and it is a memory-hierarchy paper wearing silicon: cores paired one-to-one with HBM slices to eliminate KV-cache and weight movement, out-of-order cores with real L1 instead of software scratchpads, HBM4 at 15.4 TB/s, and it beats Vera Rubin on tokens per megawatt while using none of the tricks its competitors' numbers use. SemiAnalysis teardown · wiki summary
  2. ReadQuantization-Aware Healing. Straight compression, and the cleanest result of the day: a 4-bit MXFP4 model that beats the full-precision bfloat16 checkpoint it was quantized from, on 7 of 9 benchmarks. One change (distil from the original pre-compression model, not the recovered one) removes a ceiling nobody had noticed was there. Blog · wiki summary
  3. ReadOPDVR. This is the paper that closes the hole yesterday's R2-OPD left open. On 08-25 you read that distillation punishes a student for finding its own valid reasoning path, and that the proposed fix leaned on a second unvalidated reward model. OPDVR fixes the same problem with a verifier and a ReLU gate, adding zero hyperparameters and no estimator to trust. Paper · wiki summary
  4. SkimAutoSaddler and Recuris, the harness pair. Your most-saved theme by a wide margin, and today it pays off twice: Recuris is the first system that actually composes state-outside-context, memory routing and self-optimization end to end (resolving an open problem this wiki has carried since May), and AutoSaddler's ablation makes the bound-the-edit rule an empirical finding rather than a design preference. Recuris · AutoSaddler
  5. TrackNvidia's Groq 3 LPX claim, and specifically its denominator. Full production, 3,400 tokens/sec on Gemma 4 31B, four times Cerebras. It takes at least 64 accelerators to get there where Cerebras needs one or two, and MoE scaling is unaddressed. Worth watching, not worth believing yet. Skip the two Information pieces on Jalapeño, which add a salmonella joke to the SemiAnalysis teardown. The Decoder

TL;DR


Deep Dives

OpenAI Jalapeño: a first-generation ASIC that wins on joules per token

OpenAI's chip beats Nvidia's newest silicon on tokens per megawatt while using neither speculative decoding, nor multi-token prediction, nor prefill/decode disaggregation. All three are in its competitors' published numbers.

Source: SemiAnalysis, with corroboration from The Information (x2), The Decoder, and starred Gmail Links: SemiAnalysis teardown · OpenAI's results · Wiki summary

flowchart LR
  subgraph S0["Core slice 0"]
    C0[OoO core<br/>+ L1 cache] <--> H0[(HBM4 slice)]
  end
  subgraph S1["Core slice 1"]
    C1[OoO core<br/>+ L1 cache] <--> H1[(HBM4 slice)]
  end
  subgraph SN["Core slice N"]
    CN[OoO core<br/>+ L1 cache] <--> HN[(HBM4 slice)]
  end
  S0 --> COL{{Dedicated collective<br/>network}}
  S1 --> COL
  SN --> COL
  COL --> IO[I/O chiplet<br/>32x 800G SerDes]
  IO --> RACK[Rack scale-up<br/>600 GB/s]
  IO --> DOM[2,048-XPU domain<br/>200 GB/s]
  classDef input fill:#dbeafe,stroke:#3b82f6,color:#1e3a8a
  classDef decision fill:#fef3c7,stroke:#f59e0b,color:#78350f
  classDef output fill:#d1fae5,stroke:#10b981,color:#065f46
  classDef aux fill:#e0e7ff,stroke:#6366f1,color:#312e81
  class C0,C1,CN input
  class H0,H1,HN output
  class COL decision
  class IO aux
  class RACK,DOM output

What is it about? OpenAI built a chip with Broadcom that does one job: run inference on large language models. It taped out in November 2025, and nine months later SemiAnalysis was invited to benchmark it in OpenAI's lab. First-generation chips from new teams are normally uncompetitive. This one beat every Nvidia, AMD and Google part SemiAnalysis has tested on multiple open-source models.

What problem does it solve? Not cost, and not raw speed. Power. OpenAI says it is limited by datacenter power, not by budget or floorspace, so the number it designed against is tokens per second per megawatt. That reduces to tokens per joule, since a watt is a joule per second. Both sides of the market now agree on that denominator. Jensen Huang said at Computex 2026 that "if you have 1 gigawatt of power, then throughput per watt is revenue," and Nvidia repeated at Hot Chips 2026 that "the data center is power limited today." The reason is a timescale mismatch: you can buy GPUs far faster than a utility can deliver grid capacity, which is why operators build gas turbines on site behind the meter.

What's the core novelty? Two refusals of accepted accelerator design. First, the slice: cores and HBM are divided into paired units, and each core gets a low-latency local view of its own memory slice only, with cross-slice traffic pushed onto a dedicated collective network. On a GPU, a memory access crosses a deep hierarchy and the resulting latency must be hidden behind more work per core, which is why GPUs want big batches and well-shaped matrices. Jalapeño declines to build the hierarchy. Second, the core is out-of-order with a real L1 cache, where TPU, Trainium and GPUs all use a software-managed scratchpad plus asynchronous DMA. The argument is identical: barrier and launch latencies are fixed overheads, and removing them lets the chip approach peak bandwidth even at batch size one.

Key takeaways

Gaps in the study All numbers come from OpenAI; SemiAnalysis watched the runs but did not independently execute the full suite. The workload is 8k1k single-turn with no AgentX runs at all, and long-context multi-turn serving is exactly where a homogeneous no-disaggregation design has the most to prove, because it stresses routers, prefix caches and offload. SemiAnalysis says outright that Blackwell is the wrong comparison and Rubin is the real competitor, and on perf/TCO the two are level, with Rubin's number already including speculative decoding (worth 3-5x on cost per token) and Jalapeño's not. Production ramps gradually through 2027.

Industrial implication The line worth arguing about is SemiAnalysis's own: "the CUDA moat is potentially dead." Not because the hardware is better, but because the software cost of leaving CUDA collapsed. Jensen Huang's asset thesis, which this wiki recorded on 08-13, is a chain: CUDA continuity gives versatility, versatility gives fungibility, fungibility gives utilization, utilization gives a nine-year depreciable life, and that makes GPU fleets financeable. The first link in that chain is a software moat. If a model can bring up three frontier open-weight models on a brand-new instruction set in three months, the chain weakens at the top. Note the counterweight SemiAnalysis supplies itself: Meta and Microsoft have been building ASICs longer and have less to show, so this is a story about one unusually good team plus code generation, not about ASICs being easy.


Quantization-Aware Healing: a 4-bit model that beats its own full-precision parent

The 4-bit model is smaller, cheaper to serve, and more accurate than the 16-bit checkpoint it was quantized from. One change to the recipe inverts the relationship everybody assumes.

Source: Multiverse Computing, via the HuggingFace blog Links: Blog post · Wiki summary

flowchart LR
  ORIG[Original model<br/>120B full precision] --> COMP[Structural compression]
  COMP --> REC[Recovered checkpoint<br/>60B bfloat16]
  REC --> Q[Quantize to MXFP4]
  Q --> STU[4-bit student<br/>60B MXFP4]
  REC -.->|"old way: teach from the<br/>recovered checkpoint<br/>caps at its ceiling"| STU
  ORIG ==>|"QAH: teach from the<br/>ORIGINAL model"| STU
  classDef input fill:#dbeafe,stroke:#3b82f6,color:#1e3a8a
  classDef decision fill:#fef3c7,stroke:#f59e0b,color:#78350f
  classDef output fill:#d1fae5,stroke:#10b981,color:#065f46
  classDef warn fill:#fee2e2,stroke:#ef4444,color:#7f1d1d
  class ORIG input
  class COMP,Q decision
  class REC warn
  class STU output

What is it about? The standard way to ship an efficient model is three steps: cut the architecture down (remove layers, heads, neurons), quantize the remaining weights to 4 bits, then heal the damage with more training. gpt-oss, NVIDIA's Nemotron family and Multiverse's own Hypernova 60B all use some version of this. QAH changes only the healing step.

What problem does it solve? Healing normally means quantization-aware training: insert fake-quantization operators into the forward pass and keep fine-tuning on a task loss, so weights learn to tolerate low precision. That means re-running an expensive multi-stage post-training history (supervised fine-tuning, RLHF, agentic tuning) through a noisier forward pass, and it destabilizes if you train too long. The alternative, quantization-aware distillation, skips the history by teaching the quantized student from a frozen full-precision teacher. But after structural compression there is no legitimate teacher: no independently trained full-precision version of the smaller architecture exists, so the only candidate is the recovered bfloat16 checkpoint, which is itself a lossy approximation. Teaching from it silently caps the student at that checkpoint's ceiling.

What's the core novelty? Drop the requirement that teacher and student share an architecture. QAH distils from the original, pre-compression, full-precision model into a student that is half the size and running in MXFP4, matching output distributions through KL divergence on the logits. This works because a teacher's output distribution does not care about the student's shape. The reframing is the real contribution: quantization stops being lossy postprocessing applied after healing, and becomes a second full pass of distillation against the original teacher, supplying supervision the bfloat16 checkpoint never received. The 4-bit student is not recovering what quantization destroyed. It is acquiring what the recovery stage never had time to transfer.

Key takeaways

Gaps in the study One model family, one compression ratio, one quantization format. The comparison is against the recovered 60B checkpoint, not against the original 120B in bf16, so this is a claim about recovering compression damage rather than about quantization being free. Two of nine benchmarks still lose and the post does not say which. And precomputed teacher logits carry a storage cost proportional to vocabulary times tokens that is never priced.

Industrial implication This is a rare unambiguous win on cost per completed task: half the parameters, a quarter of the precision, higher accuracy. Most efficiency results in this wiki trade something, and the compute-economics page has recorded how easily those trades get erased. A 34.5% cross-vendor tokenizer difference can wipe out a state-of-the-art token saving. QAH has nothing to erase. Expect the compress-then-heal pipelines at NVIDIA and in the open-weight releases to adopt original-teacher healing within a quarter, because it is a change of teacher pointer rather than a change of method.


OPDVR: gate the distillation signal on whether the answer was right

Yesterday's paper said distillation punishes a student for reasoning independently, and proposed a second reward model to detect it. Today's paper fixes the same problem with a verifier and no new hyperparameters at all.

Source: HuggingFace Daily Papers (7 upvotes), LeapLab Tsinghua Links: Paper · Code · Wiki summary

flowchart LR
  S[Student rollout] --> T[Teacher scores<br/>every token]
  S --> V{Verifier:<br/>answer correct?}
  T --> R[OPD implicit reward<br/>rewritten on<br/>trajectory correctness]
  V -->|correct| G[ReLU gate<br/>reward >= 0]
  V -->|wrong| G2[ReLU gate<br/>reward <= 0]
  R --> G
  R --> G2
  G --> PG[Any policy gradient<br/>incl. GRPO]
  G2 --> PG
  classDef input fill:#dbeafe,stroke:#3b82f6,color:#1e3a8a
  classDef decision fill:#fef3c7,stroke:#f59e0b,color:#78350f
  classDef output fill:#d1fae5,stroke:#10b981,color:#065f46
  classDef warn fill:#fee2e2,stroke:#ef4444,color:#7f1d1d
  class S,T input
  class V,G,G2 decision
  class R,PG output

What is it about? Two ways to post-train a reasoning model, each broken in the opposite way. RLVR (reinforcement learning with verifiable rewards, where a checker confirms the final answer and that single bit is the whole reward) knows about correctness but gives one piece of feedback at the end of a long generation, so assigning credit to intermediate steps is guesswork. On-policy distillation (where a stronger teacher supplies a target distribution at every token the student generates) gives dense per-step guidance but has no concept of whether the answer was right, so the student's ceiling is the teacher's ability. OPDVR fuses them.

What problem does it solve? Existing fusions rely on weighted combination or heuristic switching: pick a mixing coefficient, or a rule for when to change objective. Both choices are arbitrary and dataset-specific, and both add hyperparameters. OPDVR's claim is that no mixing is needed.

What's the core novelty? Rewrite on-policy distillation's implicit reward as a function of trajectory correctness, then apply a ReLU gate: correct trajectories can only get non-negative reward, incorrect ones only non-positive. Two consequences. The teacher ceiling comes off, because a student trajectory that is correct but unlike the teacher still gets rewarded. And the reformulation turns sampled-token distillation into a proper RLVR method, so it drops into any policy-gradient algorithm including GRPO instead of being a bespoke objective.

Key takeaways

Gaps in the study The abstract reports "consistently outperforms" with no per-benchmark numbers, which is the wrong level of reporting for a paper whose entire content is a comparison. The more important missing baseline is RLVR alone at matched compute, since the pitch is that OPDVR beats both parents and only one parent is benchmarked. The ReLU gate is a hard sign constraint, so it throws away information about how wrong an incorrect trajectory was, and no softer variant is tried. And it only works where a verifier exists.

Industrial implication This is the version of the distillation-plus-RL fusion that survives contact with a production team, because a method with no mixing coefficient cannot be mis-tuned. Anyone running a post-training pipeline on math, code, or anything else with a checker should be able to adopt it as a patch rather than a rewrite. Its scope limit is also its deployment boundary: no verifier, no OPDVR, which is precisely where R2-OPD from yesterday still has to do the work.


DiffusionOPSD: manufacture dense supervision from a sparse reward, and cut GPU-hours 40-63%

The paper reports a result its competitors structurally cannot: a better supervision target does not necessarily produce a better training step.

Source: HuggingFace Daily Papers (35 upvotes), ByteDance Seed with NUS, UCSD, HKUST, Duke, Berkeley Links: Paper · Wiki summary

flowchart LR
  BP[Frozen behavior policy] --> TRAJ[Trajectories:<br/>query states + anchors]
  TRAJ --> RG[Reward gradients]
  RG --> POS[Bounded positive target]
  RG --> NEG[Bounded negative target]
  POS --> FIT{Finite fitting<br/>detached supervision}
  NEG --> FIT
  FIT --> TP[Trainable policy]
  TP -->|EMA refresh| BP
  classDef input fill:#dbeafe,stroke:#3b82f6,color:#1e3a8a
  classDef decision fill:#fef3c7,stroke:#f59e0b,color:#78350f
  classDef output fill:#d1fae5,stroke:#10b981,color:#065f46
  classDef warn fill:#fee2e2,stroke:#ef4444,color:#7f1d1d
  class BP,TRAJ input
  class FIT decision
  class POS,TP,RG output
  class NEG warn

What is it about? Reinforcement learning can align an image-generating diffusion model with human preferences, but the reward only arrives once the final image is decoded, and it says nothing about how any intermediate denoising step should have been different. DiffusionOPSD converts that terminal reward into explicit targets for the model's clean-output predictions partway along the trajectory.

What problem does it solve? The alternatives all handle that translation indirectly. Reward-weighted likelihood methods supervise individual denoising steps only implicitly. Policy-gradient methods like FlowGRPO and DanceGRPO rely on trajectory credit estimation that is sensitive to sample budget, likelihood estimation and sampler choice. Differentiable-reward methods like ReFL backpropagate through one late-state prediction, coupling reward and timestep in a way that is hard to control.

What's the core novelty? Self-distillation with no external teacher. A frozen behavior policy generates trajectories and supplies anchor points; reward gradients build bounded positive and negative targets around each anchor; the trainable policy fits those as detached supervision; an exponential-moving-average update refreshes the behavior policy from the student. Critically, this separates target construction (how good a target you can build) from finite realization (how much of it one update captures), and makes both measurable.

Key takeaways

Gaps in the study Text-to-image only, two backbones. The EMA refresh rate controls how far the supervisor can drift from the student and its sensitivity is unreported, as is the clipping radius implied by "bounded" targets. The efficiency headline is relative to DiffusionNFT specifically rather than to the cheapest available baseline.

Industrial implication A 40-63% cut in training GPU-hours at better quality is worth more this month than last, because compute prices are rising: Blackwell-generation capacity cleared auctions 15% above record earlier in August. There is also a quiet methodological point worth carrying. Denominating a saving in GPU-hours rather than tokens sidesteps the unit problem this wiki keeps hitting, where two vendors quoting the same dollars per million tokens are not quoting the same price because their tokenizers differ by up to a third.


OraRL: the annotation is already a perfect rollout, and inserting it naively breaks the algorithm

Removing chain-of-thought takes decode latency from 4,780 ms to 130 ms. The paper's claim is that dense enough training signal makes the reasoning scaffold unnecessary at serve time.

Source: HuggingFace Daily Papers, the day's top paper at 65 upvotes. Nankai VCIP, NPU, CAS Links: Paper · Wiki summary

flowchart LR
  P[Prompt] --> POL[Policy rollouts]
  ANN[(Annotation)] --> ORA[Oracle rollout]
  POL --> BASE[Oracle-FREE baseline]
  ORA --> GAP{Oracle-policy gap}
  BASE --> ADV[Uninverted<br/>policy advantages]
  GAP --> GAIN[Directional gain]
  GAP --> DOA[Detached<br/>oracle advantage]
  ADV --> PR{Sign-balanced pruning:<br/>oracle + strongest<br/>of each sign}
  GAIN --> PR
  DOA --> PR
  PR --> UPD[2.2x SFT step time<br/>vs GRPO-CoT's 4.9x]
  classDef input fill:#dbeafe,stroke:#3b82f6,color:#1e3a8a
  classDef decision fill:#fef3c7,stroke:#f59e0b,color:#78350f
  classDef output fill:#d1fae5,stroke:#10b981,color:#065f46
  classDef aux fill:#e0e7ff,stroke:#6366f1,color:#312e81
  class P,ANN,POL input
  class GAP,PR decision
  class BASE,ADV,GAIN,DOA aux
  class ORA,UPD output

What is it about? Reinforcement learning post-training for video models is wasteful because on-policy sampling rarely produces a rollout good enough to learn from, and chain-of-thought generation makes each wasted rollout longer. OraRL notices that the dataset already contains a perfect rollout: the human annotation. Let it enter the group as an oracle rollout, a direct positive target rather than just a scoring reference.

What problem does it solve? Supervised fine-tuning uses annotations as maximum-likelihood targets, which enforces output format but cannot distinguish a near-correct prediction from a clearly wrong one. GRPO-style RL uses annotations only to score sampled outputs, and those samples rarely match annotation precision (exact intervals, boxes, masks, trajectories), so positive signal is scarce. Both uses are available at once and nobody was taking both.

What's the core novelty? The failure mode it names, and the fix. Inserting a high-reward oracle into a group-relative computation lifts the group baseline enough that genuinely good policy rollouts acquire negative advantages and get trained away from. The paper calls this advantage inversion. The fix decouples: policy rollouts alone set the baseline, so the oracle cannot move the reference point; the oracle-policy gap is then used separately as a directional gain and as a detached oracle advantage. Sign-balanced pruning keeps only the oracle plus the strongest rollout of each sign and discards the indistinguishable middle.

Key takeaways

Gaps in the study Dependence on annotation quality is total and unmeasured: an oracle rollout is only an oracle if the annotation is right, and no ablation degrades annotation quality to find the breaking point. The 37x decode win comes from removing chain-of-thought, which is a change to the deployed model rather than a property of OraRL, so the honest framing is that OraRL makes CoT-free deployment viable. Video perception throughout, so the idea is untested on text reasoning where it would be cheapest to try.

Industrial implication Advantage inversion is the transferable part and it should worry people outside video. Any pipeline that injects an off-policy high-reward sample into a group-relative advantage computation is exposed to it, and that describes a lot of current practice, including several ways teams currently mix demonstration data into GRPO runs. The failure is invisible in aggregate reward curves, which is exactly why it has probably been happening unnoticed.


AutoSaddler: rewrite the harness from batches of failure traces

Given free rein to rewrite the scaffold, the optimizer does worse. Constraint is the finding, not a limitation.

Source: HuggingFace Daily Papers (40 upvotes). Microsoft with POSTECH, KAIST, SUSTech Links: Paper · Wiki summary

flowchart LR
  RUN[Agent runs<br/>mini-batch of tasks] --> TR[Failure traces]
  TR --> DIAG[Deep debugging<br/>not shallow reflection]
  DIAG --> PATCH[Structured patches<br/>harness as code]
  PATCH --> CAND[Candidate harnesses]
  CAND --> SEL{Generalization-aware<br/>validation selection}
  SEL -->|accept| H[Durable harness update]
  SEL -->|reject| CAND
  H --> RUN
  classDef input fill:#dbeafe,stroke:#3b82f6,color:#1e3a8a
  classDef decision fill:#fef3c7,stroke:#f59e0b,color:#78350f
  classDef output fill:#d1fae5,stroke:#10b981,color:#065f46
  classDef aux fill:#e0e7ff,stroke:#6366f1,color:#312e81
  class RUN,TR input
  class SEL decision
  class DIAG,PATCH aux
  class H,CAND output

What is it about? A harness is the scaffolding around a model: prompts, tool configurations, control logic. It reliably makes agents more robust and designing it is still manual and expensive. AutoSaddler formulates harness improvement as an offline learning problem, updating from mini-batches of failure signals rather than proposing-and-testing one variant at a time.

What problem does it solve? Prior harness optimizers on this wiki are online searches, and an online search that keeps whatever scored better on the last rollout encodes that rollout's accidents. Batching failures, diagnosing across the batch, and patching once is what makes AutoSaddler's updates durable. It also deliberately scopes past prompt optimization, on the grounds that the design space that matters includes tools and runtime control logic, not prompt text.

What's the core novelty? Honestly, the ablation more than the method. Effective harness optimization needs deep debugging rather than shallow reflection (a short self-critique of what went wrong is insufficient), targeted modification rather than unconstrained editing, and generalization-aware selection rather than trajectory-specific repair.

Key takeaways

Gaps in the study "The corresponding base harnesses" are unnamed, which makes the baseline unpinnable, and base-harness quality is exactly what determines available headroom. No search cost is published, which is now the standard omission in this literature. Single-attempt scores only. And the three ablation findings are stated directionally without the numbers that would let you weigh them.

Industrial implication The three ingredients are directly actionable for anyone running an agent in production, and two of them are prohibitions: do not let your optimizer rewrite freely, and do not accept a patch that only fixes the trace it came from. There is also an awkward internal note. Microsoft published Thinkingbox yesterday, showing the strongest model dropping from 65.36% pass@1 to 25.25% pass^20 on stateful business workflows, meaning single-attempt scores overstate reliability by 40 points. Then it published this, in single-attempt scores.


Recuris: let verified task state pick the skills

Claude Opus 5 to 87.9% on tau-bench, GPT-5.6 Sol up 17.8 points, weights untouched. And the advantage keeps growing as tasks get longer, reaching +32.2 on the longest.

Source: HuggingFace Daily Papers (15 upvotes). NUS, Princeton, Stanford, Oxford Links: Paper · Code · Wiki summary

flowchart LR
  EXEC[Execution step] --> WM[Working Memory<br/>verified task state]
  WM --> SEL{Skill selection<br/>by current need}
  EM[(Experiential Memory)] --> SEL
  SEL --> EXEC
  EXEC --> EV[Failure localized to<br/>a memory component]
  EV --> MA[Fixed Meta-Agent]
  MA --> UPD{Validation-gated<br/>local update}
  UPD -->|accept| SM[(Skill Memory)]
  SM --> EM
  UPD -->|reject| MA
  classDef input fill:#dbeafe,stroke:#3b82f6,color:#1e3a8a
  classDef decision fill:#fef3c7,stroke:#f59e0b,color:#78350f
  classDef output fill:#d1fae5,stroke:#10b981,color:#065f46
  classDef aux fill:#e0e7ff,stroke:#6366f1,color:#312e81
  class EXEC,WM input
  class SEL,UPD decision
  class EM,SM output
  class EV,MA aux

What is it about? Agents that improve themselves break down on long tasks. Recuris says the reason is a memory architecture problem and splits memory in two. Working Memory holds verified task progress. Experiential Memory holds reusable skills. The key move is that Working Memory, not the transcript, selects which skill to use.

What problem does it solve? Two failures, precisely diagnosed. Skill retrieval keyed on the initial instruction or the full interaction history degrades as a task runs, because the instruction goes stale and the history grows until it obscures the state it is meant to describe, so retrieval starts returning irrelevant or outdated skills exactly when the task is hardest. Meanwhile, working-memory systems do track state, but their updates are either rule-fixed or self-reported by the model with no external check, so they are vulnerable to omission and hallucination.

What's the core novelty? The second-order payoff of verifying state. Because state is checked against the environment, an execution failure localizes to a specific memory component, and that attribution is what lets a fixed Meta-Agent write a local, validation-gated patch to Skill Memory instead of a global rewrite. The Meta-Agent never edits itself, which is what keeps the recursion bounded. Verified state is not only a reliability mechanism, it is the credit-assignment substrate.

Key takeaways

Gaps in the study Two of 37 pairs did not complete and the paper does not say which or why, which matters in a breadth claim. Maintaining verified state and running validation gates are per-step overheads, largest on exactly the longest tasks where gains are largest, and no token or dollar cost is given. tau-bench at 87.9% is approaching where headroom stops being measurable. And "validation-gated" is uninterpretable without a validation budget.

Industrial implication Frontier models are not saturated on long-horizon work, and the headroom is in the memory architecture rather than the weights. Ten models gaining by materially different amounts also strengthens a claim this wiki has now made five times without anyone acting on it: the thing worth routing over is the model-harness pair, not the model. If you operate a multi-model agent product, the cheapest available win this quarter is probably a verified working-state layer, not a model upgrade.


Nine practical rules for agents doing real work

A survey of unrelated production teams independently reproduced the architecture this wiki assembled from roughly fifteen papers, and brought a new number: an 18 point spread between the best and worst harness for the same model.

Source: Ben Lorica, Gradient Flow Links: Essay · Wiki summary

What is it about? Lorica has been talking to teams shipping agents and reports that groups with unrelated products are arriving independently at nearly the same architecture. He writes the convergence down as nine rules. It is a practitioner essay, not a paper, and it is here because that convergence is itself evidence.

What problem does it solve? It answers the question that comes after "does my agent pass evals," namely what to actually build around a model once it is doing real work.

What's the core novelty? Two things that are load-bearing rather than restatements. Rule 5 reports that the same open model showed an 18 percentage point spread between its best and worst harness configuration, which Lorica singles out as the finding he would take most seriously when comparing models, and concludes that a leaderboard is only a starting point because changing either the model or the harness means you are evaluating a new system. Rule 4 supplies the arithmetic everyone skips: a system that is 95% reliable per step completes ten independent steps about 60% of the time, which is why a three-step demo dazzles and a real business process collapses. His instruction is to measure recovery separately from first-attempt accuracy.

Key takeaways

Gaps in the study It is a synthesis of conversations, not a study. The 18-point number has no named model, benchmark, or configuration pair behind it, so it is an anecdote of the right shape rather than a measurement. And the rules are individually unfalsifiable as stated.

Industrial implication Rules 1 and 2 are the practitioner statement of the mechanism this wiki considers the sharpest thing known about harnesses: the gains come from removing model discretion, not adding model effort. Two papers reached that independently in different subfields, and now production teams have reached it from experience. The practical consequence for a team is uncomfortable and specific: your agent roadmap should contain more items that delete the model's choices than items that improve its reasoning.


Industry Pulse

Funding, valuations, and compute deals


Global View

Power became the binding constraint in silicon today, and the research feed is already denominating in the right unit without saying so. OpenAI states it is limited by datacenter power rather than budget or floorspace, so it designed Jalapeño against tokens per second per megawatt, which reduces to tokens per joule; Nvidia says the same thing from the other side of the transaction ("the data center is power limited today," Hot Chips 2026), and this wiki's compute-economics page recorded the market face of it on 08-13 when Nebius cleared Blackwell capacity 15% above its previous record. What is new is that today's two best efficiency results are quoted in physical units too: DiffusionOPSD cuts training GPU-hours 40-63%, and QAH halves parameters and quarters precision while raising accuracy. Both dodge the unit problem the wiki flagged on 08-14, when Anthropic's Tibo Sottiaux put OpenAI's tokenizer at roughly 30% more efficient per unit of text, meaning two vendors quoting identical dollars per million tokens are not quoting the same price. The gap is that no efficiency paper in this wiki prices its saving in joules, which is now the unit the buyers of that saving actually optimize.

Five research results, one practitioner survey and four companies converged on the harness today, and the convergence finally cut the artifact into a portable half and a non-portable half. The research half is dense: Recuris composes verified state, memory routing and self-optimization end to end and lifts Claude Opus 5 to 87.9% on tau-bench with weights frozen, while AutoSaddler's ablation shows unconstrained rewriting hurts and trajectory-specific repair fails to transfer, joining DarwinX's 08-14 preserve-and-extend contract and Ken Huang's measured-bounded-reversible rule as the fifth independent arrival at the same admission constraint. The industry half explains why nobody can just buy this: Ramp's Inspect raises 75% of the company's merged PRs and passed a million sessions, and its whole advantage over Claude Code is verification against internal systems (telemetry reads, feature-flag queries, screenshot checks) that a vendor cannot see, while the parts research has shown to travel freely are context policy and control logic, as when Meta-Harness's discovered harness added 4.7 points across five held-out frontier models zero-shot. Harness structure is portable, harness evidence is not, which predicts the market shape and explains why Block, Stripe and Shopify each built their own. The unresolved tension is a measurement one and it is now embarrassing: Microsoft published Thinkingbox on 08-25 showing the strongest model collapsing from 65.36% pass@1 to 25.25% pass^20 on stateful workflows, Lorica's rule 4 independently tells teams to measure recovery separately from first-attempt accuracy, and the Microsoft-led harness paper published the very next day in single-attempt scores.

Today's three distillation results say the same thing in three subfields, and the open-weight models they make cheap are simultaneously being consolidated by the market. OPDVR states that a purely distributional objective bounds a student at its teacher and breaks the bound with a verifier; QAH finds that after structural compression the only available teacher is a degraded checkpoint that silently caps the student, and fixes it by teaching from the original model; OPRD had already found on 06-05 that output-space distillation plateaus below the teacher on AIME and AIMO. Three mechanisms, one diagnosis: the binding constraint in distillation is the supervisor, not the student. The industry counterpart is that the open-weight ecosystem these techniques exist to serve is being priced and bought right now. Jalapeño's entire published benchmark suite is open weights (DeepSeek R1, Kimi K2.5, GPT-OSS), so open models are now the hardware industry's standard test load; DeepSeek is raising 50 billion yuan at a 500 billion yuan valuation on $70.7 million of revenue and a 715 million yuan loss; and Hugging Face, the distribution layer for all of it, is nearing a sale at $150 million annualized. Research is making small open models cheaper to produce at exactly the moment the venue for publishing them changes owners, and nobody has written down what an acquired Hugging Face does to the open-weight release norm that every compression paper in this wiki assumes.


Looking Ahead