From 2f07264ee4bcfb5423937dc9870efa2f7941b416 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5rten=20Angner?= Date: Tue, 24 Feb 2026 11:36:00 +0100 Subject: [PATCH] Further simplify installation instructions More conversational and explicit: - 'Get Started with Your Product Brief' (goal-oriented) - 'Locate the chat window in your IDE' (explicit location) - 'type:' instead of 'paste this command:' (simpler action) - Command in quotes to make it clear it's text to type - Better line breaks for readability --- tools/cli/lib/ui.js | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/tools/cli/lib/ui.js b/tools/cli/lib/ui.js index 2a3d41359..ca52112a9 100644 --- a/tools/cli/lib/ui.js +++ b/tools/cli/lib/ui.js @@ -75,15 +75,16 @@ class UI { console.log(''); console.log(chalk.green.bold(' ✨ Installation complete!')); console.log(''); - console.log(chalk.white.bold(' Next: Start the Product Brief')); + console.log(chalk.white.bold(' Get Started with Your Product Brief')); console.log(''); console.log(chalk.white(' 1. Open this folder in Windsurf or VS Code')); - console.log(chalk.white(' 2. Open the AI chat and paste this command:')); console.log(''); - console.log(chalk.cyan(` Read and activate ${wdsFolder}/agents/saga-analyst.md`)); + console.log(chalk.white(' 2. Locate the chat window in your IDE and type:')); console.log(''); - console.log(chalk.white(` 3. Saga (your AI analyst) will greet you by name`)); - console.log(chalk.dim(` and guide you through creating your Product Brief`)); + console.log(chalk.cyan(` "Read and activate ${wdsFolder}/agents/saga-analyst.md"`)); + console.log(''); + console.log(chalk.white(` 3. Saga (your AI analyst) will greet you by name and`)); + console.log(chalk.white(` guide you through creating your Product Brief`)); console.log(''); console.log(chalk.dim(' ─────────────────────────────────────────────────')); console.log('');