UNPKG

blue-beatle

Version:

🤖 AI-Powered Development Assistant - Intelligent code analysis, problem solving, and terminal automation using Gemini API

21 lines (17 loc) 547 B
#!/usr/bin/env node /** * 🤖 Blue Beatle - AI-Powered Development Assistant * Entry point for the CLI application */ const path = require('path'); const { spawn } = require('child_process'); // Add the src directory to the module path const srcPath = path.join(__dirname, '..', 'src'); require('module').globalPaths.push(srcPath); // Import and run the main application try { require('../src/index.js'); } catch (error) { console.error('❌ Failed to start Blue Beatle:', error.message); process.exit(1); }