AgentActivityFeed
stableChronological feed of agent actions, tool calls, decisions, and state transitions. Each entry carries type, actor, description, and relative timestamp.
import { AgentActivityFeed } from "@nodus/design-system/patterns"Loading demo…
Props
| Prop | Type | Default | Description |
|---|---|---|---|
entriesreq | ActivityEntry[] | — | Chronological list of activity entries. |
maxEntries | number | — | Max visible entries before scroll (default: unlimited). |
showActor | boolean | — | Show actor name per entry (default: true). |
compact | boolean | — | Reduce vertical density. |
entriesrequiredType
ActivityEntry[]Default —Chronological list of activity entries.
maxEntriesType
numberDefault —Max visible entries before scroll (default: unlimited).
showActorType
booleanDefault —Show actor name per entry (default: true).
compactType
booleanDefault —Reduce vertical density.
Design Rationale
This component was designed to express:
Explore Related
AgentTimeline→
Chronological log of agent actions with status filtering
AuditTrail→
Immutable action log with integrity hash chain
ThinkingState→
In-progress LLM reasoning indicator with temporal pulse, elapsed timer, and optional chain-of-thought trace
MultiAgentOrchestrationView→
Pipeline view of a multi-agent workflow. Shows each agent step with status (queued/active/done/failed/blocked/skipped), duration, and dependency connectors.
Was this helpful?