UNPKG

@tabbybyte/minion

Version:

A cross-runtime CLI tool for AI-powered command execution. Auto-detects and uses Bun for performance when available, falls back to Node.js.

18 lines (13 loc) 347 B
#!/usr/bin/env node import { bootstrap } from "../lib/bootstrap.js" import { runCLI } from "../lib/cli.js" async function main() { // Handle runtime detection and smart launching const shouldContinue = await bootstrap() if (shouldContinue) { // Run the actual CLI application await runCLI() } } // Start the application main()