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: 12
mode: short summaries
storage: postgres
status: listening
ai eval (43)ai engineering (28)
Sort by source dateLatest firstEarliest first

Filtering by tooling. Clear filter.

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...

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...

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...

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...

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...

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...

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...

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...