スキル一覧に戻る
austinjan

bash-install-utils

by austinjan

My knowledge

0🍴 0📅 2026年1月8日
GitHubで見るManusで実行

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

  1. Installs utilities using apt where available, or downloads pre-built binaries from GitHub releases
  2. Sets up bash integration by adding initialization to ~/.bashrc:
    • zoxide init
    • starship prompt
    • carapace completions
    • Useful aliases (cat->bat, etc.)

Installation Methods

UtilityMethod
zoxideapt or official installer
starshipOfficial installer script
carapaceGitHub releases binary
batapt (as batcat, symlinked)
ripgrepapt
fdapt (as fdfind, symlinked)
xhGitHub 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.

スコア

総合スコア

50/100

リポジトリの品質指標に基づく評価

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

レビュー

💬

レビュー機能は近日公開予定です