Timeline
A chronological activity tracker with status indicators and AI agent integration. Perfect for project tracking, process workflows, and real-time status updates.
Preview

Installation
Schema & Prompt Control
Conversation
Installation
Instructions
# Initialize HAX in your project agntcy-hax init # Add the component agntcy-hax add artifact timeline
Usage
The timeline component integrates with AI agents through CopilotKit. Users interact with AI agents through natural language, and the agents automatically create and update timeline activities with appropriate status indicators.
Component Setup
Setup
import { HAXTimeline, useTimelineAction } from "@/hax/artifacts/timeline";export function ProjectTracker() {const [artifacts, setArtifacts] = useState([]);// Register timeline actions for AI agentsuseTimelineAction({addOrUpdateArtifact: (type, data) => {// Handle timeline updates}});return (<HAXTimelinetitle="Project Activity"items={timelineActivities}/>);}
Timeline
A chronological activity tracker with status indicators and AI agent integration. Perfect for project tracking, process workflows, and real-time status updates.
Preview

Installation
Schema & Prompt Control
Conversation
Installation
Instructions
# Initialize HAX in your project agntcy-hax init # Add the component agntcy-hax add artifact timeline
Usage
The timeline component integrates with AI agents through CopilotKit. Users interact with AI agents through natural language, and the agents automatically create and update timeline activities with appropriate status indicators.
Component Setup
Setup
import { HAXTimeline, useTimelineAction } from "@/hax/artifacts/timeline";export function ProjectTracker() {const [artifacts, setArtifacts] = useState([]);// Register timeline actions for AI agentsuseTimelineAction({addOrUpdateArtifact: (type, data) => {// Handle timeline updates}});return (<HAXTimelinetitle="Project Activity"items={timelineActivities}/>);}