import type { Command } from 'commander'; export function registerDoctorCommand(program: Command): void { program .command('doctor') .description('Validate configuration and check system health') .option('-c, --config ', 'Config file path') .action(async (_opts: { config?: string }) => { console.error('Not yet implemented'); process.exit(1); }); }