An enhanced chat interface system that transforms traditional text conversations into structured, command-driven interactions. Enables precise agent delegation, context management, and tool execution through intuitive command syntax (@, +, /).

Installation
Integration & Configuration
Instructions
# Initialize HAX in your projecthax init# Add the composer systemhax add composer chat-commands
The chat commands system enhances existing chat interfaces with structured command processing and intelligent suggestions.
Setup
import { CommandRegistryProvider, useChatCommands, CommandSuggestions, CommandHints } from "@/hax/composer/chat-commands";export function EnhancedChat() {const { commandType, showSuggestions, detectCommand } = useChatCommands();return (<CommandRegistryProvider><div className="chat-interface"><CommandHints showSuggestions={showSuggestions} /><textareaonChange={(e) => detectCommand(e.target.value, e.target.selectionStart)}/><CommandSuggestionsshowSuggestions={showSuggestions}commandType={commandType}/></div></CommandRegistryProvider>);}
© 2025 Outshift. All Rights Reserved.
An enhanced chat interface system that transforms traditional text conversations into structured, command-driven interactions. Enables precise agent delegation, context management, and tool execution through intuitive command syntax (@, +, /).

Installation
Integration & Configuration
Instructions
# Initialize HAX in your projecthax init# Add the composer systemhax add composer chat-commands
The chat commands system enhances existing chat interfaces with structured command processing and intelligent suggestions.
Setup
import { CommandRegistryProvider, useChatCommands, CommandSuggestions, CommandHints } from "@/hax/composer/chat-commands";export function EnhancedChat() {const { commandType, showSuggestions, detectCommand } = useChatCommands();return (<CommandRegistryProvider><div className="chat-interface"><CommandHints showSuggestions={showSuggestions} /><textareaonChange={(e) => detectCommand(e.target.value, e.target.selectionStart)}/><CommandSuggestionsshowSuggestions={showSuggestions}commandType={commandType}/></div></CommandRegistryProvider>);}
© 2025 Outshift. All Rights Reserved.