Daily D4 Digest — 2026-08-14
TL;DR
- Agent leaderboards are measuring specialization, not capability — agent main effects explain <3% of variance across three enterprise benchmarks, with profound implications for procurement decisions
- A landmark case study converted 56K lines of legacy Fortran using agentic workflows with zero chemistry-relevant deviations across 612 test runs — the clearest SCE proof point yet
- Safety constraints silently degrade during context compaction: rules that look present after summarization fail to fire +34–57 points more often, demanding external constraint registries
- GPU-resident agent control logic avoids host round-trips for 1.2–2.4× speedups, while RL-based datacenter power control enables ~2× GPU oversubscription of nameplate capacity
- A new paper formalizes agent safety as a runtime contract with preventive + evidential faces, backed by an 8–12× publication imbalance between training-time and deployment-time safety work
Call to Action
- Adopt the DDR reporting discipline before your next agent vendor evaluation — leaderboard scores are misleading by design. Use variance decomposition to size evaluations against your task distribution. Read the framework
- Implement an external constraint registry for any long-running agent that performs context compaction — textual presence of safety rules gives false assurance. See the evidence
- Evaluate the Continuity Kernel pattern for persistent agent state governance — it addresses the stale-overwrite and privilege-escalation risks that will bite you as agents become long-lived. Paper
D1 — Agentic Engineering
Agentic Legacy Code Modernization at Scale. The most impressive D1 result this week: three prompt-specialized Claude Code agent roles, operating in isolated git worktrees under a version-controlled specification that the agents themselves authored and revised, converted 56,448 lines of 48-year-old Fortran 77 to Fortran 2008 in the quantum-chemistry package GAMESS. The key insight is the verification oracle: GAMESS’s canonical test suite provides bit-for-bit energy reproduction as a merge criterion, where a deviation in the twelfth decimal place counts as failure. Across 612 test runs, zero chemistry-relevant differences. This is the Specify → Verify → Apply loop at its most mature — humans held “a small number of gates” while agents did the volumetric work. The paper explicitly notes that “the boundary of safe delegation lies exactly where the oracle stops seeing.” (Also D4, SCE)
Coding Agents as Autonomous Researchers. AutoWorldModel-Bench introduces a benchmark where frontier agents (Codex-5.4, Claude Opus 4.6) autonomously improve world-model starters under a fixed compute budget. In 63 of 64 sessions, the agents improved their starter; in 91% of sessions the winning edit was a research-style modification — new objectives, representations, architectural changes — not hyperparameter tuning. This is a significant shift from engineering-to-spec benchmarks toward evaluating agents on open-ended problem-solving, suggesting that agentic workflows are moving beyond rote code generation into genuine design exploration.
Instruction Following ≠ Instruction Compliance. Harness-IF introduces Against-Prior Accuracy (AP-Acc) to separate genuine compliance from coincidence in coding agents. Across 12 frontier models, accuracy spans 72–86% but AP-Acc drops to 66–79% — every model performs 3.6–7.4 points worse on rules that oppose its default behavior. Crucially, the study finds that instruction precedence does not follow prompt depth: system prompts, project files, and user instructions outrank tool and skill descriptions. For anyone building agentic pipelines with layered instruction surfaces (system prompt → project rules → user turns → tool descriptions), this quantifies the compliance gap you’re actually operating with.
Self-Evolving Network Verifiers. A counterexample-guided agentic loop automatically extends a 3,000-line SMT-based network verifier to support features (OSPF areas, BGP route reflection, L3VPN over EVPN) that no expert had hand-coded. A coding agent proposes extensions to the verifier’s symbolic encoding; emulated routers serve as the ground-truth oracle; disagreements drive iterative refinement. The agent even noticed vendor-specific behavioral deviations from RFCs. This is the Specify → Plan → Verify loop applied to infrastructure verification — and it generalizes: any domain with a testable oracle can use this pattern. (Also SCE)
Guardrail Decay Under Context Compaction. This study reveals a subtle and dangerous failure mode: when long-running agents compact their context via self-summarization, safety rules that appear to survive often become behaviorally inert “residues.” On behavioral replay, degraded residues led to prohibited actions +34 and +57 points more often than intact rules. Rule-form items are retained more often than matched facts — which is why textual audits feel adequate even though they aren’t. The implication is clear: any agent system performing context compaction needs an external constraint registry and behavioral verification, not just textual presence checks. (Also D3, SCE)
D2 — AI in the Product
Inverse Theory of Mind for Generative UIs. IToM proposes reasoning backward from user interactions to infer beliefs, preferences, and decision-making traits — then using these inferred personas to drive adaptive interfaces. The pipeline uses LLM-driven counterfactual reasoning and multi-hypothesis abductive inference. Results show inferred personas match or exceed ground-truth personas on next-action prediction, personality inference, and held-out category prediction. Most interesting for product builders: they demonstrate cross-modal transferability with a persona-driven spatial banking app on VisionOS, suggesting these user models can port across interface paradigms (web → XR → generative UI). This is the product-side complement to D3’s agent-consumable interfaces.
Governed Multi-Agent Document Processing. GUIDE is a six-agent framework for extracting, validating, and generating artifacts from enterprise guideline documents. It uses a shared versioned rule store with schema-validated inter-agent contracts and end-to-end provenance tracking. On 120 real-world documents: 96% success, 3,896 rules extracted (71.4% auto-approved), 812 deployment-ready artifacts, turnaround reduced from 2–3 days to 40–125 minutes. The HITL escalation pattern and schema-validated contracts between agents make this a solid reference architecture for governed agentic workflows. (Also D1, D3)
D3 — Build for Agents
Transactional State Governance for Long-Lived Agents. The Continuity Kernel treats agent state as a concurrency problem, not a memory problem. It defines continuity as an unbroken, authorized lineage of accepted branch heads, and introduces an activation contract where untrusted components propose typed changes against an exact predecessor head. A short activation transaction revalidates ownership, authority, freshness, and effect uniqueness before committing. The protocol was verified across 2.8M reachable states and 5.5M transitions with zero invariant violations. This is essentially git-for-agent-state with ACID guarantees — and it addresses the real-world risk of stale overwrites and privilege escalation in multi-tool agent systems. (Also SCE)
Agent Safety as Runtime Contract. This position paper argues that training-time safety (RLHF/DPO/Constitutional AI) is structurally insufficient for agents that execute code, mutate files, and modify databases. The proposed Agent Trajectory Schema and Evidence Chain has two faces: preventive (sandboxes, permission gates, output filters, trajectory monitors) and evidential (gating task submission on hard evidence like test runs, file diffs, citation grounding). Backed by a survey of 52 documented agent safety incidents and a publication audit showing an 8–12× imbalance between training-time and deployment-time safety research across NeurIPS/ICML/ICLR 2023–2025. The key quote: “The right unit of safety in agentic AI is the trajectory-with-checkable-evidence, not the model.” (Also D1, SCE)
D4 — Performance & Cost at Scale
GPU-Resident Agent Control Eliminates Host Round-Trips. Ready Cohorts formalizes when the control path between LLM model calls and tool calls exposes enough concurrent work for GPU execution. In a stationary Poisson replay at 100K target active sessions with K=256 and a 50ms launch deadline, 43% of control transitions are exactly GPU-packable. The mechanism study keeps GPU-computed routing decisions on-device rather than returning to the host: across all 36 configurations tested, the device-resident path is faster (1.19–2.39× row-median ratios). Interestingly, a fixed nested device graph that removes no host decision is slower in all 60 configurations — the win comes specifically from keeping observation-derived routing on device. All 14.5M tested invocations matched a host oracle. For anyone running agent orchestration at scale, this quantifies when GPU-side control logic pays off and when it doesn’t.
RL-Based Datacenter Power Control Enables GPU Oversubscription. A PPO meta-controller trained on half-second power telemetry from GRPO training workloads cuts power-limit violations by 89.8% while increasing token output 18.1% and energy efficiency 26.2% at 7B scale. At 72B, the key insight is that the actuator must shift from group-size to generation concurrency under model sharding. For a composed 16-GPU fleet, peak demand sits at 50–56% of nameplate at 30-second measurement windows, suggesting ~2× oversubscription is feasible. The economic implication: you can potentially halve your power infrastructure cost per GPU if you deploy workload-aware power management instead of static caps. (Also D1)
Software Civil Engineering Lens
Today is a banner day for the SCE thesis. Multiple papers independently converge on the same structural insight: the professionalization of agentic AI requires externalizing constraints from the model into inspectable, enforceable infrastructure.
The GAMESS legacy modernization study is perhaps the most complete SCE proof point we’ve seen. The Specify → Plan → Verify → Apply → Observe lifecycle is followed precisely: agents authored their own specification, operated in isolated worktrees (bounded autonomy), and merged only when an exact verification oracle confirmed bit-for-bit reproduction. Humans held gates, not keyboards. The paper even articulates the SCE boundary condition explicitly: “the boundary of safe delegation lies exactly where the oracle stops seeing.” This is the human-on-the-loop model working at production scale.
The guardrail survival paper (2608.11392) and the runtime contract paper (2608.11274) together make the case that training-time safety is the craft-era approach — relying on the artisan (model) to internalize all the rules. The engineering-era approach externalizes constraints into inspectable registries, runtime contracts, and trajectory schemas with checkable evidence. The guardrail decay finding is particularly damning: rules that look present but don’t act present are the software equivalent of a load-bearing beam that passes visual inspection but has internal fractures. You need material testing (behavioral verification), not just visual inspection (textual presence).
The DDR framework contributes the measurement pillar: agent leaderboards explain <3% of variance via the agent main effect, meaning we’re evaluating specialization, not capability. This is analogous to rating a construction material by one test and deploying it everywhere — without datasheets that characterize behavior across conditions, you get brittle decisions. The finding that training-cell reliability negatively correlates with held-out reliability (r = -0.90) is a red flag for any enterprise agent procurement process.
The Continuity Kernel and self-evolving verifiers both embody the simulation pillar — one verifying 2.8M states of agent protocol invariants, the other using counterexample-guided loops to build provably correct network models. Both demonstrate that formal verification, the “terraform plan for domain logic” in SCE terms, is becoming practical for agentic systems.
Net assessment: We’re seeing convergent evolution toward the SCE architecture across independent research groups. The six pillars gap is narrowing — particularly on formal specification (runtime contracts, trajectory schemas), simulation (verified protocols, oracle-guided loops), and codes/norms (DDR reporting discipline). What’s still conspicuously absent: licensure, education, and industry-wide material datasheets for agent capabilities.
Sources
- AutoWorldModel-Bench — Benchmark for evaluating coding agents as autonomous researchers on open-ended world-model improvement
- Cutting AI Datacenter Energy with RL — PPO meta-controller for GPU power management enables ~2× nameplate oversubscription
- Deployment Decision Reliability — Generalizability Theory shows agent leaderboards rank specialization (<3% agent variance), not capability
- Inverse Theory of Mind for Recommendation — LLM-driven counterfactual reasoning infers user personas for generative/XR interfaces
- Harness-IF — Separates genuine instruction compliance from coincidence in coding agents across five instruction surfaces
- GUIDE — Governed six-agent framework for enterprise document-to-artifact generation with provenance tracking
- Agentic Legacy HPC Modernization (GAMESS) — Three agent roles convert 56K lines of Fortran 77 with zero test deviations across 612 runs
- Agent Safety as Runtime Contract — Position paper arguing for trajectory-with-evidence as the unit of agent safety, not the model
- Self-evolving Network Verifiers — Counterexample-guided agent loop auto-extends SMT verifier to unsupported network protocols
- AI Guardrail Survival under Self-Summarization — Safety rules that survive context compaction textually still fail behaviorally (+34–57 points)
- Continuity Kernel for Long-Lived Agents — Transactional state governance with ACID-like guarantees verified across 2.8M states
- Ready Cohorts: GPU Agent Control — Formalizes GPU-resident agent control logic, achieving 1.2–2.4× speedups over host round-trips
