// Legacy entry point — delegates to CLI // When invoked directly, behaves like 'flynn tui' import { createProgram } from './cli/index.js'; const program = createProgram(); const args = ['node', 'flynn', 'tui', ...process.argv.slice(2)]; program.parse(args);