From b987d8226dd6ed1d8e8d693a25815593a1bc172b Mon Sep 17 00:00:00 2001 From: frankbria Date: Wed, 27 Aug 2025 16:16:37 -0700 Subject: [PATCH] Fix hanging install: remove Claude Code CLI check - Removed npx @anthropic-ai/claude-code --version check during install - This was causing the install script to hang due to network/auth delays - Claude Code will be downloaded automatically when first used by Ralph - Installation should now complete quickly without hanging --- install.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/install.sh b/install.sh index 3686ca7..0186ef7 100755 --- a/install.sh +++ b/install.sh @@ -57,10 +57,8 @@ check_dependencies() { exit 1 fi - # Check Claude Code CLI - if ! npx @anthropic-ai/claude-code --version &> /dev/null; then - log "WARN" "Claude Code CLI not found. It will be downloaded when first used." - fi + # Claude Code CLI will be downloaded automatically when first used + log "INFO" "Claude Code CLI (@anthropic-ai/claude-code) will be downloaded when first used." # Check tmux (optional) if ! command -v tmux &> /dev/null; then