-
Notifications
You must be signed in to change notification settings - Fork 2.5k
fix: update outdated Claude Code CLI install instructions #1661
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -586,7 +586,7 @@ Loop iteration ${iteration} of ${config.iterations}${tagInfo}`; | |||||
| if (error.code === 'ENOENT') { | ||||||
| return sandbox | ||||||
| ? 'Docker is not installed. Install Docker Desktop to use --sandbox mode.' | ||||||
| : 'Claude CLI is not installed. Install with: npm install -g @anthropic-ai/claude-code'; | ||||||
| : 'Claude CLI is not installed. Install with: curl -fsSL https://claude.ai/install.sh | sh'; | ||||||
|
||||||
| : 'Claude CLI is not installed. Install with: curl -fsSL https://claude.ai/install.sh | sh'; | |
| : 'Claude Code CLI is not installed. See https://docs.anthropic.com/claude/docs/claude-code-cli for installation instructions.'; |
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -85,7 +85,7 @@ export class ClaudeCodeProvider extends BaseAIProvider { | |||||
| _claudeCliAvailable = false; | ||||||
| log( | ||||||
| 'warn', | ||||||
| 'Claude Code CLI not detected. Install it with: npm install -g @anthropic-ai/claude-code' | ||||||
| 'Claude Code CLI not detected. Install it with: curl -fsSL https://claude.ai/install.sh | sh' | ||||||
|
||||||
| 'Claude Code CLI not detected. Install it with: curl -fsSL https://claude.ai/install.sh | sh' | |
| 'Claude Code CLI not detected. Install it by following the instructions at https://docs.anthropic.com/claude-code/install (for macOS/Linux, you can use the install script described there).' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Requirements section now hard-codes a macOS/Linux-style
curl ... | shinstall command. Since installation is OS-dependent (and many users won’t havecurl/shavailable, e.g., Windows), consider changing this to a link to the official Claude Code installation docs and optionally listing the install script as one platform-specific option instead of the only instruction.