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

推荐订阅源

J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
B
Blog RSS Feed
C
Check Point Blog
D
Docker
Y
Y Combinator Blog
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
MongoDB | Blog
MongoDB | Blog
博客园_首页
Apple Machine Learning Research
Apple Machine Learning Research
量子位
有赞技术团队
有赞技术团队
IT之家
IT之家
大猫的无限游戏
大猫的无限游戏
D
DataBreaches.Net
M
MIT News - Artificial intelligence
B
Blog
阮一峰的网络日志
阮一峰的网络日志
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
腾讯CDC
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
V
V2EX
月光博客
月光博客

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
Step Through Your Agent's Failures Like a Debugger
Mukunda Rao · 2026-05-26 · via DEV Community

Mukunda Rao Katta

The production run failed at step 23 out of 47. The logs show "tool call error" but not why. The conversation history that led to step 23 is not in the logs. Reproducing the failure requires setting up the same initial conditions and running all 23 steps again.

agent-debug-replay is a step-through replay for agents that log their runs with agent-step-log. Load a run's JSONL file, advance step by step, inspect state at each step, and find exactly where things went wrong.


The Shape of the Fix

from agent_debug_replay import DebugReplay

replay = DebugReplay(log_path="./logs/run-a3f8b2c1.jsonl")

print(f"Total steps: {replay.total_steps}")
print(f"Run ID: {replay.run_id}")
print(f"Result: {replay.result}")

# Step through
for step in replay.steps():
    print(f"Step {step.index}: {step.action_type}")
    print(f"  Input: {step.input_summary}")
    print(f"  Output: {step.output_summary}")

    if step.error:
        print(f"  ERROR: {step.error}")
        print(f"  Full context at this step:")
        print(replay.context_at(step.index))
        break

Enter fullscreen mode Exit fullscreen mode

Load the JSONL. Step through. Find the failure. Fix it.


What It Does NOT Do

agent-debug-replay does not re-execute the steps. It replays the recorded state. If you want to re-run from step 23 with a fix, you need to use agent-resume with a checkpoint up to step 22.

It does not visualize. It is a data access API. Build your own visualization on top (a CLI, a notebook, a web UI) using the step data it provides.

It does not diff two runs. For comparison between a failing and a passing run of the same task, load both as separate DebugReplay objects and compare step by step yourself.


Inside the Library

Each step in the JSONL is a structured record from agent-step-log:

{"run_id": "a3f8b2c1", "step": 23, "action": "tool_call", 
 "tool": "web_search", "args": {"query": "..."},
 "result": null, "error": "timeout", "ts": 1748107200,
 "messages_count": 46, "tokens_used": 12847}

Enter fullscreen mode Exit fullscreen mode

DebugReplay reads the file and indexes steps by step number. Navigation:

class DebugReplay:
    def steps(self) -> Iterator[Step]:
        for record in self._records:
            yield Step.from_record(record)

    def step_at(self, n: int) -> Step:
        return self._by_index[n]

    def context_at(self, n: int) -> ReplayContext:
        """Return all state accumulated up to step n."""
        return ReplayContext(
            steps=self._records[:n+1],
            total_tokens=sum(r["tokens_used"] for r in self._records[:n+1]),
            tools_called=[r["tool"] for r in self._records[:n+1] if r.get("tool")],
            errors=[r["error"] for r in self._records[:n+1] if r.get("error")],
        )

    def find_first_error(self) -> Step | None:
        for step in self.steps():
            if step.error:
                return step
        return None

Enter fullscreen mode Exit fullscreen mode

context_at(n) is the key method for debugging: it aggregates all state that existed at step n — total tokens, all tools called, all errors seen. This gives you the full picture at the failure point without scanning the log manually.


When to Use It

Use it whenever a production agent run fails and you need to understand why. The workflow:

  1. Agent runs with agent-step-log recording each step
  2. Run fails
  3. Load the JSONL with DebugReplay
  4. Call find_first_error() to jump to the failure
  5. Call context_at(error_step.index) to see accumulated state
  6. Find the root cause

Without step logging, you are working from timestamp-correlated logs and hope. With it, you have a complete, structured record of every agent action.

Skip it for agents that run for under 5 steps. The overhead of step logging is not worth it for short runs.


Install

pip install git+https://github.com/MukundaKatta/agent-debug-replay

Enter fullscreen mode Exit fullscreen mode

from agent_debug_replay import DebugReplay
import sys

def debug_failed_run(log_path: str) -> None:
    replay = DebugReplay(log_path=log_path)

    first_error = replay.find_first_error()
    if not first_error:
        print("No errors found in this run.")
        return

    print(f"First error at step {first_error.index}")
    print(f"Action: {first_error.action_type}")
    print(f"Error: {first_error.error}")

    ctx = replay.context_at(first_error.index)
    print(f"\nContext at failure:")
    print(f"  Total tokens used: {ctx.total_tokens}")
    print(f"  Tools called: {', '.join(ctx.tools_called)}")
    print(f"  Previous errors: {ctx.errors[:-1]}")  # all errors before this one

    print(f"\nStep before failure:")
    if first_error.index > 0:
        prev = replay.step_at(first_error.index - 1)
        print(f"  {prev.action_type}: {prev.output_summary}")

if __name__ == "__main__":
    debug_failed_run(sys.argv[1])

Enter fullscreen mode Exit fullscreen mode


Sibling Libraries

Library What it solves
agent-step-log Per-step JSONL logging (produces the log that debug-replay reads)
agent-run-id Run IDs for correlating logs to specific runs
agent-resume Resume from a checkpoint after finding and fixing the failure
agenttap Wire-level capture for even more detailed replay
agent-decision-log WHY-layer logs that complement step-level WHAT logs

The debugging workflow: agent-step-log records the run, agent-debug-replay lets you navigate it, agent-resume lets you re-run from a checkpoint after the fix.


What's Next

Notebook integration: a Jupyter widget that renders the step-through as an interactive cell. Click forward/backward through steps and see state update in-place.

Diff replay: given two run logs (one passing, one failing), highlight the divergence point — where the two runs started producing different steps. This is the most common debugging scenario for regressions.

A web UI: a minimal Flask/FastAPI endpoint that serves a step-through UI in the browser. Load the JSONL, browse steps, click into context. This would be significantly more usable than the programmatic API for non-engineering stakeholders.


Built as part of the agent-stack family: composable Python primitives for production LLM agents.