From 375fd1308489d68040f24cc07531e27a253e2870 Mon Sep 17 00:00:00 2001 From: Alex Bespoyasov Date: Thu, 20 Aug 2026 10:17:46 +0200 Subject: [PATCH] fix: make reporting lines more concise --- src/lib/onboarding-prompt/steps/summary.md | 8 ++++---- .../tui/screens/onboard-project/useOnboardingProcess.ts | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/lib/onboarding-prompt/steps/summary.md b/src/lib/onboarding-prompt/steps/summary.md index ac16d3b..1d0f2c0 100644 --- a/src/lib/onboarding-prompt/steps/summary.md +++ b/src/lib/onboarding-prompt/steps/summary.md @@ -5,8 +5,8 @@ Print "STATUS: Integration complete!" Print a short summary: framework, client, what was set up and their purpose, and the report file path. Then list every change on its own line using exactly one of these prefixes: -- "Created " for new functionality or files -- "Modified " for changed functionality or files -- "Added " for installed packages or new capabilities +- "Created " for new functionality or files +- "Modified " for changed functionality or files +- "Added " for installed packages or new capabilities -No bullets, no markdown — just the prefix and the value, one per line. Omit mentioning the CONFIDENCE_QUICKSTART.md file, it will be handled by the CLI tool itself. +Keep each description to a few words — e.g. "Added @spotify-confidence/sdk", "Modified app/routes/home.tsx — flag evaluation loader", "Created welcome-subtitle flag". Include file names when they fit, but never repeat what the prefix already says. No bullets, no markdown — one change per line. Omit mentioning the CONFIDENCE_QUICKSTART.md file, it will be handled by the CLI tool itself. diff --git a/src/ui/tui/screens/onboard-project/useOnboardingProcess.ts b/src/ui/tui/screens/onboard-project/useOnboardingProcess.ts index 69a41cf..eab9320 100644 --- a/src/ui/tui/screens/onboard-project/useOnboardingProcess.ts +++ b/src/ui/tui/screens/onboard-project/useOnboardingProcess.ts @@ -267,12 +267,12 @@ function buildDryRunSteps( function dryRunCodeChanges(goal: OnboardingGoal): string[] { const flagChanges = [ - 'Added @spotify-confidence/sdk dependency', - 'Created confidence.config.ts', - 'Added feature flag example', + 'Added @spotify-confidence/sdk', + 'Created confidence.config.ts — SDK configuration', + 'Created feature flag example', ]; const recordingChanges = [ - 'Added @spotify-confidence/session-recording dependency', + 'Added @spotify-confidence/session-recording', 'Added session recording provider', ];