fix(setup): rephrase display-name prompt

"Your agents" — the name is stored on the operator's user row and
applies to every future agent they wire up, not just this scratch CLI
one.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
gavrielc
2026-04-21 23:49:28 +03:00
parent d02001e144
commit 85faa3eab0

View File

@@ -122,7 +122,7 @@ async function askDisplayName(fallback: string): Promise<string> {
const rl = createInterface({ input: process.stdin, output: process.stdout });
try {
const answer = await rl.question(
`\nWhat should the agent call you? [${fallback}]: `,
`\nWhat should your agents call you? [${fallback}]: `,
);
return answer.trim() || fallback;
} finally {