xtrm-tools 0.5.2 → 0.5.3

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.
@@ -41313,7 +41313,8 @@ async function launchWorktreeSession(opts) {
41313
41313
  \u2713 Worktree ready \u2014 launching ${runtime}...
41314
41314
  `));
41315
41315
  const runtimeCmd = runtime === "claude" ? "claude" : "pi";
41316
- const launchResult = (0, import_node_child_process2.spawnSync)(runtimeCmd, [], {
41316
+ const runtimeArgs = runtime === "claude" ? ["--dangerously-skip-permissions"] : [];
41317
+ const launchResult = (0, import_node_child_process2.spawnSync)(runtimeCmd, runtimeArgs, {
41317
41318
  cwd: worktreePath,
41318
41319
  stdio: "inherit"
41319
41320
  });