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
This commit is contained in:
frankbria 2025-08-27 16:16:37 -07:00
parent 68e150d8b2
commit b987d8226d

View file

@ -57,10 +57,8 @@ check_dependencies() {
exit 1 exit 1
fi fi
# Check Claude Code CLI # Claude Code CLI will be downloaded automatically when first used
if ! npx @anthropic-ai/claude-code --version &> /dev/null; then log "INFO" "Claude Code CLI (@anthropic-ai/claude-code) will be downloaded when first used."
log "WARN" "Claude Code CLI not found. It will be downloaded when first used."
fi
# Check tmux (optional) # Check tmux (optional)
if ! command -v tmux &> /dev/null; then if ! command -v tmux &> /dev/null; then