From 2a9d4f08fadffc833328756104967188b77e67b6 Mon Sep 17 00:00:00 2001 From: Hardik Date: Thu, 11 Jun 2026 16:50:02 +0530 Subject: [PATCH] fix(automation): ASCII log prefix to avoid console encoding garble Co-Authored-By: Claude Fable 5 --- automation/claude-issue-watcher.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automation/claude-issue-watcher.ps1 b/automation/claude-issue-watcher.ps1 index 7ab0e45..b95293b 100644 --- a/automation/claude-issue-watcher.ps1 +++ b/automation/claude-issue-watcher.ps1 @@ -110,7 +110,7 @@ if (-not (Test-Path (Join-Path $cfg.workDir '.git'))) { foreach ($issue in $queued) { $n = $issue.number $branch = "$($cfg.branchPrefix)$n" - Log "── Working issue #${n}: $($issue.title)" + Log "-- Working issue #${n}: $($issue.title)" Set-IssueLabels $n -Remove @('claude-queue', 'claude-failed') -Add @('claude-working') Add-IssueComment $n "🤖 Claude has started working on this issue on branch ``$branch``."