A $400K Open Image Stack, and Distillation as a Catalyst

Today's Overview

  • The Maintenance Cost of Agents Is Shifting From the Model to the Harness. As models converge, the real engineering surface moves to the code that builds prompts, manages state, and calls tools — and this paper treats that layer as a first-class object worth its own methodology.
  • An Image Stack That Owes Nothing to a Closed API, trained for $400K on 209M images, with four variants covering generation, editing, bilingual text, and fast inference — weights and code fully Apache 2.0.
  • On-Policy Distillation Doesn't Raise the Ceiling; It's a Catalyst for Exploration. It steers a student onto paths it could already reach but wasn't taking, and prompt diversity beats resampling the same problem.
  • Betting on the Non-Autoregressive Route? Read the Map First. Discrete diffusion's properties come down to how you construct the discrete state space, and this survey organizes scattered work into one framework from tokenization to generation.

Featured

01 The Model Is a Commodity; Maintenance Moves to the Harness

Anyone who has built an agent knows the scene: models, APIs, environments, and requirements keep changing, so the code wrapped around the model — building prompts, managing state, calling tools, coordinating execution — has to change with them. This paper names that layer the harness and points to the real bottleneck before you can edit it. A single "I want the system to do X" requirement usually lands scattered across tightly coupled locations organized by file and module, and you have to find all of them first.

The authors call this "behavior localization." Code search, repo indexing, and long context help you read the code but not map a behavior back to it. Their fix uses static analysis plus LLM structuring to auto-generate a Harness Handbook — a behavior-centric representation that links each behavior to its source. A progressive-disclosure mechanism (BGPD) then lets an agent drill from high-level behavior down to implementation, checking candidate locations against the current source.

On change requests for two open-source harnesses, the method improved localization accuracy and edit quality while using fewer planning tokens. The biggest gains came from the scattered, rarely-executed, cross-module cases — exactly what humans miss most. One caveat: the evaluation covers only two open-source harnesses. Production harnesses are dirtier and more coupled, so generalization needs more cases to confirm.

Key takeaways: - As models converge, an agent's differentiation and maintenance burden shifts from the model to the harness — treat it as a first-class object. - "Locate every relevant site before you edit" is an underrated bottleneck; long context and code search don't replace this step. - If you maintain an evolving agent system, the behavior-to-code mapping is worth watching, but the evidence so far comes from just two open-source projects.


02 Image Gen: A Full Image Stack for $400K, No Closed API Required

Text-to-image, instruction editing, Chinese-English text rendering, fast inference — closed systems assemble these through system-level integration. Boogu-Image packages them into an open model family (Base/Turbo/Edit/Edit-Turbo), with weights, code, and training recipe all released under Apache 2.0.

The cost math is the hook. Trained on 209M deduplicated images, the base model runs about $400K in theoretical compute — reachable for independent developers and small teams. The abstract calls itself "competitive" with and "approaching" Nano-Banana-Pro and GPT-Image-2, not clearly beating them, so quality still needs real testing. For anyone who doesn't want to be locked into a closed API, "self-hostable, modifiable, editable" is value on a different axis.

The team also published the training pipeline and a practical discussion of data quality. For anyone trying to reproduce the work, that part may be more useful than the model itself.

Key takeaways: - A unified understanding-plus-generation open model family; four variants cover generation, editing, and fast inference, all Apache 2.0 and self-hostable. - The $400K, 209M-image training cost puts reproduction within reach of small teams. - Comparisons to closed systems use "competitive," not decisive numbers — quality needs testing, but escaping API dependence is value on its own.


03 Training: On-Policy Distillation Does One Thing, Not Everything

Many people treat on-policy distillation (OPD — a student learning from a teacher on its own generated trajectories) as a universal post-training booster. This systematic breakdown gives a counterintuitive verdict: OPD doesn't raise the model's ceiling. Its real job is exploration catalyst — using dense token-level signal to steer the student onto reasoning paths it could already reach but wasn't taking.

That leads to a surprising rule of thumb: prompt diversity matters more than sampling each problem a few extra times. Spreading across problems beats digging repeatedly into one. The paper also exposes two traps. When the teacher-student gap is too large, the guidance signal misaligns with task correctness and drags exploration off course. The token-level objective invites "length arbitrage," where the model games the reward by truncating or padding instead of learning to reason.

The authors fix both with lightweight signal constraints — advantage clipping and log compression — and beat vanilla OPD and RLVR baselines across seven benchmarks. Signal quality decides the outcome. A bigger teacher isn't a better one.

Key takeaways: - OPD only helps a student walk paths within its existing ability; don't expect it to raise the ceiling — missing capability needs other methods. - When tuning OPD, expand prompt diversity before piling on per-problem samples; the return is higher. - A too-large teacher-student gap and length arbitrage are hidden traps; add signal clipping and compression before going to production.


04 Architecture: Before You Bet on Non-Autoregressive, Read This Map

Autoregressive models generate one token at a time. Discrete diffusion (DDM) instead lays down a full draft and revises it globally, over and over — parallel and revisable, which is making it a serious alternative for text and code generation. The work is scattered, though. Every group uses its own terms and formalism, so a newcomer can't tell whether the bet is worth making.

This paper doesn't build another model. It proposes a unified framework and argues that discrete diffusion's properties depend fundamentally on how the discrete state space is constructed — the tokenization, the vocabulary's topology, the domain-specific alphabet. Existing transition-matrix, masking, and score-based approaches are just different instances of one design space.

The value isn't a benchmark score. It's a map of the route from tokenization to generation, helping you see the trade-offs among training objectives, inference algorithms, and scaling behavior.

Key takeaways: - Discrete diffusion's ceiling is set by state-space construction; when choosing an approach, look at tokenization and vocabulary design before the model. - The three mainstream method families are instances of one design space — don't let the terminology fragmentation scare you off. - This is a survey framework, not a new SOTA; good for building a mental model as a newcomer, not for finding a deployable performance gain.

A $400K Open Image Stack, and Distillation as a Catalyst

Also Worth Noting

05
Pruning Shrinks the Model but Breaks Free Generation Trainingpass@1 collapses to near zero while pass@k survives, so the ability is still there but the coherent output isn't; this uses "short-to-long" on-policy distillation to recover pruned models, a nice applied counterpart to today's OPD mechanism paper. link
06
Treating an Agent as "Foundation Model Plus Evolvable Scaffold" Agent: self-improving agents move from prototype to deployment, and this system-level survey is the other side of the Harness Handbook coin. link
07
Agent Evaluation Pipelines Are Fragmented and Tightly Coupled Evaluationso this work splits evaluation into three independent components and offers a lightweight, extensible base for it. link
08
Letting Understanding and Generation Correct Each Other Live in Masked Diffusion Image Genlike a teacher drawing while speaking, with the two modalities sharing latest decisions rather than only prior history. link
09
Turning Deterministic Emotion Recognition Into Ambiguity-Modeling One-to-Many Prediction Multimodal: a conditional rectified-flow head carries uncertainty estimates for the blurry facial behavior of real scenes. link

Today's Observation

Three agent papers land today, each talking about something different. Harness Handbook covers how to maintain that layer of code, the self-improvement survey covers how to make it evolve, and AgentCompass covers how to evaluate it. All three stand on the same foundation: an agent's capability doesn't live in the foundation model. It lives in the scaffold wrapped around it — the prompts, state, tools, and memory where behavior actually happens. Each paper takes one stretch of that scaffold's lifecycle: one for how it gets understood and edited, one for how it evolves with experience, one for how it gets measured.

Read together, they trace a turn no one has quite stated. Models are converging, so the differentiation and maintenance cost get squeezed onto the scaffold. That layer is no longer glue code slapped around the model. It's becoming a first-class engineering object that needs its own toolchain — readability, evolution, evaluation. That's why these papers are clustering now. They aren't three isolated ideas; they're a field building infrastructure for its new cost center.

For anyone building agents, the concrete move: stop treating the harness as a pile of throwaway scripts. Take the agent you edit most often, spend half a day writing down which code locations correspond to which behavior — even a hand-made behavior-to-code index — and consult it before your next change. The localization time that saves beats swapping in a bigger model.