Agent run
- Indexed 128 files across 6 packages.
Agent Timeline
tsx
import { AgentTimeline, AgentStep } from "@/components/godui/agent-timeline";export function AgentTimelineDemo() {return ( <AgentTimeline> <AgentStep status="success" title="Read the repository" meta="0.4s"> Indexed 128 files across 6 packages. </AgentStep> <AgentStep status="running" title="Editing auth-middleware.ts" defaultOpen> Changed the expiry check from < to <=. </AgentStep> <AgentStep status="pending" title="Run the test suite" last /> </AgentTimeline>);}