Description
When using the Claude Code VSCode extension, the claude command is not available in the integrated terminal (PTY).
Expected Behavior
The claude CLI should be accessible from the VSCode integrated terminal, similar to how other VSCode extensions (like GitHub Copilot CLI) make their commands available.
Actual Behavior
$ which claude
claude not found
The extension runs its embedded runtime but does not add claude to the PATH or install the CLI.
Environment
- VSCode Extension: Claude Code
- Platform: Linux
- Shell: bash/zsh in VSCode integrated terminal
Workaround
Manual installation via npm install -g @anthropic-ai/claude-code
Suggestion
Consider either:
- Adding the extension's bundled CLI to PATH when the extension activates
- Prompting users to install the CLI separately
- Documenting this limitation clearly
Description
When using the Claude Code VSCode extension, the
claudecommand is not available in the integrated terminal (PTY).Expected Behavior
The
claudeCLI should be accessible from the VSCode integrated terminal, similar to how other VSCode extensions (like GitHub Copilot CLI) make their commands available.Actual Behavior
The extension runs its embedded runtime but does not add
claudeto the PATH or install the CLI.Environment
Workaround
Manual installation via
npm install -g @anthropic-ai/claude-codeSuggestion
Consider either: