Century Automation← All news

AI & Automation Briefing - June 23, 2026

Agentic 'Loops' Signal the Next Architectural Shift in AI Automation

Boris Cherny, creator of Claude Code, told a Meta @Scale conference audience that continuously running agent loops represent a step change as significant as the original move from hand-written code to AI-generated code. The pattern involves swarms of agents running in the background indefinitely, each with a persistent mandate. Cherny described two loops he runs in his own work: one agent continuously proposes architecture improvements, another finds and consolidates duplicated abstractions. Both submit pull requests on an ongoing basis and never terminate because the codebase never stops changing. The concept builds on recursive logic familiar from basic computer science, but replaces a fixed stopping condition with a subagent that decides when the goal is met. A simpler variant called the Ralph Loop repeatedly summarizes completed work and checks whether the objective has been achieved, functioning as a correction mechanism when models drift during long runs. Researchers including OpenAI's Noam Brown have noted that sufficient compute applied persistently can solve nearly any problem, and the loop pattern operationalizes that idea. For teams building n8n or other workflow automations with Claude, this shift points toward designing for persistent, self-directing agent processes rather than discrete triggered tasks.

Source

EnterpriseClawBench Tests Agents on Real Workplace Tasks, Not Synthetic Ones

Most agent benchmarks rely on synthetic tasks that don't reflect actual enterprise conditions. EnterpriseClawBench is built from a large archive of real proprietary workplace sessions, converting them into 852 reproducible tasks where agents read mixed file types, call tools, and produce business artifacts. The researchers do not release the underlying data due to confidential enterprise content, but they do publish the construction and evaluation protocol so teams can apply it to their own private sessions. The top-performing configuration, Codex paired with GPT-5.5, scored only 0.663, and the paper argues that collapsing results into a single score obscures what actually matters: which harness and model were paired together, whether artifacts were delivered, visual output quality, cost, runtime, and how well skills transfer across task types.

Source

OpenRath Proposes Session-Centered Runtime Model for Multi-Agent Systems

A new research paper introduces OpenRath, a programming model for multi-agent systems that borrows its design philosophy from PyTorch. The core abstraction is a Session object, a runtime value passed between agents and workflows that carries conversation history, tool traces, memory events, sandbox placement, branch lineage, and token usage in a single unified structure. Because this state travels with the execution rather than being reconstructed from external logs afterward, operations like forking a session into parallel branches, merging results, and replaying prior states become explicit, composable runtime calls. OpenRath also defines supporting primitives including Sandbox, Tool, Agent, Memory, Workflow, and Selector, with Selector routing control flow decisions at runtime. The architecture is directly relevant to anyone designing multi-agent orchestration patterns, as it offers a concrete model for managing state across agents without relying on fragmented external logging.

Source

Sources