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.
This commit is contained in:
Mårten Angner 2026-02-24 11:40:30 +01:00
parent eb879eb574
commit bbd6f4656a
1 changed files with 2 additions and 3 deletions

View File

@ -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) {