Skip to content

Commit 109e7bf

Browse files
committed
fix: clearer prompt separation
1 parent 4ddc0e9 commit 109e7bf

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/assistant-kickoff/kickoff-assistant.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,10 @@ export const kickoffAssistant = async ({
2828

2929
logger.userSuccess('Project setup complete!');
3030
logger.userInfo('Initial prompt:');
31-
logger.userInfo(`"${prompt}"`);
32-
logger.userInfo(`Project location: ${projectPath}`);
31+
logger.userInfo('--------------------------------');
32+
logger.userInfo(`${prompt}`);
33+
logger.userInfo('--------------------------------');
34+
logger.userInfo(`Go to the project directory:\n\n cd ${projectPath}\n`);
3335

3436
// Let the provider handle its own launch behavior
3537
await provider.launch({ projectPath, prompt });

0 commit comments

Comments
 (0)