A comprehensive information display component for presenting detailed data about entities, topics, or processes. Perfect for dashboards, profile pages, report summaries, and data deep-dives with statistics, tables, and hierarchical information.

Installation
Schema & Prompt Control
Conversation
Instructions
# Initialize HAX in your projecthax init# Add the componenthax add artifact details
The details component integrates with AI agents through CopilotKit. Users interact with AI agents through natural language, and the agents automatically create comprehensive information displays.
Setup
import { HAXDetails, useDetailsAction } from "@/hax/artifacts/details";export function ProfileDashboard() {const [artifacts, setArtifacts] = useState([]);// Register details actions for AI agentsuseDetailsAction({addOrUpdateArtifact: (type, data) => {// Handle details updates}});return (<HAXDetailstitle="User Profile"description="Comprehensive user analytics and activity summary"stats={topLevelStats}subtitle="Performance Metrics"substats={detailedMetrics}table={activityTable}/>);}
© 2025 Outshift. All Rights Reserved.
A comprehensive information display component for presenting detailed data about entities, topics, or processes. Perfect for dashboards, profile pages, report summaries, and data deep-dives with statistics, tables, and hierarchical information.

Installation
Schema & Prompt Control
Conversation
Instructions
# Initialize HAX in your projecthax init# Add the componenthax add artifact details
The details component integrates with AI agents through CopilotKit. Users interact with AI agents through natural language, and the agents automatically create comprehensive information displays.
Setup
import { HAXDetails, useDetailsAction } from "@/hax/artifacts/details";export function ProfileDashboard() {const [artifacts, setArtifacts] = useState([]);// Register details actions for AI agentsuseDetailsAction({addOrUpdateArtifact: (type, data) => {// Handle details updates}});return (<HAXDetailstitle="User Profile"description="Comprehensive user analytics and activity summary"stats={topLevelStats}subtitle="Performance Metrics"substats={detailedMetrics}table={activityTable}/>);}
© 2025 Outshift. All Rights Reserved.