From 85faa3eab08171c815673cbbe72f177264abf519 Mon Sep 17 00:00:00 2001 From: gavrielc Date: Tue, 21 Apr 2026 23:49:28 +0300 Subject: [PATCH] fix(setup): rephrase display-name prompt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit "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) --- setup/auto.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/auto.ts b/setup/auto.ts index 9a37a45..dbe8733 100644 --- a/setup/auto.ts +++ b/setup/auto.ts @@ -122,7 +122,7 @@ async function askDisplayName(fallback: string): Promise { 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 {