AgentDecisionTree
stableVertical branching logic tree. Each node shows condition evaluated, agent verdict, and whether that branch was taken. Terminal nodes show final outcome.
import { AgentDecisionTree } from "@nodus/design-system/patterns"Props
| Prop | Type | Default | Description |
|---|---|---|---|
nodesreq | DecisionNode[] | — | Decision tree nodes with condition, verdict, status, and children. |
showSkipped | boolean | — | Render skipped branches (dimmed). Default: true. |
compact | boolean | — | Reduce node padding and font size. |
nodesrequiredDecisionNode[]Default —Decision tree nodes with condition, verdict, status, and children.
showSkippedbooleanDefault —Render skipped branches (dimmed). Default: true.
compactbooleanDefault —Reduce node padding and font size.
This component was designed to express:
Explore Related
Collapsible tree of reasoning steps with depth indicators
Linked chain of data sources showing transformation provenance
Chronological feed of agent actions, tool calls, decisions, and state transitions. Each entry carries type, actor, description, and relative timestamp.
Multi-dimensional certainty visualization. Shows uncertainty fingerprint across epistemic, aleatory, temporal, and consensus dimensions. Distinct from ConfidenceMeter (single-axis).