← Back to list

bash-install-utils
by austinjan
My knowledge
⭐ 0🍴 0📅 Jan 8, 2026
SKILL.md
name: bash-install-utils description: Install CLI utilities (zoxide, starship, carapace, bat, ripgrep, fd, xh) for Bash with proper integration. Use when user wants to set up these utilities for their bash environment.
Bash Utilities Installer
Cross-platform script to install and configure popular CLI utilities for Bash.
Supported Utilities
- zoxide: Smarter cd command that learns your habits
- starship: Fast, customizable prompt
- carapace: Multi-shell completion generator
- bat: Cat clone with syntax highlighting
- ripgrep: Fast grep replacement
- fd: Fast find replacement
- xh: Friendly HTTP client (like httpie but faster)
Commands
Install All Utilities
bash .claude/skills/bash-install-utils/install.sh --all
Install Specific Utilities
bash .claude/skills/bash-install-utils/install.sh zoxide starship
Check Installation Status
bash .claude/skills/bash-install-utils/install.sh --list
Setup Bash Integration Only
If utilities are already installed, just configure .bashrc:
bash .claude/skills/bash-install-utils/install.sh --setup
What It Does
- Installs utilities using apt where available, or downloads pre-built binaries from GitHub releases
- Sets up bash integration by adding initialization to ~/.bashrc:
- zoxide init
- starship prompt
- carapace completions
- Useful aliases (cat->bat, etc.)
Installation Methods
| Utility | Method |
|---|---|
| zoxide | apt or official installer |
| starship | Official installer script |
| carapace | GitHub releases binary |
| bat | apt (as batcat, symlinked) |
| ripgrep | apt |
| fd | apt (as fdfind, symlinked) |
| xh | GitHub releases binary |
After Installation
Run one of:
source ~/.bashrc
# or start a new terminal
Bash Integration Added
The script adds a managed block to ~/.bashrc:
# >>> bash-utils-init >>>
# Zoxide - smarter cd
eval "$(zoxide init bash)"
# Starship prompt
eval "$(starship init bash)"
# Carapace completions
source <(carapace _carapace bash)
# Bat aliases
alias cat="bat --paging=never"
alias less="bat"
# <<< bash-utils-init <<<
Re-running the installer will update this block.
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon