taskplane 0.22.14 → 0.22.15
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.
|
@@ -588,6 +588,11 @@ export function buildTmuxSpawnArgs(
|
|
|
588
588
|
"--exit-summary-path", shellQuote(exitSummaryPath),
|
|
589
589
|
"--prompt-file", shellQuote(promptTmpFile),
|
|
590
590
|
"--extensions", shellQuote(taskRunnerExtPath),
|
|
591
|
+
// Prevent pi from auto-discovering extensions from the worktree CWD.
|
|
592
|
+
// Without this, pi loads BOTH the explicit -e extension AND any
|
|
593
|
+
// extensions/ in the worktree, causing duplicate tool registration
|
|
594
|
+
// and unpredictable behavior (two copies of task-runner compete).
|
|
595
|
+
"--", "--no-extensions",
|
|
591
596
|
].filter(Boolean).join(" ");
|
|
592
597
|
} else {
|
|
593
598
|
// ── Legacy mode: direct pi spawn (no telemetry) ─────────
|