feat: simplify chat CLI with unified command structure

- Replace `brainy chat-session` subcommands with `brainy chat` options
- Add --list, --search, --history flags to main chat command
- Implement beautiful terminal formatting without external dependencies
- Improve user experience with helpful tips and upgrade hints
This commit is contained in:
David Snelling 2025-08-12 11:49:38 -07:00
parent 48e51204c3
commit 427f98cf6a
5 changed files with 1169 additions and 15 deletions

View file

@ -72,9 +72,8 @@ import {
} from './utils/logger.js'
// Export BrainyChat for conversational AI
import { BrainyChat, ChatOptions } from './chat/brainyChat.js'
import { BrainyChat } from './chat/BrainyChat.js'
export { BrainyChat }
export type { ChatOptions }
// Export Cortex CLI functionality - commented out for core MIT build
// export { Cortex } from './cortex/cortex.js'