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

Filtering by coding agents. Clear filter.

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

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

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

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