@respan/cli 0.6.5 → 0.6.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -966,5 +966,6 @@ function main() {
966
966
  } catch (e) {
967
967
  log("ERROR", `Failed to fork worker: ${e}`);
968
968
  }
969
+ process.exit(0);
969
970
  }
970
971
  main();
@@ -653,5 +653,7 @@ function main() {
653
653
  catch (e) {
654
654
  log('ERROR', `Failed to fork worker: ${e}`);
655
655
  }
656
+ // Exit immediately so Claude Code doesn't block
657
+ process.exit(0);
656
658
  }
657
659
  main();