An interactive mindmap component for visualizing hierarchical relationships and branching concepts. Perfect for brainstorming sessions, project planning, concept mapping, and knowledge organization with automatic layout algorithms.

Installation
Schema & Prompt Control
Conversation
Instructions
# Initialize HAX in your projecthax init# Add the componenthax add artifact mindmap
The mindmap component integrates with AI agents through CopilotKit. Users interact with AI agents through natural language, and the agents automatically create structured mindmaps with appropriate layouts.
Setup
import { HAXDetails, useMindmapAction } from "@/hax/artifacts/mindmap";export function BrainstormingSession() {const [artifacts, setArtifacts] = useState([]);// Register mindmap actions for AI agentsuseMindmapAction({addOrUpdateArtifact: (type, data) => {// Handle mindmap updates}});return (<HAXMindmaptitle="Project Planning"nodes={mindmapNodes}connections={mindmapConnections}layoutAlgorithm="layered"/>);}
© 2025 Outshift. All Rights Reserved.
An interactive mindmap component for visualizing hierarchical relationships and branching concepts. Perfect for brainstorming sessions, project planning, concept mapping, and knowledge organization with automatic layout algorithms.

Installation
Schema & Prompt Control
Conversation
Instructions
# Initialize HAX in your projecthax init# Add the componenthax add artifact mindmap
The mindmap component integrates with AI agents through CopilotKit. Users interact with AI agents through natural language, and the agents automatically create structured mindmaps with appropriate layouts.
Setup
import { HAXDetails, useMindmapAction } from "@/hax/artifacts/mindmap";export function BrainstormingSession() {const [artifacts, setArtifacts] = useState([]);// Register mindmap actions for AI agentsuseMindmapAction({addOrUpdateArtifact: (type, data) => {// Handle mindmap updates}});return (<HAXMindmaptitle="Project Planning"nodes={mindmapNodes}connections={mindmapConnections}layoutAlgorithm="layered"/>);}
© 2025 Outshift. All Rights Reserved.