Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/lib/onboarding-prompt/steps/summary.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <description>" for new functionality or files
- "Modified <description>" for changed functionality or files
- "Added <description>" for installed packages or new capabilities
- "Created <short description>" for new functionality or files
- "Modified <short description>" for changed functionality or files
- "Added <short description>" for installed packages or new capabilities

No bullets, no markdownjust 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.tsxflag 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.
8 changes: 4 additions & 4 deletions src/ui/tui/screens/onboard-project/useOnboardingProcess.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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',
];

Expand Down