Install Argus
Install the forensic observer.
$ pip install argus-agentsARGUS catches silent failures and traces root causes before you deploy — so broken pipelines never reach production.
Install · Instrument · Observe · Debug
Install the forensic observer.
$ pip install argus-agentsWrap your graph with the watcher harness.
from argus import ArgusWatcher
watcher = ArgusWatcher()
watcher.watch(graph)
app = graph.compile()
app.invoke(initial_state)
watcher.finalize()Authenticate your workspace.
$ argus loginLaunch the replay dashboard.
$ argus uiARGUS watches every step of your agent pipeline during development and testing,
catching silent failures before they ever reach production.
Data extracted successfully
Entities enriched and structured
Silent failure:
placeholder returned
ARGUS detected this failure before it degraded downstream nodes
ARGUS detected this before it degraded downstream
Degradation detected in downstream step
Output at risk
Re-run from any step. ARGUS reuses everything that's already correct — so you only pay for what changed.
{
"summary": "...",
"key_points": [],
"entities": [],
"confidence": 0.42,
"note": "placeholder text"
}{
"summary": "AI regulation is evolving rapidly, with focus on safety and transparency.",
"key_points": ["safety", "transparency"],
"entities": ["AI regulation"],
"confidence": 0.93
}States & outputs from completed steps
Only steps after the selected point
Detect failures, trace root causes, and fix your pipeline —
all before a single user is affected.
Catches issues that look successful but are actually wrong.
Traces degradation back to the exact step that caused it.
Understands meaning, not just errors.
Re-run, compare, and verify every change.
A node technically “succeeds” but returns degraded state — empty arrays, placeholder text, collapsed confidence scores, hallucinated tool outputs — that quietly poisons every downstream step.