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) <noreply@anthropic.com>
This commit is contained in:
Luca Martial 2026-05-12 17:17:18 -07:00
parent e7dbf91b96
commit 52d1c903ae

View file

@ -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',