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

推荐订阅源

J
Java Code Geeks
aimingoo的专栏
aimingoo的专栏
Martin Fowler
Martin Fowler
C
Check Point Blog
G
Google Developers Blog
V
Visual Studio Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
有赞技术团队
有赞技术团队
MongoDB | Blog
MongoDB | Blog
月光博客
月光博客
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
D
Docker
Hugging Face - Blog
Hugging Face - Blog
The GitHub Blog
The GitHub Blog
博客园 - 三生石上(FineUI控件)
A
About on SuperTechFans
Recent Announcements
Recent Announcements
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
阮一峰的网络日志
阮一峰的网络日志
Stack Overflow Blog
Stack Overflow Blog
Vercel News
Vercel News

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
Add Runtime Limits to Claude Agent Workflows
Joakim Willi · 2026-05-26 · via DEV Community

Joakim William Hauge

Add Runtime Limits to Claude Agent Workflows

One of the fastest ways autonomous workflows become unstable in production is not model quality.

It’s unconstrained execution.

A Claude-powered workflow starts normally:

  • retrieve context
  • call tools
  • reason
  • retry

Then suddenly:

  • retries compound
  • context expands
  • tool usage escalates
  • latency spikes
  • execution drifts indefinitely

The workflow technically remains “alive.”

Operationally:
it stopped making meaningful progress a long time ago.

This article shows a simple way to add runtime limits to Claude agent workflows using TypeScript.

No complex orchestration required.


Why Runtime Limits Matter

Most AI workflows behave normally most of the time.

The problem comes from edge cases:

  • recursive retries
  • runaway tool chains
  • unstable recovery behavior
  • non-converging reasoning loops
  • escalating context windows

A small percentage of unstable runs can consume disproportionate amounts of:

  • inference cost
  • latency
  • compute
  • operational attention

Especially in:

  • autonomous workflows
  • long-running agents
  • multi-step orchestration systems

This is where runtime limits become important.


The Goal

We want lightweight operational boundaries like:

```ts id="jlwm4"
{
maxRuntimeMs: 30000,
maxSteps: 15,
maxToolCalls: 10
}




Once execution exceeds those boundaries:

* workflows interrupt safely
* retries stop compounding
* latency remains bounded
* economic exposure stays predictable

Think of it as:



```txt id="0jlwm4"
bounded execution for autonomous systems

Enter fullscreen mode Exit fullscreen mode


Step 1 — Track Runtime State

We’ll maintain a lightweight execution context:

```ts id="1jlwm4"
type ExecutionState = {
startedAt: number;
steps: number;
toolCalls: number;
};




Initialize it:



```ts id="2jlwm4"
const state: ExecutionState = {
  startedAt: Date.now(),
  steps: 0,
  toolCalls: 0
};

Enter fullscreen mode Exit fullscreen mode


Step 2 — Define Runtime Limits

Now define simple operational constraints:

```ts id="3jlwm4"
const LIMITS = {
maxRuntimeMs: 30_000,
maxSteps: 15,
maxToolCalls: 10
};




These values do not need to be perfect initially.

The important thing is:



```txt id="4jlwm4"
execution becomes bounded

Enter fullscreen mode Exit fullscreen mode


Step 3 — Create a Runtime Guard

Now create a simple runtime enforcement layer:

```ts id="5jlwm4"
function enforceRuntimeLimits(
state: ExecutionState
) {
const runtimeMs =
Date.now() - state.startedAt;

if (runtimeMs > LIMITS.maxRuntimeMs) {
throw new Error(
"Runtime limit exceeded"
);
}

if (state.steps > LIMITS.maxSteps) {
throw new Error(
"Execution step limit exceeded"
);
}

if (state.toolCalls > LIMITS.maxToolCalls) {
throw new Error(
"Tool invocation limit exceeded"
);
}
}




This becomes your:

## runtime governance layer.

---

# Step 4 — Wrap Workflow Execution

Now enforce limits during execution:



```ts id="6jlwm4"
while (true) {
  enforceRuntimeLimits(state);

  const response =
    await claudeAgent.run();

  state.steps += 1;

  if (response.usedTool) {
    state.toolCalls += 1;
  }

  if (response.done) {
    break;
  }
}

Enter fullscreen mode Exit fullscreen mode

That’s it.

Now your workflow has:

  • bounded runtime
  • bounded execution depth
  • bounded tool usage

Why Simple Limits Work Surprisingly Well

A lot of teams initially assume they need:

  • advanced anomaly detection
  • reinforcement learning
  • sophisticated telemetry pipelines

But simple operational constraints already eliminate many expensive failure modes.

Especially:

  • retry storms
  • recursive loops
  • unstable tool churn
  • non-converging execution

You do not need perfect intelligence initially.

You need:

operational boundaries.


Production Improvements

The minimal example above works surprisingly well, but production systems usually add:

  • token velocity monitoring
  • recursion detection
  • semantic retry analysis
  • adaptive thresholds
  • tenant-specific budgets
  • escalation policies
  • execution tracing

For example:

```txt id="7jlwm4"
search
→ retry
→ search
→ retry
→ retry




is often more dangerous operationally than:



```txt id="8jlwm4"
search
→ summarize
→ respond

Enter fullscreen mode Exit fullscreen mode

even if both technically “work.”


Why This Looks Familiar

Distributed systems evolved similar operational primitives over decades:

  • retry limits
  • timeout controls
  • circuit breakers
  • bounded failure domains

Why?

Because eventually:
unconstrained execution became dangerous at scale.

Autonomous AI systems are beginning to encounter the same operational reality.


The Shift Toward Runtime Governance

Most AI infrastructure today focuses heavily on:

  • observability
  • tracing
  • replay systems
  • prompt analytics

These tools answer:

```txt id="9jlwm4"
“What happened?”




Runtime governance answers:



```txt id="10jlwm4"
“What should be allowed to continue happening?”

Enter fullscreen mode Exit fullscreen mode

That distinction matters enormously.

Because by the time runaway execution appears inside dashboards:

  • compute may already be burned
  • latency may already have degraded UX
  • retries may already have cascaded

Visibility without intervention eventually becomes incomplete.


Final Thoughts

The current AI ecosystem focuses heavily on:

  • smarter models
  • larger context windows
  • better reasoning
  • more autonomous agents

But long-term production systems will likely depend just as much on:

  • bounded execution
  • runtime governance
  • operational predictability
  • constrained failure behavior

Because eventually:
the challenge is not simply building autonomous workflows.

It is building governable autonomous workflows.