import type { Command } from 'commander'; export function registerSessionsCommand(program: Command): void { program .command('sessions') .description('List active sessions') .option('-c, --config ', 'Config file path') .action(async (_opts: { config?: string }) => { console.error('Not yet implemented'); process.exit(1); }); }