A powerful rule management system that allows users to create, configure, and apply behavioral rules that govern how AI agents respond in different scenarios. Provides persistent rule storage, import/export capabilities, and seamless integration with chat conversations.

Installation
Integration & Configuration
Instructions
# Initialize HAX in your projecthax init# Add the rules contexthax add composer rules-context
The rules context system provides a management interface and context integration for behavioral rules.
Setup
import { RulesProvider, useRules, RulesModal } from "@/hax/composer/rules-context";export function ChatWithRules() {const [showRulesModal, setShowRulesModal] = useState(false);return (<RulesProvider><div className="chat-interface"><button onClick={() => setShowRulesModal(true)}>Manage Rules</button><RulesModalopen={showRulesModal}onOpenChange={setShowRulesModal}/>{/* Chat interface */}</div></RulesProvider>);}
© 2025 Outshift. All Rights Reserved.
A powerful rule management system that allows users to create, configure, and apply behavioral rules that govern how AI agents respond in different scenarios. Provides persistent rule storage, import/export capabilities, and seamless integration with chat conversations.

Installation
Integration & Configuration
Instructions
# Initialize HAX in your projecthax init# Add the rules contexthax add composer rules-context
The rules context system provides a management interface and context integration for behavioral rules.
Setup
import { RulesProvider, useRules, RulesModal } from "@/hax/composer/rules-context";export function ChatWithRules() {const [showRulesModal, setShowRulesModal] = useState(false);return (<RulesProvider><div className="chat-interface"><button onClick={() => setShowRulesModal(true)}>Manage Rules</button><RulesModalopen={showRulesModal}onOpenChange={setShowRulesModal}/>{/* Chat interface */}</div></RulesProvider>);}
© 2025 Outshift. All Rights Reserved.