Century Automation← All news

AI & Automation Briefing - June 19, 2026

AI Raises the Bar for Engineering Discipline, Not Lowers It

Honeycomb CTO Charity Majors argues that the rapid improvement in AI-generated code, which she dates to Claude Opus 4.5 reaching median-engineer quality in late 2025, does not reduce the need for engineering rigor. It amplifies it. Her core point is that agentic harnesses, tool use, and function calling matured throughout 2025 and made AI genuinely useful for general-purpose software work. But that capability shift means sloppiness in how AI-assisted workflows are designed and validated compounds faster than it did before. For automation builders, the implication is direct: the architecture around an LLM, how it loops, what tools it calls, and how outputs are checked, is where discipline matters most now. Getting that layer wrong at scale is harder to recover from, not easier.

Source

Elasticsearch Agent Memory Layer Hits 0.89 Recall Across 168 Questions

Engineers at Elastic built a persistent, multi-tenant agent memory layer on Elasticsearch and published the full architecture and benchmark results. The system uses three indices mapped to episodic, semantic, and procedural memory types drawn from cognitive science, with hybrid retrieval combining reciprocal rank fusion and a cross-encoder reranker. It includes supersession logic to handle contradictions without deleting history, a decay model to prevent stale facts from outranking recent ones, and per-user document-level security to guarantee zero cross-tenant data leaks. Evaluated on 168 QA-style questions, the system achieved R@10 of 0.89. The architecture is exposed via MCP, making it accessible to any compatible agent runtime rather than locking it to a single framework. The full implementation is open source on GitHub. For teams running Claude-based or n8n workflows where context persistence is a bottleneck, this offers a concrete, replicable reference design.

Source

LLM Agent Benchmark Scores Don't Predict Real-World Performance, Research Finds

A new paper consolidating 14 parallel implementation studies of an MCP-based industrial agent benchmark, plus seven prior agent benchmarks, finds that aggregate leaderboard scores systematically fail to predict how AI agents will perform outside their test conditions. Rankings derived from in-sample scores shift when agents face out-of-distribution settings, a pattern confirmed by public-to-hidden competition retrospectives showing direct rank instability. The authors argue that evaluations should be ranked by predictive validity, meaning the correlation between in-sample and out-of-sample rank, rather than by average score. They propose a 12-tier measurement framework designed to surface deployment-relevant dimensions that current benchmarks like HELM collapse into a single number. No current benchmark covers more than four or five of the dimensions that real deployments expose. For teams building production agent workflows, this research provides a citable basis for treating benchmark scores as incomplete indicators of operational reliability.

Source

Sources