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

Installation
Schema & Prompt Control
Conversation
Instructions
# Initialize HAX in your projecthax init# Add the componenthax add artifact timeline
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.
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}/>);}
© 2025 Outshift. All Rights Reserved.
A chronological activity tracker with status indicators and AI agent integration. Perfect for project tracking, process workflows, and real-time status updates.

Installation
Schema & Prompt Control
Conversation
Instructions
# Initialize HAX in your projecthax init# Add the componenthax add artifact timeline
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.
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}/>);}
© 2025 Outshift. All Rights Reserved.