AgentRecoveryFlow
stableRecovery breadcrumb timeline showing every step an agent attempted after hitting a dead end
import { AgentRecoveryFlow } from "@nodus/design-system/patterns"Loading demo…
Props
| Prop | Type | Default | Description |
|---|---|---|---|
agentreq | string | — | Agent that owns the recovery flow. |
originalGoalreq | string | — | What the agent was trying to accomplish. |
stepsreq | RecoveryStep[] | — | Ordered recovery steps with status. |
overallStatusreq | 'in_progress' | 'resolved' | 'abandoned' | 'escalated' | — | Top-level accent color and status label. |
onOverride | () => void | — | Called on MANUAL OVERRIDE click. |
onDismiss | () => void | — | Called on DISMISS click. |
agentrequiredType
stringDefault —Agent that owns the recovery flow.
originalGoalrequiredType
stringDefault —What the agent was trying to accomplish.
stepsrequiredType
RecoveryStep[]Default —Ordered recovery steps with status.
overallStatusrequiredType
'in_progress' | 'resolved' | 'abandoned' | 'escalated'Default —Top-level accent color and status label.
onOverrideType
() => voidDefault —Called on MANUAL OVERRIDE click.
onDismissType
() => voidDefault —Called on DISMISS click.
Design Rationale
This component was designed to express:
Explore Related
Was this helpful?