惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
博客园 - 司徒正美
博客园 - 【当耐特】
爱范儿
爱范儿
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
IT之家
IT之家
人人都是产品经理
人人都是产品经理
雷峰网
雷峰网
酷 壳 – CoolShell
酷 壳 – CoolShell
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
大猫的无限游戏
大猫的无限游戏
月光博客
月光博客
宝玉的分享
宝玉的分享
V
V2EX
S
SegmentFault 最新的问题
V
Visual Studio Blog
阮一峰的网络日志
阮一峰的网络日志
Martin Fowler
Martin Fowler
Jina AI
Jina AI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园_首页
L
LangChain Blog
D
Docker
腾讯CDC

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
AI Agent Failure Loops: When Persistence Becomes a Qualit...
Gregory Shev · 2026-05-25 · via DEV Community

In 2026, I want my AI coding agents to have one more rule: know when to stop.

AI agents do not always fail by stopping.

Sometimes they fail by continuing.

I ran into this while building a custom Cyrillic font extension for a real brand system. The task looked concrete: make Cyrillic letters, Latin letters, numerals, and special symbols feel like one editorial type family.

Claude Code and Codex kept working. They generated files, exported proofs, reported progress, and fixed the last visible complaint.

But the same defect class kept returning.

That is the dangerous version of an AI-agent failure loop: the workflow looks productive while the real quality problem survives.

What is a failure loop?

A failure loop is a repeated pattern where an agent keeps producing new candidate fixes while the same underlying defect remains unresolved.

It usually has five steps:

  1. The user rejects the same kind of defect again.
  2. The agent patches the latest symptom.
  3. The proof gate is too weak to catch the issue.
  4. The agent asks for another manual review.
  5. Everyone spends another cycle on the same problem.

One mistake is normal.

The real process bug appears when the agent continues after its validation system has already failed.

Why normal proof loops can fail

Proof loops are useful. Tests, screenshots, build checks, linting, diffs, and generated reports all matter.

But proof loops can also become theater if they measure the wrong thing.

In my font project, the agent could prove that the font compiled, the PDF rendered, the screenshot existed, bounding boxes changed, and a numeric score improved.

That did not prove the letters looked right.

Users were rejecting a different thing: visual consistency.

Some Cyrillic glyphs felt too short, too thick, too loosely spaced, or structurally wrong next to Latin letters.

If the gate cannot see the defect the human keeps seeing, the gate is not allowed to declare the task done.

The rule I now use

After the same visible defect class appears twice, stop normal implementation.

Do not make one more speculative patch.

Do not relax the threshold.

Do not ask the user to inspect another candidate artifact.

Switch into failure-loop breaker mode.

What a failure-loop breaker does

A failure-loop breaker is a hard mode switch for AI-agent work.

A better next output is a diagnostic package, not another candidate fix.

It should include:

  1. the repeated failure class;
  2. a rejected corpus of known-bad examples;
  3. a red-first gate that fails on those examples;
  4. a fix that turns the gate green;
  5. blind or independent validation when the author has seen the answer;
  6. a clear continue, stop, or human-decision recommendation.

This is not only a retry limit.

A retry limit stops cost growth. A failure-loop breaker changes the work itself.

The red-first gate matters

A useful gate must fail before the fix, because otherwise it has not proven that it can see the old failure.

If the agent cannot make the new checker fail on previous bad artifacts, it has not built a checker for the real problem.

Many agent workflows skip this part.

They add a new metric, see the new candidate score higher, and call it progress. The metric was never forced to reject the old failure.

For subjective or visual tasks, this matters even more because the rejected corpus becomes the bridge between human taste and deterministic validation.

When the agent is contaminated

Another trap is contaminated validation: the same agent writes the fix, knows the target, and grades the result.

That can be useful during iteration, but it is not independent validation.

If the agent has already seen the expected answer, the final check needs a deterministic gate with withheld examples, a blind reviewer, a separate model that does not receive the author reasoning, or a human decision when the requirement is taste rather than computation.

Same-author validation is often self-consistency, not proof.

I packaged this as a small public skill

I turned the rule into a small public repo:

https://github.com/g-shevchenko/agent-failure-loop-breaker

It installs a compact skill and repo-local rules for Claude Code, Codex, Cursor, and Windsurf.

Its installed rule is deliberately simple:

If the same defect class appears twice, the agent must stop normal patching and build a rejected corpus plus a red-first gate before continuing.

This package is not meant to make the model smarter.

It makes the workflow less willing to confuse motion with progress.

Where companies go wrong

Teams often treat agent persistence as an asset by default.

That is reasonable for well-scoped implementation tasks with strong tests. It is risky for work where the acceptance criterion is visual, editorial, architectural, or operational.

If Claude Code, Codex, Cursor, or Windsurf keeps failing the same class of review, the next investment should go into the validation contract.

The best prompt in the world will still loop when the gate rewards the wrong artifact.

Where this helps

This pattern is useful for UI polish loops, visual regression work, PDF and presentation generation, typography systems, content QA, and agentic coding tasks where the same bug returns.

Here is the signal:

If the user says “this is still the same problem” twice, the process should change.

Practical takeaway

Do not ask an AI agent to “keep trying” forever.

Ask it to prove that its checker can catch the last failed attempt.

If it cannot, the next task is not implementation.

At that point, the next task is building a better gate.

Full write-up:

https://gregshevchenko.com/notes/ai-agent-failure-loop-breakers/