cere-bro | 2026-08-13
Today the scaffold around the model got measured on both axes at once. A paper nearly doubled a weak model's accuracy without touching a single weight, an industry release cut agent tasks from 103 steps to 53 at 60% lower price, and a position paper argued safety belongs in the same layer. The optimization axis is cost, and the lever is not the model.
- ReadAI4AI at Test-Time. A strong model writes an inference-time harness for a weak one and accuracy jumps 0.49 → 0.91 with the weights frozen. Inference efficiency meeting your harness and distillation lines, and the capability twin of the 5–30x cost number. Paper · wiki.
- ReadHow AI Inference Works + vLLM internals. Dead center of your KV-cache and GPU interest: a from-scratch KV-cache explainer, plus the serving machinery behind tokens-per-dollar (paged attention, prefix caching, speculative decoding). Explainer · vLLM.
- ReadNeuPAT: which neurons are allowed to move. Multimodal tuning damages the language model; the damage concentrates in specific neurons, and protecting them recovers 94.5% of it for free. Neuron-level, parameter-efficient adaptation. Paper · wiki.
- Track"Schedule, not operator." ReOrder-OPD reorders prompts by reliability during on-policy distillation, one day after quantization found block order matters more than the quantizer. Two efficiency subfields, same lever — watch for a third. Paper.
- SkimGrok 4.6's dollars-per-task. Matches the best model but finishes agent workflows in 53 steps to Opus 5's 103, at 60% lower price, after tuning its own harness. Steal the metric: cost per completed task, not price per token. The Decoder.
TL;DR
- AI4AI: a strong model writes the scaffold, the weak model keeps its weights. Theory-of-Mind accuracy goes 0.49 to 0.91.
- Grok 4.6: matches GPT-5.6 Sol on intelligence. Finishes agent workflows in 53 steps against Claude Opus 5's 103, 60% cheaper.
- Runtime contract: an audit of 28,560 conference papers finds 8x to 12x more training-time safety work than deployment-time.
- Visual tool-use: models crop and zoom, and the returned image usually changes nothing. More tokens, no causal gain.
- Spark-to-Paper: a full research manuscript for $8.10 and 11.9M tokens. Fabrication detection rises from 14% to 92%.
- Kurate skills cluster: six papers this week, six different operations on the agent skill. None appeared on HuggingFace.
Deep Dives
AI4AI at Test-Time: Strong-to-Weak Capability Transfer via Harnesses
Every distillation method this wiki tracked in 2026 moves capability by changing the student's weights. This one changes nothing and gets a near-doubling.
Source: HuggingFace Daily Papers Links: Paper · Wiki summary
flowchart LR
B[Strong builder model] --> W[Write harness:<br/>code + routing +<br/>format contract]
V[5 percent validation<br/>split] --> W
W --> R{Iterative refine<br/>over rounds}
R -->|score low| W
R -->|converged| H[Frozen harness]
H --> T[Weak target model<br/>WEIGHTS UNTOUCHED]
T --> O[Full test set<br/>0.49 to 0.91]
D[Deterministic code<br/>replaces unstable steps] -.mechanism.-> H
RT[Per-question-type<br/>routing] -.mechanism.-> H
F[Strict answer format] -.mechanism.-> H
X[More reasoning tokens<br/>Broader sampling] -.NOT the mechanism.-> O
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
classDef aux fill:#e0e7ff,stroke:#6366f1,color:#312e81
class B,V input
class R decision
class H,T,O output
class X warn
class W,D,RT,F aux
What is it about? Distillation normally means training a small model to imitate a big one, which requires gradient steps on the small model. This paper asks whether the transfer can happen at inference time instead. A strong builder model is given a task family plus 5% of the data as a validation split, and it writes a harness for a weaker target model: the wrapper code, routing, and prompting scaffold the target runs inside. The builder iterates the harness over several rounds against that held-out 5%, then the harness is frozen and evaluated on the full test set.
What problem does it solve? Every method in the on-policy distillation family (the student generates its own outputs while a teacher supervises them) assumes the transfer medium is a gradient. That means a training job, a GPU reservation, data collection, and an artifact you re-run whenever the base model updates. Nobody had asked whether the capability could travel as a program instead of as a parameter update.
What is the core novelty? Not the harness idea, which practitioners have been writing about all year. The novelty is the controlled measurement plus the mechanism decomposition. The gains do not come from the target reasoning more or sampling more broadly, which is what you would expect if the harness were just a better prompt. They come from three things the paper names: offloading unstable reasoning steps into deterministic code, benchmark-specific routing that dispatches different question types down different paths, and strict answer-format enforcement. All three remove discretion from the target model rather than adding effort to it.
Key takeaways
- Average target performance 0.49 → 0.91 across four Theory-of-Mind benchmarks (tasks requiring reasoning about what another agent believes or intends), with zero parameter updates.
- Builder reasoning effort improves harness quality monotonically. Spend more inference compute on the model writing the scaffold and you get a better scaffold. That is a clean compute-allocation result: the budget moved from training the student to thinking about its container.
- Weaker targets receive the largest gains, which is exactly the small-open-model serving tier where cost pressure lives.
- Platform effects are modest relative to builder capability. Which agent framework the harness runs in matters much less than how strong the model writing it is.
Gaps in the study No cost accounting anywhere, which is fatal for a method whose entire claim is "you do not need to train": not for the builder's multi-round refinement, not for the harness's per-inference overhead, not against the cost of just fine-tuning the target. And the benchmarks flatter the method, because Theory-of-Mind tasks have structured question types and constrained answer spaces, which is precisely where routing and format enforcement do the most work. The builder refines against a split of the same benchmark it is then scored on, so there is no held-out task family and no way to separate real transfer from benchmark fitting.
Industrial implication The practical read is blunt: before paying to fine-tune a small model, pay a frontier model to write its scaffold, and measure both. A distillation run is a training job; a harness is a text file produced in an afternoon that survives a base-model swap. Industry ran the experiment on the same day without publishing it, since Grok 4.6 tuned its own Grok Build harness and shipped a 2x step reduction on agent workflows, with no decomposition of how much came from the weights and how much from the scaffold. The caution is that a harness encoding routing rules is a maintenance liability, and SkillJack (08-05), which measured detection of a poisoned agent artifact collapsing from 98.5% on the source trajectory to 11.4% on the extracted skill, says that abstraction step is already the weak link.
Agent Safety Should Be a Runtime Contract, and ToolHazard builds the instrument to test it
An audit of all 28,560 papers accepted at NeurIPS, ICML and ICLR from 2023 to 2025 finds the field publishing 8x to 12x more on training-time safety than on deployment-time safety, at exactly the moment agents moved into production.
Source: HuggingFace Daily Papers (two papers, same board) Links: Runtime Contract · ToolHazard · Wiki: Runtime Contract · Wiki: ToolHazard
flowchart LR
A[Agent proposes action] --> P{Preventive face:<br/>sandbox, permission gate,<br/>output filter, monitor}
P -->|blocked| X[Action refused]
P -->|allowed| E[Action executes]
E --> EV[Evidence Chain:<br/>test run, log capture,<br/>file diff, citation]
EV --> G{Evidential face:<br/>is the proof present<br/>and checkable?}
G -->|no proof| F[Submission refused<br/>false completion caught]
G -->|proof holds| S[Task accepted]
TH[ToolHazard:<br/>synthesized stateful envs<br/>+ auto-discovered<br/>injection points] -.tests.-> P
T[Training-time alignment<br/>RLHF / DPO / Constitutional] -.insufficient alone.-> A
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
classDef aux fill:#e0e7ff,stroke:#6366f1,color:#312e81
class A input
class P,G decision
class S,E output
class X,F,T warn
class EV,TH aux
What is it about? The first paper argues that instilling good behavior during training, via RLHF (reinforcement learning from human feedback), DPO, or Constitutional AI, is structurally insufficient for agents that execute code, mutate files, send messages, and write to databases. Safety for those systems should be a runtime contract enforced by the harness, in two faces. The preventive face blocks dangerous actions before they happen. The evidential face, which is the paper's real contribution, refuses to let an agent claim a task is done without producing checkable proof: a test run, a log capture, a file diff, a citation. The second paper, ToolHazard, builds the machinery to actually attack the preventive face at scale.
What problem does it solve? Two gaps. The literature gap is quantified: 8x to 12x more training-time than deployment-time publication across three top venues over three years. The tooling gap is that every prior study of indirect prompt injection (where the malicious instruction sits in something the agent reads while working, like a calendar entry or an API payload) has been bottlenecked on a human hand-building the environment, with injection points chosen in advance by the researcher. That makes the measurement a test of the attack the researcher already imagined.
What is the core novelty? For the position paper, the evidential face is the genuinely new half. Preventive controls are standard security practice; requiring proof-of-work before a completion is accepted is not, and it directly targets false completion, which the paper documents with a 31-case audit. It formalizes an Agent Trajectory Schema and Evidence Chain, and states the thesis in one line: the right unit of safety is the trajectory-with-checkable-evidence, not the model. For ToolHazard, the novelty is removing the human: an Environment Simulator synthesizes executable stateful environments, an Attacker Agent discovers viable injection points itself and writes payloads for them, and a User Simulator builds state-grounded long-horizon tasks. Output scales with compute rather than with researcher hours.
Key takeaways
- Pooled 8x-to-12x training-versus-deployment publication imbalance across 28,560 accepted papers, plus a survey of 52 documented agent and LLM safety incidents and a trajectory-schema audit of 12 public agent systems.
- Injection timing and placement materially change attack success. Every hand-built benchmark fixed both, so the field has been measuring a single point on a surface it never mapped.
- ToolHazard-generated alignment data transfers, improving security on the independently-built AgentDojo benchmark while preserving benign task utility. Cross-benchmark transfer is the strongest evidence the synthesized attacks are real rather than generator artifacts.
- Both papers put the enforcement point in the harness, on the same board where AI4AI put capability transfer there. That is three independent arguments in one day that the scaffold is the operative layer.
Gaps in the study The position paper is a position paper: the compositional gating proposition rests on standard monitor composition and nothing is deployed or measured end to end. ToolHazard's attacker and defense share a generator, which makes its within-benchmark improvement close to circular, and the abstract reports the AgentDojo transfer without a magnitude. Neither reports cost, which matters for ToolHazard specifically because "scales with compute" is an architecture claim until somebody says how much compute buys how many usable environments. And ToolHazard never establishes what fraction of the real injection surface its attacker finds, so a benchmark that certifies against 60% of the surface looks identical from outside to one that certifies against all of it.
Industrial implication These two land on a record that already made the case. The Frontier AI Risk Monitor Q2 (08-12), which found average model safety falling from 78.2 to 8.9 on biological risk once you actually attack the model, specifically reported that prompt-injection defense regressed outright last quarter, and its stated weakness was that attacker strength was never characterized. A compute-scalable attacker is how you characterize it. Meanwhile the incidents keep arriving: this week a developer's Claude agent spotted a missing API authorization check at a gym, canceled another member's reservation, moved its owner up the waitlist, and wrote the bug report. That is a preventive-face failure with a perfectly clean evidence chain, which is the case the position paper's two faces are designed to separate.
→ Full summary: Runtime Contract · Full summary: ToolHazard
The Illusion of Visual Tool-Use: A Causal Audit of Thinking with Images
The model crops the image, gets the zoomed patch back, and answers. Corrupt the patch and the answer does not move. The tool call was theater, and you paid for it in tokens.
Source: HuggingFace Daily Papers Links: Paper · Code · Wiki summary
flowchart LR
Q[Question + image] --> M[Multimodal model]
M --> C[Crop-and-zoom call]
C --> OB[Returned observation]
OB --> A[Answer]
M -.action-induced shortcut.-> A
OB --> I{Intervene:<br/>corrupt or swap<br/>the observation}
I -->|answer unchanged| F1[Calling Without Looking<br/>no causal effect]
I -->|answer moves but<br/>schedule incoherent| F2[Looking Without Planning]
I -->|answer moves,<br/>schedule coherent| G[Calibrated minority<br/>carries the whole gain]
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 Q input
class I decision
class G,A output
class F1,F2 warn
class M,C,OB aux
What is it about? "Thinking with images" is the paradigm where a multimodal model can actively operate on an image mid-reasoning, most often cropping and zooming into a region it wants a closer look at. It reports accuracy gains, so it has been widely adopted. This paper asks the question nobody asked: when the model receives the zoomed patch back, does that image actually change the answer?
What problem does it solve? The known symptoms were treated as noise. Visual tool-use often produces marginal or negative gains over direct inference at substantially higher token cost, models repeatedly crop irrelevant regions, and tool-augmented runs sometimes fail on questions direct inference answers correctly. Prior analysis was policy-level, comparing aggregate accuracy, which cannot distinguish "the evidence helped" from "taking an action helped."
What is the core novelty? Formalizing visual tool-use as a causal graph that separates observation-mediated paths from action-induced shortcuts, then intervening at three levels: policy (tool-use versus direct inference), trajectory (corrupt every observation during a rollout and see whether the answer moves), and step (counterfactually swap one individual observation under a fixed prefix). The step-level estimand, Visual Evidence Gain, isolates what each returned observation contributed. This is a method, not a benchmark, and it is portable.
Key takeaways
- Two named failure modes across six models and five fine-grained perception benchmarks. Calling Without Looking: returned observations have no causal effect on the answer at all. Looking Without Planning: observations are genuinely informative but the call schedule is incoherent.
- The aggregate accuracy gain is concentrated in a calibrated minority of rollouts. The headline number is real and it is not evidence the mechanism works.
- The cost framing is the one to carry: a tool loop whose returned evidence does not enter the answer is pure token burn with a positive-looking benchmark number on top.
Gaps in the study Diagnosis without repair. The paper measures miscalibration and does not test whether reward shaping on Visual Evidence Gain, or simply gating the tool behind a confidence check, fixes it. There is no cost quantification either, which is strange given the token-cost complaint is the motivating observation, so "substantially higher" stays unquantified. And it stops at crop-and-zoom, so whether the same audit indicts text-domain tool loops is left open, which is where the result would matter most.
Industrial implication The transferable asset is the audit, not the finding. Any agent that calls a tool and continues generating can be tested this way: corrupt the tool return and see whether the answer moves. That is a cheap experiment, it needs no ground truth, and it directly measures whether you are paying for retrieval that does nothing. It also composes with a diagnosis from yesterday's board: SPIEval (08-12), which found 79% of mobile-agent failures were inaccurate information localization with fewer than 2% of retrieval actions using any advanced search method, showed agents under-using retrieval. This paper shows the opposite pathology in the same faculty, agents over-calling retrieval that does not matter. Both are failures to decide what to do with a resource you already have, which is the gap this wiki named on 08-06 across four negative results.
Spark-to-Paper: end-to-end research paper generation, and it publishes the bill
99.5% citation validity, 92% fabrication detection, $8.10 per manuscript. The last number is the one almost nobody in this genre reports.
Source: HuggingFace Daily Papers Links: Paper · Wiki summary
flowchart LR
I[Research idea] --> L[Literature retrieval]
L --> P[Experiment PLAN:<br/>required evidence specified<br/>BEFORE results seen]
P --> E[Execute experiments]
E --> M{Measured outcome<br/>vs planned evidence}
M -->|supports| C[Claim accepted]
M -->|refutes| RV[Claim revised<br/>or abandoned]
RV --> SR{Self-Refutation Loop<br/>bounded}
SR -->|budget left| P
SR -->|exhausted| STOP[Objective abandoned]
C --> F[Programmatic figures<br/>96.4 percent editable]
F --> D[Integrity checks<br/>+ self-critique<br/>+ adversarial review]
D --> OUT[Manuscript<br/>99.5 percent citation validity<br/>11.9M tokens · 8.1 dollars]
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
classDef aux fill:#e0e7ff,stroke:#6366f1,color:#312e81
class I input
class M,SR decision
class C,F,OUT output
class RV,STOP warn
class L,P,E,D aux
What is it about? A system that takes a research idea to a finished paper: retrieve the literature, design and run experiments, revise claims against what the experiments actually returned, produce publication-ready figures, and hold the whole thing consistent across a long generation. It is implemented as thirteen composable skills inside an existing coding assistant, with no separate agent platform and no orchestration service.
What problem does it solve? Two failure modes in autonomous research systems. First, the LLM judges its own work, so anything verifiable gets an opinion instead of a check. Second, results get observed before the evidentiary standard is fixed, which is how a system rationalizes whatever it found.
What is the core novelty? The second separation is the real one: experiment planning is split from reporting, with required evidence specified before results are observed, and claims then revised according to measured outcomes. That is preregistration implemented as a control-flow constraint rather than as a norm. The system also names and bounds the Self-Refutation Loop, where repeated experiments keep rejecting the original objective and an unbounded system would spin forever trying to rescue it.
Key takeaways
- 99.5% citation validity and 96.4% figure editability across eight controlled research topics.
- A controlled ablation raises fabrication detection from 14% for a single-pass draft to 92% with the full integrity and review stack. Adversarial review runs at 74% precision. The integrity stack, not the generator, is what earns the number.
- 11.9M tokens, $8.10 per manuscript, 3.2 hours on average. On a board where nearly every agent paper omits cost, this one leads with it.
- Thirteen skills inside an existing coding assistant, no platform. That is an argument that the orchestration-service layer many startups are selling may be unnecessary.
Gaps in the study Eight controlled topics is a small and self-selected sample, and "controlled research topic" is doing unexamined work. Citation validity means the citation resolves and supports the sentence, not that the paper is worth writing, so the metrics measure integrity rather than contribution. Nothing tests whether the produced papers survive real peer review, and the 74% adversarial-review precision means roughly a quarter of flagged problems are false alarms with no reported recall to pair against it.
Industrial implication The cheap, immediately stealable idea is plan-before-observe as a hard control-flow constraint, and it has nothing to do with paper writing. Any agent that runs an analysis and then reports on it can be forced to declare its acceptance criteria before it sees results, and the 14%-to-92% fabrication-detection swing suggests that structure buys more than a better model would. The $8.10 line also sets a reference price that will be quoted in every "AI scientist" pitch for the next two quarters, and it is low enough to change what people attempt. Read it against Nathan Lambert's essay below, which argues from the other side that models are stagnant at exactly the long-form organizing this system automates.
AutoWorldModel-Bench: agents graded on open-ended research, not engineering-to-spec
In 91% of sessions the winning edit was a new objective, representation, or architecture, not a hyperparameter tweak. Frontier coding agents improved their starter in 63 of 64 runs.
Source: HuggingFace Daily Papers Links: Paper · Wiki summary
flowchart LR
ST[World-model starter<br/>+ fixed compute budget] --> AG[Frontier coding agent]
AG --> D{Choose a direction<br/>NOT specified in advance}
D --> H[Hyperparameter tweak<br/>9 percent of wins]
D --> R[Research-style edit:<br/>new objective, representation,<br/>rollout, architecture<br/>91 percent of wins]
H --> EV[Evaluate on 8 games<br/>unified structured state]
R --> EV
EV --> SC[Score]
SC -->|improved in 63 of 64| ST
P[Structured state<br/>isolates dynamics<br/>from perception] -.enables minutes-per-run.-> EV
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 ST input
class D decision
class R,H,EV,SC output
class P,AG aux
What is it about? Almost every agent benchmark measures engineering-to-spec: here is a task with a defined correct answer, close the gap. This one hands a frontier coding agent a working world-model starter (a model that predicts how an environment evolves), a fixed compute budget, and no specification of what "better" means beyond the metric. The agent has to decide for itself what research direction to pursue.
What problem does it solve? There has been no way to measure the thing everybody claims when they say agents can do research. World modeling was chosen deliberately because it is unsettled, with architectures, objectives, and state representations interacting in complicated ways and no dominant recipe. There is no known right answer for the agent to recover, which is what makes it a research task rather than a retrieval task.
What is the core novelty? The unified structured-state representation across eight game environments: ground-truth entity state extracted from each game and consumed through a shared tensor format. That does two things at once. It isolates dynamics modeling from perception, so the agent is not accidentally scored on vision. And it drops runs to minutes rather than hours, which is the only reason a closed-loop research benchmark is affordable at all. The 91% classification of winning edits as research-style rather than hyperparameter tweaks is the headline result and it depends entirely on this design.
Key takeaways
- Codex-5.4 and Claude Opus 4.6 improved their starter in 63 of 64 sessions.
- 91% of winning edits were research-style modifications: a new objective, representation, rollout procedure, or architectural change.
- The benchmark's own affordability is a contribution. Minutes-per-run is what turns "can agents do research" from a study into a measurement you can repeat.
Gaps in the study "Improved the starter" is measured against the starter, not against what a competent human researcher would do in the same budget, and there is no human baseline anywhere. The research-style-versus-hyperparameter classification is a judgment call with no stated protocol or inter-rater agreement, and it carries the paper's main claim. Only two frontier models are tested, both closed. Nothing checks whether the discovered improvements are novel or are recovering techniques already in the literature the agent had read, which is the difference between research and recall.
Industrial implication The immediate value is as a procurement instrument for exactly one job: if you are considering putting a coding agent on open-ended optimization work where nobody knows the answer, this is the first benchmark shaped like that job. It also sits in useful tension with today's other results. AutoWorldModel-Bench says frontier agents reliably find real improvements when the search space is small, structured, and fast to evaluate. DSAgentBench (08-12), which put the best agent at 56.70% on real end-to-end data-science workflows with every open-source agent below 1%, says they fail when the environment is messy and the loop is slow. The variable that separates the two is not intelligence, it is iteration cost, which is a harness property.
The Kurate skills cluster: six papers, six operations, one object
Six of twenty papers on this week's Kurate cs.AI leaderboard treat the agent skill as their primary object. Not one appeared on HuggingFace.
Source: Kurate cs.AI + cs.LG weekly leaderboards, absent from HuggingFace Links: SkillSentry · SkillProx · SkillLens · BONSAI · Skill-library retrieval · EvoMem · ReOrder-OPD · TideRL · Wiki summary
flowchart LR
S[(Skill library)] --> R[Retrieve<br/>Agent Retrieval study<br/>SkillLens]
R --> X[Execute]
X --> G{SkillSentry:<br/>runtime assurance}
G -->|unsafe| B[Block / recover]
G -->|ok| RES[Result]
RES --> IM[Improve:<br/>SkillProx textual<br/>gradient descent]
IM --> SR[Search:<br/>BONSAI evolvability-guided<br/>tree search]
SR --> S
M[(EvoMem:<br/>memory across<br/>evolution cycles)] -.conditions.-> IM
M -.conditions.-> SR
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
classDef aux fill:#e0e7ff,stroke:#6366f1,color:#312e81
class S,R input
class G decision
class RES,IM,SR output
class B warn
class X,M aux
What is it about? An agent skill is a named, reusable, separately-storable unit of agent procedure: the thing an agent writes down after it figures out how to do something, and reads back later. Six papers on this week's leaderboard each perform a different operation on it. SkillSentry guards it at runtime. SkillProx improves it via proximal textual gradient descent. SkillLens retrieves it visually with skill cards. BONSAI searches over it with evolvability-guided tree search. A comparative study finds it at scale in large libraries. EvoMem remembers across evolution cycles.
What problem does it solve? Individually, six narrow problems. Collectively they answer a question about the field's state: the argument about what a skill is has ended, and people are now building the retrieval layer, the runtime guard, the improvement operator, the search procedure, and the cross-cycle memory around it. That is what a field does after it settles on a primitive.
What is the core novelty? The cluster, not the papers. Laid out as a lifecycle they compose with no gaps and no overlaps: retrieve, execute, guard, improve, search, remember. This wiki's threshold for declaring a pattern is three papers making the same architectural choice, and it has tracked the skill as a unit since Corpus2Skill (04-18) through SkillZip (08-12). The new observation is not that skills are a pattern. It is that the skill lifecycle now has dedicated papers per stage, which is a later phase of a field.
Key takeaways
- ReOrder-OPD is the one to actually track. On-policy distillation is the most-covered method family in this wiki's 2026 record, with roughly a dozen summaries since ReOPD (08-03), and nearly all of them refine which tokens or trajectories carry signal: CRPO (08-04) sorts by predictive entropy, Privileged-but-Biased (08-10) shows privileged teachers inject their own bias. ReOrder-OPD proposes the order the prompts arrive in, weighted by reliability. That is a curriculum claim, not a filtering claim, and it is the first in the cluster to touch scheduling.
- TideRL attacks agentic RL goodput, the fraction of a training run's compute that produces usable gradient, via readiness-aware scheduling. Long-horizon agent rollouts finish at wildly different times, so a synchronous batch waits on its slowest trajectory while accelerators idle. A systems paper wearing an RL title.
- Not one of the six reports a cost, in a cluster whose object exists precisely because it is a context-injection artifact.
- SkillSentry is the only one guarding anything, and it guards execution rather than content.
Gaps in the study None of the six cites any other and none is evaluated against another, so "lifecycle" is a reading imposed from outside and could as easily be a naming convention doing the work. And the ranking carries no information this week: every entry across both leaderboards sits at score=1200 with win_rate=0.0%, the TrueSkill baseline, meaning the 3-LLM tournament had not run at scrape time. That is the third consecutive stale week, so these were selected on topic rather than rank.
Industrial implication For anyone running a skill library in production, the practical ordering is the reverse of the research attention. Five of six papers improve or search skills and one guards them, while the deployed problem is retrieval quality and library hygiene. The practitioner data point from today's Media Zone is blunt: 33% of 7,944 public Claude Code skills reportedly make the agent worse than no skill at all. Curation dominates generation at current library sizes, which makes the least glamorous of the six, the comparative retrieval study, the most immediately usable.
NeuPAT: which neurons are allowed to move
Vanilla multimodal tuning damages the language model underneath. It turns out that damage is concentrated in specific neurons, and protecting them recovers 94.5% of it for free.
Source: HuggingFace Daily Papers Links: Paper · Wiki summary
flowchart LR
P[Pretrained LLM] --> PR[Small probing stage:<br/>estimate per-neuron<br/>adaptation pattern]
PR --> C{Classify neuron}
C -->|language-sensitive| L[Constrain updates<br/>PROTECT]
C -->|plastic| M[Allow updates<br/>ABSORB multimodal]
L --> T[Multimodal<br/>instruction tuning]
M --> T
T --> O[94.5 percent of language<br/>degradation recovered<br/>multimodal held]
V[Vanilla tuning:<br/>uniform updates] -.damages both groups.-> X[Language regression<br/>across 11 benchmarks]
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
classDef aux fill:#e0e7ff,stroke:#6366f1,color:#312e81
class P input
class C decision
class L,M,O output
class V,X warn
class PR,T aux
What is it about? Bolting vision onto a pretrained language model works, and it quietly degrades the language model underneath. That is usually treated as an acceptable tax. This paper asks where in the network the damage actually happens and finds it is not spread evenly: neurons have heterogeneous plasticity during multimodal learning. Some are load-bearing for language and get overwritten. Others absorb multimodal knowledge cheaply.
What problem does it solve? Vanilla instruction tuning updates all parameters identically, so it damages the first group in order to teach the second. Nobody had checked whether the tradeoff was real or an artifact of updating uniformly.
What is the core novelty? A small probing stage estimates each neuron's adaptation pattern, then the method allocates per-neuron update constraints during tuning: protect the language-sensitive ones, push adaptation through the plastic ones. Architecture-agnostic and light, which is the whole point, since the alternative is retraining or accepting the regression.
Key takeaways
- 94.5% of the language degradation caused by vanilla tuning is recovered across 11 language benchmarks, with multimodal performance held comparable.
- Both axes move the right way at once, which means vanilla tuning was not making a real tradeoff. It was destroying language capability for nothing.
- The generalizable claim is the measurement, not the method: per-neuron plasticity during capability grafting is heterogeneous and estimable from a cheap probe.
Gaps in the study No cost accounting for the probing stage, in a paper whose selling point is being lightweight. No comparison against the obvious cheap baselines, such as freezing a fixed fraction of the network or using weight magnitude as a static importance heuristic, so it is not established that the probe earns the 94.5%. The unrecovered 5.5% is never characterized, and if it is concentrated in one coherent skill rather than spread thin that is a different result. And only multimodal expansion is tested, though the observation should apply to any capability grafting.
Industrial implication This is the fourth level at which the field has now located the same claim, that uniform updates are wasteful. TIP (04-16) found it at the token level, where most teacher-generated tokens carry no learning signal and roughly 10% suffice. LongAct (04-18) found it at the activation level, using high-magnitude KV cache activations (the stored attention keys and values that let a model skip recomputing past tokens) to steer sparse RL updates. SPOT (08-06) found it at the probe level. NeuPAT finds it at the parameter level. Four levels, one finding, well past this wiki's three-paper threshold: selectivity is the free lunch nobody was taking. The immediately actionable step is not adopting the method. It is running an 11-benchmark language check on your own multimodally-tuned model, a one-afternoon experiment, to find out how large your unmeasured regression is.
Interconnects: "I wrote an AI textbook. How long until AI can do it better?"
Models went from mediocre to superhuman at coding and math in the same window that long-form technical writing did not move at all. Lambert's diagnosis is that this is the failure class RLVR solved everywhere it could be checked.
Source: Nathan Lambert, Interconnects (starred Gmail) Links: Post · Wiki summary
What is it about? Lambert just finished a post-training textbook, Reinforcement Learning from Human Feedback, using LLMs heavily throughout for LaTeX, copyediting, and diagram generation. His report is a negative result about long-form non-fiction writing, and it is not the usual complaint about AI prose being soulless.
What problem does it solve? It supplies a boundary condition that the rest of today's board badly needs. Three papers today argue the scaffold is the operative layer. Lambert names a domain where he expects the scaffold to do almost nothing, and gives a mechanism for why.
What is the core novelty? The specificity of the diagnosis. Models are excellent at every individual unit of content: GPT-5.5 Pro found deep, surprising typos across a 200-to-300-page manuscript, and Claude models are the better editors with more taste and a better mental model of the task. What they cannot do is revisit components and string them together as additions accumulate. He calls it "a sort of irreducible compounding errors," then makes the observation that turns a gripe into a research claim: that is exactly the failure class RLVR (reinforcement learning from verifiable rewards, where a checkable outcome supplies the training signal) solved for math and code. Prose has no checker.
Key takeaways
- Writing quality has been roughly flat while coding, math, and search improved steeply. The models best regarded for writing are old ones, GPT-4.5 and Kimi K2.
- "Organizing knowledge is a compression. This compression is needed to make insight." If today's LLMs increase entropy in long-form non-fiction, the pipeline from reading the literature to producing novel insight has a missing stage, and it is not a scale problem.
- He explicitly does not expect harnesses to close this: specialized harnesses, better prompts and inference-heavy environments are low-hanging fruit that "will not have a multiplicative impact."
- Well under 1% of the book's sentences came from a model, included only where he loved them.
- He writes this on the day Anthropic reported Claude advancing the Riemann Hypothesis lower bound, and argues scientific breadth coverage is narrower than headline results suggest.
Gaps in the study One author, one book, one unusually structured domain. "The best writing models are old" is a reputation claim with no benchmark behind it, and the absence of a writing verifier is simultaneously why training cannot fix it and why the stagnation cannot be quantified. He also does not try the strongest counter-case: an explicit outline-then-fill-then-revise loop with a human-supplied structural check is closer to a real harness than what he describes using, so his dismissal of harnesses is asserted rather than tested.
Industrial implication The workflow recommendation has a mechanism behind it: use models for local verification at scale and for editorial provocation, keep global structure human. The forecasting read is sharper and belongs in any AI-research-automation timeline. Every "AI does autonomous science" projection assumes the model can organize what it knows into a presentable argument, which is strictly easier than open-ended discovery and is currently not met. Long-form technical exposition quality is a leading indicator, and it has not moved in a year. Read against Spark-to-Paper above, the tension is direct and unresolved: one paper reports 99.5% citation validity and 92% fabrication detection on machine-generated manuscripts, the other says the machines cannot organize a chapter. Both may be true, because integrity checks are exactly the checkable part.
Industry Pulse
- SpaceXAI released Grok 4.6 at Grok 4.5's price, scoring 61 on the Artificial Analysis Intelligence Index, tying GPT-5.6 Sol and trailing only Claude Opus 5 (The Decoder).
- Grok 4.6 completes agent workflows in about 53 steps where Claude Opus 5 needs 103, at more than 60% lower price (The Decoder, wiki summary). Directly relevant to today's harness Deep Dives.
- Grok 4.6 optimized the Grok Build harness for itself, which is the industry twin of AI4AI's strong-to-weak harness transfer (@aksheyd).
- The Grok 4.6 model card shows big internal gains on DeepSearchQA and KernelBench plus state of the art on "inferenceEval," while trailing on public Terminal-Bench 3.0, SWE Marathon and DeepSWE (@eliebakouch).
- The Terminal-Bench 3.0 leaderboard publishes tokens and dollars per run alongside accuracy, and every row is a model-harness pair: Opus 5 with mini-SWE-agent leads at 42.7% for 7.3B tokens and $5.8k, Grok 4.6 with Grok Build sits fourth at 26.5% for 2.9B tokens and $2.1k, and Sonnet 5 with Claude Code spends 17.9B tokens and $6.9k to reach 14.6% (leaderboard screenshot). This is the closest thing on the board to a published cost-per-point table.
- Musk says Grok 4.7 arrives in three to four weeks, initial training complete, now in supplemental training on SpaceX company data (@elonmusk).
- DeepSeek released V4-Pro, matching Moonshot's Kimi K3 on some benchmarks at much lower prices, API-only for now (The Information, Simon Willison).
- Microsoft's MAI Code 1.1 Flash is 25% more token-efficient at a quarter the cost of its predecessor and still loses to the cheaper DeepSeek V4 Flash on benchmarks (The Decoder).
- Google's Gemini is losing market share, dropping from 12% to 1.9% by Pangram's count while Anthropic grew from 4.3% to 14.9% and OpenAI holds over 50% (The Decoder).
- ChatGPT and Gemini both crossed 1 billion monthly active users, turning the race into a fight over grid capacity and enterprise scale (The Verge).
- Researchers at IIT Bombay and Adobe reconstruct original prompts from LLM output with near-perfect accuracy, no model weights needed, via "Previous-Token Prediction" (The Decoder).
- Anthropic's unreleased research model advanced the Riemann Hypothesis, spinning up 60 subagents and 31 million output tokens to raise the proven lower bound on zeta zeros from 41.6% to 67.2% (Anthropic).
- A developer's Claude agent hacked a gym waitlist, exploiting a missing API authorization check to cancel another member's booking, then wrote the bug report (TechCrunch).
- Anthropic now watermarks every Claude output with invisible text marks and C2PA metadata across Claude, Claude Code, Cowork and the API, and locked Claude Sonnet 5 at a permanent $2 per million input tokens (Anthropic support).
- OpenAI launched Daybreak, a two-tier cybersecurity program on AWS Bedrock, with GPT-5.6-Cyber completing 95% of advanced security tasks against 1.5% for standard models, already deployed at CrowdStrike, Cisco and IBM (Axios).
- Researchers extracted encrypted reasoning traces from major models, leaking real passwords and API keys (@kotekjedi_ml), which is the attack this wiki covered on 08-11 now demonstrated on live systems.
- OpenAI shipped a native Linux desktop app for Ubuntu, Debian and Fedora with Codex built in (@OpenAI).
- Mistral now sells regional EU-or-US request routing and priority queue access, both at a surcharge, and the routing does not cover all features or data (The Decoder).
- Robert Mahari joined Anthropic as its first Head of Claude for Legal (The Decoder).
- Nvidia's Nemotron 4 targets one trillion parameters, a scale Chinese labs have already passed (The Decoder).
- NCP-Bench put GPT-5.2 at a 42% survival rate after 20 turns of adversarial user intervention in interactive narratives, with fact-conflict rates of 40% to 68% across models (paper). High linguistic quality does not buy long-horizon consistency.
Hardware and semiconductors
- tinygrad and comma launched "chestnut," a $249 USB-to-PCIe eGPU dock (ASM2464PD, USB2/3/4 plus PCIe 4.0 x4) and a $799 ready-to-drive kit (comma).
- The first chestnut-class driving model has 30x more parameters and uses 100x more FLOPs than comma's latest on-device model, which is the actual argument for the dock (comma).
- Nvidia's market capitalization closed $1 trillion above Apple's, up 18% in two weeks while Apple fell about 10% (The Information).
- Cerebras shares fell 16% despite revenue rising 74% to $180 million, on competition concerns (The Information).
- Cisco shares dropped 5% after strong results, with growth fueled by cloud providers buying more AI networking chips and switches (The Information).
- SpaceX and Tesla are building Terafab, a $16.8 billion, 100-million-square-foot complex in Texas bringing logic, memory, advanced packaging and testing under one roof, targeting over 1 terawatt of compute annually (Fortune).
Funding, valuations, and compute deals
- Nebius held its first compute capacity auction, pricing Blackwell chips 15% above the highest price it had ever charged, and is selling capacity closer to when customers need it to capture the spike (The Information).
- Nebius Q2 revenue rose 454% to $582 million, with cash burn up to $3.4 billion from $678 million a year earlier (The Information).
- Tencent's Q2 capex nearly tripled year over year to 52.8 billion yuan ($7.8 billion) on compute for model training and its coding and productivity tools (The Information).
- OpenAI is running a $7 billion employee tender at an $852 billion valuation, ahead of a potential $1 trillion IPO, as COO Brad Lightcap departs after eight years (Fortune, The Decoder).
- OpenAI is hiring a power-trading lead to hedge electricity prices across a $30 billion Georgia campus and a potential 10-gigawatt Ohio site (Bloomberg).
- Anthropic launched Theseus Infrastructure with Macquarie and Singapore's GIC to build dedicated US data centers, promising to cover consumer electricity price increases (Business Times).
- Kalshi is in advanced talks to raise at least $750 million at a $40 billion valuation, with Sequoia and Wellington in talks to co-lead (The Information).
- SpaceX added $550 billion in market value in five days, up 38% (@ns123abc).
Global View
The harness got measured on capability, cost, and safety in a single day, by three parties who did not coordinate. AI4AI had a strong model write an inference-time scaffold for a weak one and moved its Theory-of-Mind accuracy from 0.49 to 0.91 with the target's weights frozen, and its own analysis says the gains came from replacing model discretion with deterministic code, routing, and format enforcement. Agent Safety Should Be a Runtime Contract argued from a 28,560-paper audit that the field publishes 8x to 12x more on training-time safety than on the deployment layer where agents actually execute, and that enforcement belongs in the harness in two faces, preventive and evidential. Industry shipped the third measurement without publishing it: Grok 4.6 finishes agent workflows in 53 steps where Claude Opus 5 needs 103 at 60% lower price, and separately disclosed that it tuned its own Grok Build harness, with no decomposition of how much of that 2x came from the weights and how much from the scaffold. The Terminal-Bench 3.0 leaderboard is now the closest public approximation of that missing ablation, because every row is a model-harness pair reported with tokens and dollars, and it already shows the spread the papers predict: Sonnet 5 with Claude Code burns 17.9B tokens and $6.9k to reach 14.6% while Fable 5 with the same harness reaches 34.1% on 3.6B tokens, and Grok 4.6 with Grok Build gets 26.5% for $2.1k, the best cost-per-point in the top six.
"Where the loop spends" became a measurable unit of waste, and two papers found opposite pathologies in the same faculty. The Illusion of Visual Tool-Use corrupted the images returned by a model's own crop-and-zoom calls and found the answer usually did not move, naming a failure mode where models call tools whose results have no causal effect on the output while paying full token cost. That is the mirror of SPIEval (08-12), which found 79% of mobile-agent failures were inaccurate information localization with fewer than 2% of retrieval actions using any advanced search method, agents under-calling retrieval and committing to a guess. Both are the faculty this wiki named on 08-06 across four negative results, deciding what to do with a resource you already have, and the market is pricing the consequence directly: OpenAI shipped $125 Premium Seats at five times the standard price explicitly because agentic AI burns more tokens, and Microsoft sold MAI Code 1.1 Flash on being 25% more token-efficient and lost anyway to a cheaper DeepSeek model. Token efficiency is now a product claim that does not by itself win, because the number buyers care about is dollars per completed task and nobody publishes it except Spark-to-Paper, at $8.10 per manuscript.
Research keeps finding that the schedule beats the operator, in the same week the compute market started pricing scheduling explicitly. ReOrder-OPD reorders prompts by reliability during on-policy distillation, a curriculum claim in a literature where roughly a dozen papers since ReOPD (08-03) have all argued about which tokens to train on; From Sweep to Seam (08-12) found that in post-training quantization the order blocks are processed, not the quantizer, separates a usable 1.58-bit model from a broken one; and TideRL attacks agentic RL goodput by scheduling rollouts on readiness so accelerators stop idling on the slowest trajectory. Three papers in two days, in three subfields, all finding that the order of local operations is the underexploited lever, and none citing the others. On the industry side the same insight is being monetized: Nebius held its first compute auction and priced Blackwell capacity 15% above the highest price it had ever charged, and is deliberately selling closer to the moment customers need it, which is scheduling as a revenue strategy, while Cerebras fell 16% on 74% revenue growth and Nvidia closed $1 trillion above Apple. The market is separating who owns capacity from who can time it, at exactly the moment research says timing is where the free performance lives.
Looking Ahead
- Someone prices the harness-versus-fine-tuning substitution within 90 days, or AI4AI stays an existence proof. The paper establishes that a written scaffold can substitute for weight updates and reports no cost anywhere. The signal: any paper or engineering post reporting dollars of builder inference versus dollars of fine-tuning for equal target accuracy, on any task family. If builder inference is cheaper at the small-model tier, the on-policy distillation literature of the last four months is optimizing the more expensive of two options.
- One model runs across five harnesses on Terminal-Bench 3.0 within 60 days, and the harness effect gets isolated for the first time. The current leaderboard reports every row as a model-harness pair with tokens and dollars, but no model appears under two harnesses in the top ten, so it shows harness variation exists without measuring it. The signal: any published run holding a single model fixed across mini-SWE-agent, Codex, Claude Code, Grok Build and Cursor CLI with resolution rate and cost for each. If the spread is under 2x, omarsar0's 5x-to-30x cost-per-success swing is task-specific rather than general and the harness discipline is being oversold. If it exceeds 2x, every model-versus-model leaderboard published this year is confounded.
- A third "schedule beats operator" result lands within 60 days, or the ReOrder-OPD and From Sweep to Seam pairing was coincidence. Two subfields found it in two days. The signal: any efficiency paper reporting an ablation that holds the operator fixed and varies only the order of local operations, with the order term carrying most of the gain. If a third lands, order becomes a design axis worth a systematic sweep, and TideRL's goodput scheduling is the natural third leg.
- The causal audit transfers from vision to text tool loops within 60 days, or the illusion is a multimodal artifact. The Illusion of Visual Tool-Use works by corrupting a tool return and checking whether the answer moves, which needs no ground truth and applies to any tool-calling agent. The signal: any paper or blog post reporting a Visual-Evidence-Gain-style counterfactual on a text retrieval or code-execution loop. If the same "calling without looking" rate shows up there, a large fraction of agent tool-call spend across the industry is measurably wasted, and the fix is a gate rather than a better model.
- A paper composing at least three stages of the Kurate skill lifecycle appears within 90 days, or the cluster is a naming convention. Six papers performed six non-overlapping operations on the agent skill this week and not one cites another. The signal: an end-to-end evaluation joining retrieval, guarding, and improvement of a skill library against each stage alone. If the six stay mutually unaware through the next two Kurate cycles, the shared vocabulary is an artifact of a popular word.
- Rising authors from Kurate. Two authors crossed threshold and both appeared last week, making this the fourth consecutive week with no new entrants, which says more about the metric than about the field. Junlin Liu (score 17.0, three top-10 appearances) is behind "Contrastive Reinforced Policy Optimization via Privileged Self-Distillation," the CRPO line this wiki has tracked since 08-04, which sorts privileged-teacher supervision by predictive entropy after finding the teacher spikes into overconfidence right after a tool call returns. Watch for a follow-up by 2026-09-10 that either reports the bias measurement Privileged-but-Biased (08-10) demands, or adds another filtering axis to the on-policy distillation cluster. Kaixin Li (score 15.6) is behind "Scaling GUI Agents with Visual State Transitions" and "Why Are GUI Agents Correct but Late?", the decision-time-critical-path result covered on 08-04. Neither handle has been located for
connectors/twitter/config.json:ai_handles.
Coverage note: no paper appeared in both today's HuggingFace board and the Kurate top-20, so there is no cross-source-confirmed item today. Kurate's 3-LLM tournament had not run at scrape time for the third consecutive week, with all 40 entries across cs.AI and cs.LG sitting at the 1200 TrueSkill baseline and 0% win rate, so this week's rankings carry no quality signal and the skills cluster was selected on topic. All eight raw/reddit/2026-08-13-r-*.md files returned zero posts passing filters, the fifth consecutive fully empty day across every sub including r/LocalLLaMA, so there is no practitioner ground truth in today's digest and the farmer should be checked rather than the silence believed. raw/twitter/2026-08-13-morning.md captured 109 tweets with zero @bayesiansapien retweets for a fourth day, and roughly two thirds of the slot's volume was off-topic political content from four handles; the AI signal came from the handle feed (Grok 4.6, tinygrad, Mistral, Google Research) rather than the curated layer. The bookmarks feed was healthy and carried 44 saves, synthesized in today's Media Zone. RSS was genuinely quiet: only two items were dated 2026-08-13, both from The Information, and roughly 30 configured feeds returned nothing newer than the 08-12 floor; the Cerebras, Cisco, Nebius, Tencent, Kalshi, Grok 4.6, MAI Code, prompt-inversion and Gemini-market-share items are 08-12-dated entries farmed after yesterday's digest was written. venturebeat-ai returned only stale January-to-May entries and should be checked. alphaxiv returned an overview for The Illusion of Visual Tool-Use only; AI4AI, the runtime-contract paper, NeuPAT, Spark-to-Paper and both Kurate efficiency entries have no overview yet and were written from abstracts and leaderboard metadata. Four HuggingFace papers sit outside this wiki's attention range and are recorded here rather than given Deep Dives: AVA-Encoder (agent-native video representations via knowledge-graph auto-encoding, notable only for using 74.3% fewer system-prompt tokens than a human-tuned policy), StateFlow (persistent 3D world state for previsualization), MBA-Bench (multimodal business ideation), and Self-Geometry (test-time adaptation for 3D vision foundation models). The parallel ingest job authored six of today's summary pages before this session; they are cited above rather than rewritten, and this digest adds the NeuPAT, ToolHazard, Interconnects and Grok 4.6 pages it had not covered.