#!/usr/bin/env bun /** * Mipham Code — Bun-native entry point for compiled binary. * Used by `bun build --compile` to produce standalone executables. */ export {} // ensure module scope (prevents global name collisions) import { DAEMON_ENTRY, userArgs } from '../src/daemon/launch' async function runWorkflowCLI(): Promise { const args = process.argv.slice(2) if (args[0] !== 'workflow') return false const { Command } = await import('commander') const program = new Command() program.name('mipham workflow').description('Workflow orchestration commands') program .command('run