> ## Documentation Index
> Fetch the complete documentation index at: https://docs.svrnos.com/llms.txt
> Use this file to discover all available pages before exploring further.

# GER-427 · Recursive Agentic Loop

> An agentic AI system enters a recursive execution loop that produces apparent progress but no actual goal advancement, consuming compute and time without converging on completion. Six sub-mechanisms: infinite tool-call l…

export const Badge = ({children, tone = "default", title}) => {
  const tones = {
    default: "bg-neutral-100 text-neutral-700",
    green: "bg-green-100 text-green-900",
    amber: "bg-amber-100 text-amber-900",
    blue: "bg-blue-50 text-blue-900",
    gray: "bg-neutral-50 text-neutral-600"
  };
  return <span className={`inline-flex items-center px-2 py-0.5 text-xs font-mono uppercase tracking-wider rounded ${tones[tone] ?? tones.default}`} title={title}>
      {children}
    </span>;
};

<div className="flex flex-wrap gap-2 mb-8 mt-2">
  <Badge tone="amber">Illustrative</Badge> <Badge>Tier 4xx</Badge> <Badge>Layer L5</Badge> <Badge tone="blue" title="SVRNOS-assigned code in an HTTP-unassigned slot">Namespace-Claim</Badge> <Badge tone="gray">Added v0.2</Badge>
</div>

*Operator / Platform Errors*

## Definition

An agentic AI system enters a recursive execution loop that produces apparent progress but no actual goal advancement, consuming compute and time without converging on completion. Six sub-mechanisms: infinite tool-call loop (repeated invocations with cosmetically varied arguments), plan-execute oscillation (cycles of replanning and partial execution without progress), sub-agent recursion (delegation to sub-agents without depth cap), context-window thrash (output quality degradation as conversation history bloats), hallucinated tool arguments (invalid argument generation triggering retry loops), silent budget burn (productive-looking progress signals while cost runs away). All six produce the same surface symptom (no goal achievement) with different underlying mechanisms.

## Distinct from

* [**GER-500**](/ger/codes/500) — Agent reasoning enters recursive loop inside operational platform → this code. Platform infrastructure itself fails → GER-500.
* [**GER-501**](/ger/codes/501) — Agent loops internally → this code. Detection fires but no escalation handler exists → GER-501.

## Tags

`agentic` · `agentic-overreach`

### Contributors

[Satyam Kumar Das](https://www.linkedin.com/in/satyamkumar/), AppScale

### Cite

```
SVRNOS. (2026). GER-427: Recursive Agentic Loop. Governance Error Register. https://docs.svrnos.com/ger/codes/427
```
