run-refactored-strategy.ts 414 B

1234567891011121314
  1. #!/usr/bin/env tsx
  2. /**
  3. * Legacy entry point preserved for compatibility.
  4. * The refactored strategy is now handled by the modular orchestrator.
  5. * Delegates execution to scripts/run-modular-strategy.ts.
  6. */
  7. import { main as runModularStrategy } from './run-modular-strategy';
  8. runModularStrategy().catch((error) => {
  9. console.error('Fatal error while running modular strategy:', error);
  10. process.exit(1);
  11. });