From 52d1c903aea318782a4bae499badafaaa8872a5b Mon Sep 17 00:00:00 2001 From: Luca Martial Date: Tue, 12 May 2026 17:17:18 -0700 Subject: [PATCH] fix(cli): remove redundant path resolution hints from project setup The placeholder text and confirmation step already communicate path formats clearly; the standalone hints added visual noise. Co-Authored-By: Claude Opus 4.6 (1M context) --- packages/cli/src/setup-project.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/packages/cli/src/setup-project.ts b/packages/cli/src/setup-project.ts index 4d18861c..18512b03 100644 --- a/packages/cli/src/setup-project.ts +++ b/packages/cli/src/setup-project.ts @@ -204,8 +204,6 @@ async function promptForNewProjectDir( const defaultProjectDir = join(projectDir, DEFAULT_NEW_PROJECT_FOLDER_NAME); while (true) { - io.stdout.write(`│ Relative paths are resolved from:\n│ ${projectDir}\n`); - io.stdout.write(`│ Home paths are resolved from:\n│ ${homeDir}\n`); const destinationChoice = await prompts.select({ message: 'Where should KTX create the project?', options: [ @@ -376,8 +374,6 @@ export async function runKtxSetupProjectStep( } if (choice === 'new-custom') { - io.stdout.write(`│ Relative paths are resolved from:\n│ ${projectDir}\n`); - io.stdout.write(`│ Home paths are resolved from:\n│ ${homeDir}\n`); const rawPath = await prompts.text({ message: withTextInputNavigation('Project folder path'), placeholder: './analytics-ktx, ~/analytics-ktx, or /Users/you/projects/analytics-ktx',