From 2d2510f391963e5ece134c87de8161f6c45344dc Mon Sep 17 00:00:00 2001 From: Godopu Date: Sun, 12 Jul 2026 15:44:01 +0900 Subject: [PATCH] refactor(lib): add robust TUI readiness tokens for cline - Include 'What can I do' and 'slash commands' to grep search pattern - Avoid false-positive timeouts when welcome screen branding logo is skipped --- .agents/skills/lib.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.agents/skills/lib.sh b/.agents/skills/lib.sh index 0d4e4e5..baab853 100644 --- a/.agents/skills/lib.sh +++ b/.agents/skills/lib.sh @@ -1054,7 +1054,7 @@ wait_for_tui_ready() { fi ;; cline) - if echo "$content" | grep -E -q "Cline|history|Chat" 2>/dev/null; then + if echo "$content" | grep -E -q "Cline|history|Chat|What can I do|slash commands" 2>/dev/null; then echo "✅ Cline TUI detected ready." return 0 fi