Outshift Logo

Details Dashboard

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.

Preview

Details Dashboard Preview

Installation

Schema & Prompt Control

Conversation

Installation

Instructions

# Initialize HAX in your project
agntcy-hax init

# Add the component
agntcy-hax add artifact details

Usage

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.

Component Setup

Setup

import { HAXDetails, useDetailsAction } from "@/hax/artifacts/details";
export function ProfileDashboard() {
const [artifacts, setArtifacts] = useState([]);
// Register details actions for AI agents
useDetailsAction({
addOrUpdateArtifact: (type, data) => {
// Handle details updates
}
});
return (
<HAXDetails
title="User Profile"
description="Comprehensive user analytics and activity summary"
stats={topLevelStats}
subtitle="Performance Metrics"
substats={detailedMetrics}
table={activityTable}
/>
);
}

© 2025 Outshift. All Rights Reserved.