taskplane 0.24.18 → 0.24.19
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.
|
@@ -753,6 +753,7 @@ function extractAllowlistedPreferences(raw: Record<string, any>, prefsPath: stri
|
|
|
753
753
|
if (typeof raw.workerModel === "string") prefs.workerModel = raw.workerModel;
|
|
754
754
|
if (typeof raw.reviewerModel === "string") prefs.reviewerModel = raw.reviewerModel;
|
|
755
755
|
if (typeof raw.mergeModel === "string") prefs.mergeModel = raw.mergeModel;
|
|
756
|
+
if (typeof raw.mergeThinking === "string") prefs.mergeThinking = raw.mergeThinking;
|
|
756
757
|
if (typeof raw.supervisorModel === "string") prefs.supervisorModel = raw.supervisorModel;
|
|
757
758
|
if (typeof raw.dashboardPort === "number" && Number.isFinite(raw.dashboardPort)) {
|
|
758
759
|
prefs.dashboardPort = raw.dashboardPort;
|
|
@@ -794,6 +795,7 @@ export function applyUserPreferences(config: TaskplaneConfig, prefs: UserPrefere
|
|
|
794
795
|
applyStr(prefs.workerModel, (v) => { config.taskRunner.worker.model = v; });
|
|
795
796
|
applyStr(prefs.reviewerModel, (v) => { config.taskRunner.reviewer.model = v; });
|
|
796
797
|
applyStr(prefs.mergeModel, (v) => { config.orchestrator.merge.model = v; });
|
|
798
|
+
applyStr(prefs.mergeThinking, (v) => { config.orchestrator.merge.thinking = v; });
|
|
797
799
|
applyStr(prefs.supervisorModel, (v) => { config.orchestrator.supervisor.model = v; });
|
|
798
800
|
|
|
799
801
|
// spawnMode: enum — apply if defined (not a string-empty check)
|
|
@@ -521,6 +521,8 @@ export interface UserPreferences {
|
|
|
521
521
|
reviewerModel?: string;
|
|
522
522
|
/** Merge model override (overrides orchestrator.merge.model) */
|
|
523
523
|
mergeModel?: string;
|
|
524
|
+
/** Merge thinking override (overrides orchestrator.merge.thinking) */
|
|
525
|
+
mergeThinking?: string;
|
|
524
526
|
/** Supervisor model override (overrides orchestrator.supervisor.model) (TP-041) */
|
|
525
527
|
supervisorModel?: string;
|
|
526
528
|
/** Dashboard port (preferences-only; not yet wired into config schema) */
|