AI & Agent Evaluation
2,151total visitsadmin
reading room / notes / ai engineering

Reading room

Short summaries of agent optimization and AI engineering work — harnesses, prompt and context optimization, orchestration, memory, and agentic RL.

$ evals.index --public
category: ai engineering
posts: 28
mode: short summaries
storage: postgres
status: listening
ai eval (43)ai engineering (28)
Sort by source dateLatest firstEarliest first

Agent Optimizer in Microsoft Foundry Agent Service (Preview)

product docs · source date 2026-07-14 · 0 comments · original

1. Problems / challenges / motivations - Optimization research assumes someone will wire traces, evals, candidate generation, and deployment together by hand. - Enterprises will not run a self-improvement loop without lineage, diffs, and rollback. - Production traces are the best optimization signal available and usually go unused. 2. Key ideas - A managed...

Harness Engineering for Self-Improvement

researcher blog · source date 2026-07-04 · 0 comments · original

1. Problems / challenges / motivations - Discussion of recursive self-improvement defaults to model weights, while most of the practical gains in 2026 came from the code around the model. - The relevant literature is scattered across context engineering, scaffold search, and Gödel-machine work with no common map. - Practitioners have no shared vocabulary...

The Red Queen Gödel Machine: Co-Evolving Agents and Their Evaluators

arXiv paper · source date 2026-06-24 · 0 comments · original

1. Problems / challenges / motivations - Self-improving agents are bounded by the evaluator that scores their modifications, so a fixed evaluator caps improvement. - In hard-to-verify domains — paper writing, proof grading — there is no benchmark to serve as the evaluator at all. - Letting the evaluator evolve freely invites the agent and evaluator to drift...

Anthropic — How we enable self-service data analytics with Claude

engineering blog · source date 2026-06-03 · 0 comments · original

1. Problems / challenges / motivations - Self-service analytics fails in two directions: give an agent broad data access and metric definitions diverge across teams; lock access down and it cannot answer the business questions people actually have. - Three specific failure modes drive wrong answers: concept-to-entity ambiguity (mapping a question to the...

Solve-Detect-Verify (FlexiVe): Inference-Time Scaling with a Flexible Generative Verifier

peer-reviewed paper · source date 2026-06-01 · 0 comments · original

1. Problems / challenges / motivations - Best-of-N spends the same verification compute on easy and hard candidates alike. - Generative verifiers are accurate but expensive, which limits how often they can be called. - Verifier training and verifier-guided search are usually studied separately. 2. Key ideas - FlexiVe is a generative verifier that...

verl — Volcano Engine RL Library (Agentic RL Path)

open-source framework · source date 2026-06-01 · 0 comments · original

1. Problems / challenges / motivations - Every lab reimplementing PPO/GRPO plumbing wastes effort and makes results incomparable. - Multi-turn agentic rollouts with tool calls do not fit training loops designed for single-turn completions. - Rollout throughput becomes the bottleneck without async and load balancing. 2. Key ideas - A production RL training...

Building Customer Support AI Agents at 100M-User Scale (Nubank)

peer-reviewed paper · source date 2026-06-01 · 0 comments · original

1. Problems / challenges / motivations - Production agent quality is gated by the quality of the evaluation loop, and most teams' LLM judges are not calibrated against anything. - Hand-written judge prompts drift and disagree with human reviewers, which makes every downstream decision noisy. - Optimization research is overwhelmingly benchmark-based, with...

Building Self-Improving Tax Agents with Codex

engineering blog · source date 2026-05-27 · 0 comments · original

1. Problems / challenges / motivations - Vertical agents fail in domain-specific ways that generic benchmarks never surface. - Practitioner corrections are the highest-value signal a deployed agent produces and usually vanish into a support queue. - "Self-improving" typically means prompt tweaks, which does not fix root causes in the surrounding system. 2....

Introducing Google Antigravity 2.0

product release · source date 2026-05-19 · 0 comments · original

1. Problems / challenges / motivations - IDE-centric tooling assumes a human in the editor, which is the wrong center of gravity once agents do most of the editing. - Steering long-running agents needs surfaces for both synchronous and asynchronous work. - Model and harness are usually developed by different teams and integrated late. 2. Key ideas - A...

MemCompiler: Compile, Don't Inject — State-Conditioned Memory for Embodied Agents

arXiv paper · source date 2026-05-01 · 0 comments · original

1. Problems / challenges / motivations - Retrieval-style memory injects a blob of past experience ahead of time, most of which is irrelevant to the current step. - Irrelevant memory costs tokens, adds latency, and actively distracts the policy. - Vector recall quality is not the same thing as memory being useful to an acting agent. 2. Key ideas - Replaces...

MLflow optimize_prompts() / GepaPromptOptimizer

product docs · source date 2026-05-01 · 0 comments · original

1. Problems / challenges / motivations - Prompt optimizers mostly live inside one framework, so adopting them means adopting the framework. - Optimized prompts are artifacts that need versioning, diffing, and rollback like any other deployed asset. - Without CI integration, optimization is a one-off experiment rather than a maintained process. 2. Key...

Capable Language Models Can Outgrow the Benefits of Collaboration

peer-reviewed paper · source date 2026-05-01 · 0 comments · original

1. Problems / challenges / motivations - Multi-agent debate and collaboration results were mostly established on weaker base models and assumed to hold as models improve. - Teams have no decision rule for when to add agents versus when a single strong model suffices. - Collaboration adds cost and latency that need justification. 2. Key ideas - Quantifies...

GEPA: Reflective Prompt Evolution Can Outperform Reinforcement Learning

peer-reviewed paper · source date 2026-04-24 · 0 comments · original

1. Problems / challenges / motivations - RL post-training for compound LLM systems is rollout-hungry: it learns from a scalar reward and throws away everything the trace actually said about the failure. - Prompt optimization by hand does not scale across a multi-module pipeline. - Earlier automatic optimizers (MIPROv2) search over instructions without...

RULER: Relative Universal LLM-Elicited Rewards

open-source tool · source date 2026-04-01 · 0 comments · original

1. Problems / challenges / motivations - RL on agent tasks needs a reward function, and most real tasks have no verifier and no labeled data. - Hand-crafting reward functions per task is the main cost of applying RL to agents. - Absolute LLM-judge scores are noisy and poorly calibrated across tasks. 2. Key ideas - A general-purpose reward function that...

Towards a Science of Scaling Agent Systems

research blog · source date 2026-04-01 · 0 comments · original

1. Problems / challenges / motivations - Multi-agent systems are adopted on the assumption that more agents means better results, with little controlled evidence. - Comparisons across papers confound topology, model, and token budget. - Errors propagate differently depending on how agents are wired together, and that effect is rarely measured. 2. Key...

slime — SGLang-native RL Post-Training Framework (behind GLM)

open-source framework · source date 2026-03-29 · 0 comments · original

1. Problems / challenges / motivations - RL post-training couples a training engine to a rollout engine, and synchronous coupling leaves accelerators idle. - Agentic rollouts (tool calls, sandboxes, multi-agent loops) are slow and variable, which makes the coupling worse. - Agentic RL is often bolted on as a separate framework rather than treated as data...

Evals Skills for Coding Agents

practitioner blog · source date 2026-03-03 · 0 comments · original

1. Problems / challenges / motivations - Eval methodology is well documented and badly practiced, because doing it properly is tedious. - Coding agents are already in the loop but are not taught how to build evaluation systems. - Error analysis — the highest-value step — is the one teams skip first. 2. Key ideas - Publishes `evals-skills`, a plug-in set of...

Harness Engineering: Leveraging Codex in an Agent-First World

engineering blog · source date 2026-02-11 · 0 comments · original

1. Problems / challenges / motivations - Codebases are written to be legible to humans, which is not the same as being legible to a coding agent. - When agents write most of the code, the bottleneck moves from writing to specifying, validating, and observing. - Agent failures in a large repo are hard to diagnose without per-run observability. 2. Key...

Introducing GPT-5.3-Codex

model release · source date 2026-02-05 · 0 comments · original

1. Problems / challenges / motivations - Long-horizon agent work needs both strong coding and strong reasoning, which had been split across separate models. - Fire-and-forget agent runs waste time when the user can see it going wrong but cannot intervene. - Prompting guidance for agent models is under-specified relative to how much it changes behavior. 2....

Kimi K2.5: Visual Agentic Intelligence

technical report · source date 2026-02-01 · 0 comments · original

1. Problems / challenges / motivations - RLVR works where rewards are verifiable, which excludes most multimodal and open-ended agentic tasks. - Scaling agentic post-training needs a reward signal that does not depend on hand-written verifiers for every domain. - Single-agent rollouts limit the diversity of trajectories available to learn from. 2. Key...

Agentic Context Engineering (ACE): Evolving Contexts for Self-Improving LMs

peer-reviewed paper · source date 2026-01-30 · 0 comments · original

1. Problems / challenges / motivations - Rewriting a whole system prompt on each optimization step introduces brevity bias: the rewrite compresses away details it does not currently see a use for. - Repeated rewrites cause context collapse, where accumulated knowledge degrades rather than compounds. - Adapting a system to a new domain by retraining is slow...

Building Agents with Skills: Equipping Agents for Specialized Work

engineering blog · source date 2026-01-22 · 0 comments · original

1. Problems / challenges / motivations - Building a specialized agent per domain multiplies maintenance and fragments capability. - Stuffing all domain knowledge into a system prompt does not scale past a few domains. - Reusable agent capability had no portable packaging format. 2. Key ideas - Explains why Anthropic stopped building specialized agents and...

Code Execution with MCP: Building More Efficient Agents

engineering blog · source date 2025-11-04 · 0 comments · original

1. Problems / challenges / motivations - Loading every MCP tool definition into context burns tokens before the agent does anything. - Intermediate tool results flow through the model even when the model only needs a filtered summary. - Tool selection degrades as the tool count grows. 2. Key ideas - Presents MCP servers as code APIs the agent explores on a...

Huxley-Gödel Machine: Human-Level Coding Agent Development

peer-reviewed paper · source date 2025-10-24 · 0 comments · original

1. Problems / challenges / motivations - Self-modification search scores a variant by its own benchmark performance, but the useful property is whether it leads somewhere — the two come apart. - The paper names this the Metaproductivity–Performance Mismatch: a mediocre variant can be the ancestor of the best ones. - Expanding the wrong branches burns large...

Effective Context Engineering for AI Agents

engineering blog · source date 2025-09-29 · 0 comments · original

1. Problems / challenges / motivations - Prompt engineering assumes a fixed instruction; agents assemble a different context at every step. - Long-horizon agents run past any context window, so something has to decide what survives. - The field lacked shared vocabulary for what that decision process is. 2. Key ideas - Frames context engineering as the...

The Landscape of Agentic Reinforcement Learning for LLMs: A Survey

peer-reviewed survey · source date 2025-09-02 · 0 comments · original

1. Problems / challenges / motivations - Agentic RL work is spread across planning, tool use, memory, reasoning, and perception with no shared taxonomy. - Standard LLM RL formulations assume a single-step MDP, which does not describe an agent acting over a long horizon with partial observability. - Environments, benchmarks, and frameworks are fragmented and...

Context Rot: How Increasing Input Tokens Impacts LLM Performance

technical report · source date 2025-07-01 · 0 comments · original

1. Problems / challenges / motivations - Long context windows are marketed as capacity, and teams treat "fits in the window" as "will be used correctly." - Needle-in-a-haystack tests use high semantic similarity between question and needle, which is the easy case. - Without evidence of degradation, there is no case for the engineering cost of compaction and...

Darwin Gödel Machine: Open-Ended Evolution of Self-Improving Agents

peer-reviewed paper · source date 2025-05-30 · 0 comments · original

1. Problems / challenges / motivations - The classical Gödel machine requires a formal proof that a self-modification is an improvement, which is infeasible for real systems. - Agent design is currently done by hand, one scaffold change at a time. - Greedy self-modification collapses into a local optimum and loses variants that would have paid off...