From bbd6f4656a2b4f7e893c566490770318157dbb9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5rten=20Angner?= Date: Tue, 24 Feb 2026 11:40:30 +0100 Subject: [PATCH] Fix folder structure: Remove D-UX-Design, move Design System to D User feedback: UX design happens IN the scenarios (C), not as separate phase. Old (incorrect): - A-Product-Brief - B-Trigger-Map - C-UX-Scenarios - D-UX-Design (redundant!) - E-Design-System New (correct): - A-Product-Brief - B-Trigger-Map - C-UX-Scenarios (UX design is done here) - D-Design-System 4 phases instead of 5 - cleaner and more accurate. --- tools/cli/lib/installer.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tools/cli/lib/installer.js b/tools/cli/lib/installer.js index 5f1c77233..5a5e73439 100644 --- a/tools/cli/lib/installer.js +++ b/tools/cli/lib/installer.js @@ -235,13 +235,12 @@ class Installer { async createDocsFolders(projectDir, rootFolder, config) { const docsPath = path.join(projectDir, rootFolder); - // Simplified 5-phase structure + // Simplified 4-phase structure const folders = [ 'A-Product-Brief', 'B-Trigger-Map', 'C-UX-Scenarios', - 'D-UX-Design', - 'E-Design-System', + 'D-Design-System', ]; for (const folder of folders) {