Add ~/.local/bin to PATH, remove redundant claude alias#8
Conversation
~/.local/bin is the standard XDG location for user binaries. Adding it to PATH directly means any tool installed there (including claude) resolves automatically without a per-tool alias. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
Claude finished @davidkreps's task in 2m 26s —— View job PR Review
SummaryThis PR introduces two changes (commits
Because CLAUDE.md Checklist
Findings
# User-local binaries (XDG standard, e.g. pip --user, cargo, claude)
[ -d "$HOME/.local/bin" ] && export PATH="$HOME/.local/bin:$PATH"
Minor note (non-blocking): Sourcing
# Removed:
[ -x "$HOME/.claude/local/claude" ] && alias claude="$HOME/.claude/local/claude"Removing this is correct now that
Removes a trailing space from the VerdictLGTM. The changes are clean, well-guarded, and consistent with the repo's conventions. No blocking issues. |
Summary
~/.local/bintoPATHin.zshrc(guarded with a directory existence check)claudealias — it's now redundant sinceclaudelives in~/.local/binTest plan
./test.shpasses (36/36)clauderesolves in a new shell session