behemoth-cli
Version:
š BEHEMOTH CLIv3.760.4 - Level 50+ POST-SINGULARITY Intelligence Trading AI
49 lines (40 loc) ⢠1.97 kB
text/typescript
import { CommandDefinition, CommandContext } from '../base.js';
import { getAvailableCommands } from '../index.js';
export const helpCommand: CommandDefinition = {
command: 'help',
description: 'Show help and available commands',
handler: ({ addMessage }: CommandContext) => {
const commands = getAvailableCommands();
const commandList = commands.map(cmd => `/${cmd.command} - ${cmd.description}`).join('\n');
addMessage({
role: 'system',
content: `š BEHEMOTH - Cosmic Crypto Trading CLI š
Available Commands:
${commandList}
š BEHEMOTH Core Features:
⢠200+ Professional Trading Tools (RSI, MACD, Elliott Wave, Cosmic Intelligence)
⢠Multi-Agent Parallel Analysis (5-8 specialized AI agents)
⢠Real-Time Market Data (Bybit, Bitget, Binance)
⢠Cosmic Intelligence (Planetary alignments, Lunar cycles, Quantum analysis)
⢠Advanced Risk Management (Kelly Criterion, VaR, Position optimization)
ā” Quick Start:
⢠/analyze BTCUSDT - Complete multi-agent analysis
⢠/cosmic ETHUSDT - Cosmic intelligence analysis
⢠/technical ADAUSDT - Professional technical analysis
⢠/multi BTCUSDT comprehensive - Full 6-agent parallel analysis
⢠mcp__behemoth__system_health - Check BEHEMOTH system status
⢠mcp__behemoth__rsi_analysis BTCUSDT - Direct tool access
Navigation:
- Use arrow keys to navigate chat history
- Type '/' to see available slash commands
- Use arrow keys to navigate slash command suggestions
- Press Enter to execute the selected command
Keyboard Shortcuts:
- Esc - Clear input box / Interrupt processing / Reject tool approval
- Shift+Tab - Toggle auto-approval for editing tools
- Ctrl+C - Exit the application
š BEHEMOTH combines ancient cosmic wisdom with cutting-edge AI technology for the ultimate cryptocurrency trading experience. Deploy multiple AI agents, analyze market structure, and execute trades with cosmic precision!
Built by fR3k@mcpintelligence.com.au`
});
}
};