feat(FN-3716): add planning mode priority controls for task routes and subt

Adds per-subtask priority controls to planning mode with three implementation steps (route priority support, UI controls, and design-token polish), gates research tools behind an experimental feature flag with a new core infrastructure module, and introduces a WhatsApp chat plugin with discovery and

Fusion-Task-Id: FN-3716
This commit is contained in:
Fusion
2026-05-07 15:58:52 -07:00
committed by gsxdsm
parent aaaebdcb0d
commit c6d12ba5af
14 changed files with 614 additions and 192 deletions

View File

@@ -2657,6 +2657,7 @@ export interface SubtaskItem {
title: string;
description: string;
suggestedSize: "S" | "M" | "L";
priority?: TaskPriority;
dependsOn: string[];
}
@@ -2928,6 +2929,7 @@ export function createTasksFromPlanning(
title: string;
description: string;
suggestedSize: "S" | "M" | "L";
priority?: TaskPriority;
dependsOn: string[];
}>,
projectId?: string,