Century Automation← All news

AI & Automation Briefing - August 7, 2026

Five Major Agent Workflow Frameworks Fail Their Own Checkpoint and Resume Contracts

A new paper from HuggingFace formally defines six properties a workflow persistence layer must satisfy when checkpointing and resuming execution: prefix continuation, effect exactly-once, fork determinism, checkpoint validity, consume-once, and recovery determinism. Researchers tested LangGraph 1.2.9, CrewAI 1.15.2, pydantic-graph 1.x, and two other widely deployed frameworks against these properties using a deterministic, LLM-free test harness. Every framework violated at least one property, and no two shared the same conformance profile. LangGraph records a second resume value and never uses it, silently persists schema-invalid state, and re-executes already-recorded work after a SIGKILL, meaning it delivers exactly-once semantics across interrupts but at-least-once across crashes on the same API. CrewAI re-executes completed effect-bearing methods despite documenting otherwise. pydantic-graph cannot resume at all after a mid-node crash. The consume-once property holds under sequential delivery but fails under concurrent delivery: when k processes resume a single parked interrupt, the gated effect fires k times, with saturation hitting 1.0 in 36 of 40 test cells, a failure that crosses hosts. The paper introduces REMIT, a reference sequencer with a formally verified recovery core, which repairs the fork, validity, and concurrent-delivery failures. For anyone building idempotent automations in n8n or similar orchestration tools, this research explains the mechanism behind silent double-firing of workflow actions.

Source

Google Maps Adds Agentic Task Completion to Ask Maps Feature

Google has expanded its Ask Maps feature inside Google Maps with agentic capabilities that let users order food, book hotels, and find event tickets without leaving the app. For food orders, Ask Maps surfaces nearby restaurants matching a user's query, then adds items to a cart through supported platforms including Square, Toast, and Uber Eats. Hotel searches accept natural-language prompts, compare prices, check availability, and link out to partner sites to complete a booking. Event ticket discovery works the same way, returning options with direct purchase links. A new Personal Intelligence layer, off by default, connects Ask Maps to a user's Gmail and Google Calendar so it can answer questions about upcoming flights, reservations, and hotels using existing booking data. The feature also now retains conversation history so users can resume prior planning sessions. A live transit widget showing real-time delay information is also rolling out. All features are currently available to U.S. users. The update marks a clear product direction shift, turning Maps from a navigation tool into an agent that completes real-world tasks end to end.

Source

New Benchmark Measures How Well LLMs Can Optimize Their Own Automation Wrappers

Researchers have released HarnessOpt-Bench, a benchmark designed to evaluate how effectively frontier LLMs can iteratively improve the harness surrounding them. The harness includes prompts, tools, control flow, memory, and orchestration code, all of which directly affect how an AI agent performs within a larger system. In the benchmark setup, an LLM optimizer receives a starting harness, graded feedback from evaluations, and a fixed compute budget, then edits the harness and submits a final version scored against a held-out test partition it never accessed during the process. Five frontier LLMs were tested across four downstream tasks in 111 scored runs. Results show that the choice of optimizer model matters more than which coding harness it operates through, that native harnesses do not consistently outperform shared ones, and that performance gains vary significantly by task. The researchers conclude that harness optimization is a measurable and model-discriminating capability with substantial room for improvement. For teams running LLMs inside orchestration tools like n8n, this research defines a concrete framing for what self-improving automation architecture looks like and how it can be evaluated.

Source

Sources