From 5bdb03572b716e814f32c9a6e5b162c908b8de9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5rten=20Angner?= Date: Tue, 24 Feb 2026 11:27:56 +0100 Subject: [PATCH] Clarify installer question: pitch deck vs Product Brief MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Change vague 'Where are you starting?' to clear yes/no question - Fix typos: 'pich' → 'pitch', 'prief' → 'brief' - Clearer choice labels for better UX --- tools/cli/lib/ui.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/cli/lib/ui.js b/tools/cli/lib/ui.js index 1898a1412..474d39052 100644 --- a/tools/cli/lib/ui.js +++ b/tools/cli/lib/ui.js @@ -45,10 +45,10 @@ class UI { { type: 'list', name: 'starting_point', - message: 'Where are you starting?', + message: 'Do you need to create a pitch deck & project contract before starting the project?', choices: [ - { name: 'Go straight to Product Brief (I have approval)', value: 'brief' }, - { name: 'Create pitch deck and project contract first', value: 'pitch' }, + { name: 'No, start directly with the Product Brief', value: 'brief' }, + { name: 'Yes, start with a project pitch', value: 'pitch' }, ], default: 'brief', },