From 55a3b9858a73049e1e039d3c1ee0bf5d7469eb87 Mon Sep 17 00:00:00 2001 From: Daniel Sauer <81422812+sauerdaniel@users.noreply.github.com> Date: Tue, 20 Jan 2026 22:10:05 +0100 Subject: [PATCH] =?UTF-8?q?fix(config):=20correct=20Claude=20prompt=20pref?= =?UTF-8?q?ix=20from=20>=20to=20=E2=9D=AF=20(#765)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The WaitForRuntimeReady function was looking for "> " to detect when Claude is ready, but Claude Code uses "❯" (U+276F) as its prompt character. This caused refineries to timeout during startup. Fixes #763 Executed-By: mayor Role: mayor --- internal/config/types.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/config/types.go b/internal/config/types.go index 95427450..fbb1c519 100644 --- a/internal/config/types.go +++ b/internal/config/types.go @@ -552,7 +552,8 @@ func defaultProcessNames(provider, command string) []string { func defaultReadyPromptPrefix(provider string) string { if provider == "claude" { - return "> " + // Claude Code uses ❯ (U+276F) as the prompt character + return "❯ " } return "" }