Century Automation← All news

AI & Automation Briefing - September 2, 2026

New Framework Defines What It Actually Takes to Build Persistent AI Agents

Researchers have published a paper introducing PERA, the Perception-Centered Architecture for Persistent Agents, a framework for designing language agents that operate continuously across changing conditions rather than completing discrete, bounded tasks. Most current agent frameworks treat tasks as isolated jobs with fixed scope. PERA instead organizes an agent around perception and control components that continuously read signals from past task executions, internal state, and environmental changes, then use those signals to generate what the paper calls lifecycle tasks. These drive ongoing adaptation of the agent's service procedures over time. The authors draw an explicit parallel to software engineering's shift from small-scale to large-scale programming, framing persistent agents as the next architectural transition for AI systems. For practitioners building production automation with tools like n8n and Claude, PERA provides concrete vocabulary and structure for designing agents that stay useful as business contexts, SOPs, and user needs evolve.

Source

Anthropic Releases Fable 5.1 With Lower Token Costs and Fewer Safety False Positives

Anthropic released Fable 5.1 and Mythos 5.1 on September 1, 2026. Fable 5.1 is available now via the Anthropic API and cloud platforms. The update reduces token costs and cuts down on false-positive refusals from the model's safety filters, which has direct implications for automation reliability and API economics. A new high-privacy option called Enterprise Frontier Safeguards will roll out this fall, enabling zero data retention so clients can run the model on their own infrastructure without data leaving their environment. Clients will control how misuse monitoring is implemented, though monitoring itself remains active. Anthropic confirmed it has never trained on enterprise data without explicit permission. Fable 5.1 sets new records on Terminal-Bench 4.0 for CLI-based coding and Humanity's Last Exam for general reasoning. The restricted Mythos 5.1 variant remains limited to registered Anthropic partners in cybersecurity or life sciences.

Source

Separating Control Flow from Prompt Content Keeps Multi-Agent Pipelines Stable During Optimization

A new paper from researchers including Yuntian Deng identifies a structural problem in multi-agent LLM systems: when you optimize prompts to improve task output, those same prompts often encode execution logic like message routing, output formatting, and termination signals. Editing them for better language performance can silently break the pipeline's protocol. The proposed fix is control-data flow separation. Execution-critical instructions are encoded as typed, validated program objects that optimizers cannot touch. Only the natural-language content used for agent communication remains subject to prompt optimization. Tested across reasoning tasks, collaborative review generation, and insurance rating workflows, the framework achieved 100% eventual protocol validity while also improving task performance. For teams building multi-agent chains in tools like n8n with Claude, this points to a concrete architectural principle: keep your routing and formatting logic out of the text your optimizer rewrites.

Source

Sources