fix(config): correct Claude prompt prefix from > to ❯ (#765)

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
This commit is contained in:
Daniel Sauer
2026-01-20 22:10:05 +01:00
committed by GitHub
parent e59955a580
commit 55a3b9858a

View File

@@ -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 ""
}